...
The following figure illustrates an example of a basic message payload for SOAP.
| Panel |
|---|
| Html bobswift |
|---|
<pre>
<tns:ValidateZip xmlns:tns="http://webservicemart.com/ws/">
<tns:ZipCode>30004</tns:ZipCode>
</tns:ValidateZip>
</pre>
|
|
The first line contains:
...
The following figure illustrates the SOAP response that the ValidateZip operation returns.
| Panel |
|---|
| Html bobswift |
|---|
<pre>
<string>
<result code="200"><item zip="30004" state="GA" latitude="34.11917"
longitude="-84.30292"/></result>
<string>
</pre>
|
|
The first line indicates the type of data being returned (in this case, string data).
...