hi Jhon Sanabria

first create a class that give the way to return the array of array (call
that class Array2 as a bean).
QName qn = new QName( "urn:myarray2", "Array2" );

then register that type
call.registerTypeMapping(Array2 .class, qn,new
org.apache.axis.encoding.ser.BeanSerializerFactory(Array2 .class, qn), new
org.apache.axis.encoding.ser.BeanDeserializerFactory(Order.class, qn));
then set return type as

call.setReturnType(qn);

then u can return the result using invke method in usual way

regards

thayapavan





----- Original Message -----
From: "Jhon Sanabria" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, August 21, 2003 3:47 AM
Subject: How to define an array of array of string


>
>
> Saludos
>
> i'll be very thankful for your attention. i want to return, from one
> web service, an array of array of string. How to define it in the source
> code of the client.
>
>             QName QNAME_TYPE_STRING = new QName(NS_XSD, "string");
>             call.setReturnType(QNAME_TYPE_STRING);
>
> i know that in the code above return a string, what's the code to
> represent array of array.
>
> thanks a lot for your attention.
>
> Que esten bien.
>
>


Reply via email to