Ask a Question related to ASP.NET Web Services, Design and Development.
-
Rich #1
Xml namespace in soap:envelope
I am trying to reduce the amount of data sent over some of web
services, as the data is going over GPRS. Of course, reducing the
length of the parameter names, and header elements will help. Also, I
have considered compressing the actual data going in these values.
However, there is one thing still bugging me... the <soap:Envelope>
tag. Its massive! e.g.
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
Does anyone know if the namespace information is required here? If
not, how do I stop .NET putting it in all the soap requests and
responses?
Thanks in advance.
Rich Guest
-
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}MustUnderstand
¾È³çÇϼ¼¿ä? Hi Everybody MustUnderstand ¿¡·¯·Î ÀÎÇØ Because of an Error with MustUnderstand client-config.wsdd ÆÄÀϰú server-config.wsdd... -
Capture SOAP envelope
I'm calling a web service provided to me by one of my company's vendors. I used visual studio to automatically generate the SOAP request but I am... -
How to get the SOAP envelope
Hi For debugging purposes, I'm looking for a way to see the SOAP envelope I'm sending. I'm the client calling a WS. How can I do that ? What... -
How can i access the Soap envelope from within the WebMethod
I'm attaching a DimeAttachment binary to my MyServerWSE.SoapRequestContext.Attachments on the client side, however, i cannot find a way to access... -
http://www.w3.org/2001/06/soap-envelope
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"... -
Dilip Krishnan #2
Re: Xml namespace in soap:envelope
Hello Rich,
Unfortunately no... soap is verbose by nature. And namespaces are required
to distinguish similar names from each other. Your best bet is the compression
HTH
Regards,
Dilip Krishnan
MCAD, MCSD.net
dkrishnan at geniant dot com
[url]http://www.geniant.com[/url]
> I am trying to reduce the amount of data sent over some of web
> services, as the data is going over GPRS. Of course, reducing the
> length of the parameter names, and header elements will help. Also, I
> have considered compressing the actual data going in these values.
>
> However, there is one thing still bugging me... the <soap:Envelope>
> tag. Its massive! e.g.
>
> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xmlns:xsd="http://www.w3.org/2001/XMLSchema"
> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
>
> Does anyone know if the namespace information is required here? If
> not, how do I stop .NET putting it in all the soap requests and
> responses?
>
> Thanks in advance.
>
Dilip Krishnan Guest



Reply With Quote

