'Generate SOAP Request from WSDL (.NET)
I'm looking for a way to generate a SOAP Envelop for a specific web method from a WSDL proxy class using .NET framework (c#)
I looked over the internet and did not see responses to this exact request. I know i can call the proxy directly but i need to get the SOAP message itself.
Any help would be greatly appreciated
Thanks
Solution 1:[1]
Do you want the SOAP message so you can add certain fields to the SOAP header? You can decorate your classes with MessageContractAttribute and then specify which fields go in the SOAP header vs the body
See http://msdn.microsoft.com/en-us/library/ms730255%28v=vs.100%29.aspx
for details
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | public wireless |
