echoFloat

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: 452
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:echoFloat xmlns:ns1="http://soapinterop.org/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<echoFloat xsi:type="xsd:float">10.3</echoFloat>
</ns1:echoFloat>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Response from Apache 2.1 server

HTTP/1.0 200 OK
Date: Wed, 07 Feb 2001 11:38:47 GMT
Status: 200
Content-Type: text/xml; charset=utf-8
Content-Length: 462
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:echoFloatResponse xmlns:ns1="http://soapinterop.org/"  SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<return xsi:type="xsd:float">10.3</return>
</ns1:echoFloatResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>