Request from Apache 2.1 client
POST /soap/servlet/rpcrouter HTTP/1.0
Host: tony:8080
Content-Type: text/xml; charset=utf-8
Content-Length: 668
SOAPAction: "urn:soapinterop"
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
<ns1:echoFloatArray xmlns:ns1="http://soapinterop.org/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<echoFloatArray xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" ns2:arrayType="xsd:float[3]">
<item xsi:type="xsd:float">-3.0</item>
<item xsi:type="xsd:float">5.3</item>
<item xsi:type="xsd:float">10.6</item>
</echoFloatArray>
</ns1:echoFloatArray>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Response from Apache 2.1 server
HTTP/1.0 200 OK
Date: Wed, 07 Feb 2001 11:38:54 GMT
Status: 200
Content-Type: text/xml; charset=utf-8
Content-Length: 668
Content-Language: en
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
<ns1:echoFloatArrayResponse xmlns:ns1="http://soapinterop.org/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" ns2:arrayType="xsd:float[3]">
<item xsi:type="xsd:float">-3.0</item>
<item xsi:type="xsd:float">5.3</item>
<item xsi:type="xsd:float">10.6</item>
</return>
</ns1:echoFloatArrayResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>