> Another question is that I send a Vector of application objects. In the
> request that I can get from the TcpTunnelGui uses the following line to
> reprents this vector:
>
> <criteria xmlns:ns2="http://xml.apache.org/xml-soap";
xsi:type="ns2:Vector">
>
> So cann't I see each individual objects? Are they be transferred as binary
> data as POST data?

Hmmm.  You should also see a </criteria>.  Everything between the two tags
is the contents of the vector.  For example, I believe a Vector of strings
looks something like

<myVector...>
<item xsi:type="xsd:string">
String1
</item>
<item xsi:type="xsd:string">
String2
</item>
</myVector>

Note that if you want to interoperate nicely with SOAP implementations other
than Apache SOAP, you should use arrays instead of Vectors.  Arrays are
defined by the SOAP spec.  Vectors are a compound type defined by Apache
SOAP.

Scott Nichol



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to