5 to 3, Round 2, echoIntegerArray

--------------------------------------------------------------------------------------------------
     REQUEST
--------------------------------------------------------------------------------------------------
POST /asmx/simple.asmx HTTP/1.1
Content-length: 619
Host: localhost:8889
Content-type: application/soap+xml; charset=utf-8; action = "http://soapinterop.org/"

<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2002/06/soap-envelope">
<SOAP-ENV:Body>
<ns0:echoIntegerArray xmlns:ns0="http://soapinterop.org/">
<inputIntegerArray
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap-enc12="http://www.w3.org/2002/06/soap-encoding"
    xmlns:soap12="http://www.w3.org/2002/06/soap-envelope"
    soap-enc12:itemType="xsd:int"
    id="ArrayOfInt_0"
    soap-enc12:arraySize="3"
    soap12:encodingStyle="http://www.w3.org/2002/06/soap-encoding">
<int>11</int>
<int>22</int>
<int>33</int>
</inputIntegerArray>
</ns0:echoIntegerArray>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

--------------------------------------------------------------------------------------------------
     REPLY
--------------------------------------------------------------------------------------------------
HTTP/1.1 100 Continue
Server: Microsoft-IIS/5.0
Date: Wed, 05 Feb 2003 14:49:19 GMT
X-Powered-By: ASP.NET

HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Wed, 05 Feb 2003 14:49:19 GMT
X-Powered-By: ASP.NET
X-AspNet-Version: 1.0.4221
Cache-Control: private, max-age=0
Content-Type: application/soap+xml; charset=utf-8
Content-Length: 709

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:soap="http://www.w3.org/2002/06/soap-envelope"
    xmlns:soapenc="http://www.w3.org/2002/06/soap-encoding"
    xmlns:tns="http://soapinterop.org/" xmlns:types="http://soapinterop.org/"
    xmlns:rpc="http://www.w3.org/2002/06/soap-rpc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body soap:encodingStyle="http://www.w3.org/2002/06/soap-encoding">
<types:echoIntegerArrayResponse>
<rpc:result xmlns="">return</rpc:result>
<return id="id1" soapenc:itemType="xsd:int" soapenc:arraySize="3">
<Item>11</Item>
<Item>22</Item>
<Item>33</Item>
</return>
</types:echoIntegerArrayResponse>
</soap:Body>
</soap:Envelope>