 |
SOAP on the wire: actual response
Here's a response. Notice how the response data, like the request, is
self-describing. The XML attributes describe the element contents. And
once again, the body is highlighted in blue.
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Date: Tue, 23 Jul 2002 21:20:00 GMT
Server: Apache Tomcat/4.0.4 (HTTP/1.1 Connector)
Connection: close
Set-Cookie: JSESSIONID=4070E5C0A9E425F778502694E1542587;Path=/axis
<?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>
<sayHelloToResponse
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<sayHelloToReturn
xsi:type="xsd:string">Hello Tim O'Reilly</sayHelloToReturn>
</sayHelloToResponse>
</soapenv:Body>
</soapenv:Envelope>
|