Re: Axis2: I can not send Map object as parameter.

2009-11-29 Thread Chatree Srichart
I received message from Axis mailing list. Axis2 does not support POJO services containing Java collections, abstract types or generics. You will have to use object arrays, or start with the WSDL and then generate the server side code for it. I think I have to generate code for serialize Map

Axis2: I can not send Map object as parameter.

2009-11-27 Thread Chatree Srichart
I would like to send Map object as SOAP message. I try to create OMElement by send Map object in array like this... OMElement payload = BeanUtil.getOMElement( serviceName, new Object[] {mapObject}, null, false, typeTable); But I got... serviceNamearg0paramName/arg0arg1 xmlns:xsi=

Re: Axis2: I can not send Map object as parameter.

2009-11-27 Thread Jacques Le Roux
Hi Chatree, I know Map is not Array, but did you look into this https://issues.apache.org/jira/browse/OFBIZ-1008 Jacques From: Chatree Srichart chatree.srich...@gmail.com I would like to send Map object as SOAP message. I try to create OMElement by send Map object in array like this...