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: 626
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:echoStruct xmlns:ns1="http://soapinterop.org/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<echo xmlns:ns2="http://soapinterop.org/xsd" xsi:type="ns2:SOAPStruct">
<varInt xsi:type="xsd:int">3</varInt>
<varFloat xsi:type="xsd:float">1.2</varFloat>
<varString xsi:type="xsd:string">Hello</varString>
</echo>
</ns1:echoStruct>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Response from Apache 2.1 server
HTTP/1.0 200 OK
Date: Wed, 07 Feb 2001 11:39:09 GMT
Status: 200
Content-Type: text/xml; charset=utf-8
Content-Length: 646
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:echoStructResponse xmlns:ns1="http://soapinterop.org/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<return xmlns:ns2="http://soapinterop.org/xsd" xsi:type="ns2:SOAPStruct">
<varFloat xsi:type="xsd:float">1.2</varFloat>
<varInt xsi:type="xsd:int">3</varInt>
<varString xsi:type="xsd:string">Hello</varString>
</return>
</ns1:echoStructResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>