Click here to Skip to main content
15,888,008 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
1.Which directive should be included to import SOAP?

I have the following code which is used in java.But i want to create an object of Soap in C#.So can anyone help me to get me out of this?
PLZ..I want to use it in my project....

SoapObject request5 = new SoapObject(NAMESPACE3, METHOD_NAME5);
request5.addProperty("args",this.strStockid);

SoapSerializationEnvelope envelope5 = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope5.setOutputSoapObject(request5);
HttpTransportSE androidHttpTransport5 = new HttpTransportSE(URL3);
Posted
Updated 12-Aug-10 21:37pm
v4

1 solution

.Net doesn't have this object. SOAP is only protocol which C# uses for WebService.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900