- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi Ametha,
Try below code and change and add schema based on your requirement.
var cnx = new HttpSoapConnection(serverName, "UTF-8",0)
var session = new SoapService(cnx, "namespace:schemaName")
session.addMethod("MethodName", "namespace:schemaName#MethodName",
<parameters List>
);
var result = session.MethodName(ParamListInput);