Hi all,
I have an axis WS client calling a remote ejb3 web service as below:
Call call = (Call) service.createCall();
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName(new QName("http://session.um.com/",
"getAuc") );
call.addParameter("arg0",
org.apache.axis.Constants.XSD_INT,
javax.xml.rpc.ParameterMode.IN);
call.setReturnClass(HashMap.class);
HashMap ret = (HashMap) call.invoke( new Object[] {"1"}
Thought it throws no error, the returned Map / List never has any contents
in them. Also, if instead of setReturnClass I try to use
setReturnType(org.apache.axis.Constants.XSD_ANY) it gives me the below
error:
could not find deserializer for type {http://www.w3.org/2001/XMLSchema}any
--
View this message in context:
http://www.nabble.com/Returning-Map---List-from-web-service-tp19010233p19010233.html
Sent from the Axis - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]