How to write client side for soap in c#

SOAPAction is required in SOAP 1.1 but can be empty (“”). See the comment here

First of all you should try to create new SOAP project using your link to wsdl file. After that try to do request from SOAP UI. Try to run “doCommand” action. Look at the result. Than you can compare it with request from your app. You can also use Fiddler to intersept your requests and compare them to find a difference.

Leave a Comment