R
Rich
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.
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.