[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

Re: http://www.w3.org/2001/06/soap-envelope

Dino Chiesa [Microsoft]

6/5/2004 2:10:00 AM

your service is SOAP v1.2
.NET is SOAP 1.1

The workaround is to get the service to deliver a SOAP 1.1 response.
-Dino


"RH" <anonymous@discussions.microsoft.com> wrote in message
news:6E42153E-776E-4E3E-A8E5-BCD2C8D67210@microsoft.com...
> A soap response from a web service system I am integrating to with .NET
1.1 is defining the SOAP-ENV namespace with the URI
http://www.w3.org/2001/06/soa... as shown below:
>
> <SOAP-ENV:Envelope xmlns:namesp4="http://xml.apache.org/xml-...
> SOAP-ENV:encodingStyle="http://www.w3.org/2001/06/soap-enco...
xmlns:xsi="http://www.w3.org/2001/XMLSchema-inst...
> xmlns:SOAP-ENC="http://www.w3.org/2001/06/soap-enco...
> xmlns:SOAP-ENV="http://www.w3.org/2001/06/soa..."
> xmlns:xsd="http://www.w3.org/2001/XMLSchema"></SOAP-ENV:En...
>
> When I receive this response I am getting the following error that
complains about a SOAP version mismatch. Is there any way around this?
>
> An unhandled exception of type
'System.Web.Services.Protocols.SoapException' occurred in
system.web.services.dll
>
> Additional information: Possible SOAP version mismatch: Envelope namespace
http://www.w3.org/2001/06/soa.../ was unexpected. Expecting
http://schemas.xmlsoap.org/soap....
>
>