Say that i have the following SOAP body:
<SOAP-ENV:Body>
<method>
<param xsi:type='xsd:string'>
<![CDATA[" + xml + @"]]>
</param>
</method>
</SOAP-ENV:Body>
In that case my method would be named method and the parameter param e.g.
public void method(String param){
// do something here
}
but how should i name the method if the method tag is like following:
<ns1:method xmlns:ns1='urn:MyService' SOAP-ENV:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'>
???
I have this example and i need to create the WCF against it. Any suggestion is welcome. Thank you
Go to the complete details ...