After creating a new ASP.NET web service, I want it to only support HTTP-POST for incoming data . How to get WSDL to display this policy?
How does WSDL for clients look like to enable only HTTP-POST and disable SOAP 1.1 and SOAP 1.2 in WSDL ?
Decision:
<system.web>
<webServices>
<protocols>
<clear />
<add name="HttpPost"/>
<add name="Documentation"/>
</protocols>
<conformanceWarnings>
<remove name='BasicProfile1_1'/>
</conformanceWarnings>
</webServices>
source
share