Elegir Protocolo
ASP.NET Web Services soporta tanto SOAP 1.1 como SOAP 1.2. Por defecto, cada protocolo tendrá un vínculo en el wsdl producido para el servicio. Para funcionar, o dejar de hacerlo, en SOAP 1.1 o SOAP 1.2, tendremos que modificar las opciones de configuración tanto en el machine.config como en el web.config. Descomentando las líneas del siguiente ejemplo deshabilitaremos el soporte para SOAP 1.1 o SOAP 1.2 respectivamente.
<system.web>
<webServices>
<protocols>
<!-- <remove name="HttpSoap"/> -->
<!-- <remove name="HttpSoap1.2"/> -->
</protocols>
</webServices>
</system.web>
C# Sample Caption
