You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by "Li, Peng" <pe...@eds.com> on 2002/08/19 11:41:13 UTC

Problem with java.util.Collection

Hi,

does anyone know, how can i transport type java.util.Collection from axis
server to client?
 
i have tried to return type java.lang.Object from the server and on the
client side use the following code to get the Collection:

Object temp = (Object) call.invoke( new Object[] { parameters } );
Collection ret = (Collection) JavaUtils.convert(temp, Collection.class);  

es throws (500)Internal Server Error

 
thanks in advance

Peng