[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.remoting

Is there a simlpe SOAP -> method call example that doesn't use any transports, etc.?

nimai_malle

8/20/2004 3:30:00 PM

I have not had any luck searching for a simple, simple example that
calls a method on an object given a SOAP string. Here's what I'm
looking for (in pseudocode):

string SOAPCall = "bla bla bla"; // SOAP method invocation XML
string SOAPResponse;
MyObject x = new MyObject();
// and here's where I don't know what to do
/* call the method on x as specified in SOAPCall and
get the output into SOAPResponse. */

Can anyone be of any assistance?

Thank you!