Converting a SOAP 1.2 to SOAP 1.1 with proper WSDL bindingshttp://forums.asp.net/t/1804997.aspx/1?Converting+a+SOAP+1+2+to+SOAP+1+1+with+proper+WSDL+bindingsMon, 25 Jun 2012 14:04:32 -040018049974986384http://forums.asp.net/p/1804997/4986384.aspx/1?Converting+a+SOAP+1+2+to+SOAP+1+1+with+proper+WSDL+bindingsConverting a SOAP 1.2 to SOAP 1.1 with proper WSDL bindings <p>Hi I have create a web service with .net 4.0 and when my client tries to consume it with a commercial software it gives error that the software (the client is using) does not support SOAP 1.2 and there are SOAP 1.2 bindings in the wsdl file.</p> <p><span face="Calibri" color="#1f497d" style="color:#1f497d; font-family:Calibri">I tried rewriting the entire thing with .NET 2.0.... but when I compile it still puts SOAP 1.2 bindings in the wsdl file.</span></p> <p>&nbsp;</p> <p><span face="Calibri" color="#1f497d" style="color:#1f497d; font-family:Calibri">How can I create a SOAP 1.1 web service?</span></p> 2012-05-18T05:44:42-04:004989044http://forums.asp.net/p/1804997/4989044.aspx/1?Re+Converting+a+SOAP+1+2+to+SOAP+1+1+with+proper+WSDL+bindingsRe: Converting a SOAP 1.2 to SOAP 1.1 with proper WSDL bindings <p>It seems that the binding between the client and server is different, for example, basicHttpBinding message is based on SOAP 1.1, and it mainly be used for ASMX web service, but wsHttpBinding which is based on SOAP 1.2 and ws-Addressing specification and provides more WS-Trust and WS Secure conversation. If you want to create a SOAP 1.1 web service, you can directly create a ASMX web service, or create a WCF service and set its binding to basicHttpBinding.</p> 2012-05-21T02:56:49-04:005037356http://forums.asp.net/p/1804997/5037356.aspx/1?Re+Converting+a+SOAP+1+2+to+SOAP+1+1+with+proper+WSDL+bindingsRe: Converting a SOAP 1.2 to SOAP 1.1 with proper WSDL bindings <p>Hi Peter..is there a way I can change the version of HTTP protocol tha soap uses from 1.1 to 1.0 ? when i create an asmx service then the soap message shows up the http1.1 version what I want is to be able to change it to version 1.0, as there are issues using 1.1 in my existing service. Please let me know if this change can be made within the web services and not on the client, because I have multiple systems consuming my service. please help me with this issue..i googled a lot but could not find an answer</p> 2012-06-22T20:36:42-04:005039710http://forums.asp.net/p/1804997/5039710.aspx/1?Re+Converting+a+SOAP+1+2+to+SOAP+1+1+with+proper+WSDL+bindingsRe: Converting a SOAP 1.2 to SOAP 1.1 with proper WSDL bindings <p>you need to set it up in the web.config file by adding below. hope this helps</p> <pre class="prettyprint">&lt;Configuration&gt; &lt;webServices&gt; &lt;protocols&gt; &lt;remove name=&quot;HttpSOAP12&quot;/&gt; &lt;add name=&quot;HttpSOAP&gt; &lt;/protocols&gt; &lt;/webServices&gt; &lt;/configuration&gt;</pre> <p></p> 2012-06-25T14:04:32-04:00