Are there any adjustments I can do to my Axis settings to reduce the
bandwidth usage on my SOAP requests? In particular, I would like to
know how I can get rid of the
"xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"" items in the
argument elements. I'm using the minimum call settings, letting handle
as much of it as possible automatically. If I need to set some
parameters in code, that's fine, but please tell me which ones. My full
SOAP request for a test run is below.
The reason this is an issue is that this is an automated data collection
system working over a WAN. Right now, we get about 800,000 data records
per day, and are only about 20% deployed for one customer. BW is going
to be a significant issue as we continue to roll this out.
Thanks!
Dave
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<ns1:getDataLine
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:ns1="http://localhost:8081/axis/EddService.jws">
<ns1:arg0 xsi:type="soapenc:string"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
1234501
</ns1:arg0>
<ns1:arg1 xsi:type="soapenc:string"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
2/2/2
</ns1:arg1>
<ns1:arg2 xsi:type="soapenc:string"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
Wed Mar 15 16:44:57 EST 2006
</ns1:arg2>
<ns1:arg3 xsi:type="soapenc:string"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
This is the data line
</ns1:arg3>
</ns1:getDataLine>
</soapenv:Body>
</soapenv:Envelope>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]