Click here to Skip to main content
15,881,172 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to call more than one soapaction in a single activity class.


is it possible?????

pls give me an example.....


thnx
ranjith
Posted

1 solution

Check this

C#
String SOAP_ACTION =  "http://tempuri.org/your method";
    String METHOD_NAME = "your method";

    String SOAP_ACTION_1 =  "http://tempuri.org/your method one";
    String METHOD_NAME_1 = "your method one";

    String SOAP_ACTION_2 =  "http://tempuri.org/your method two";
    String METHOD_NAME_2 = "your method two";

    String NAMESPACE = "http://tempuri.org/";
 
Share this answer
 

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