Hello everybody,
I'm developing a WS that has a method declared: public void
myMethod(MyObject obj).
MyObject is declared as follow:
class MyObject {
private String name;
private int age;
private List itens;
...
};
I'm using Axis2 1.4.1 + eclipse ganymede + eclipse plugins to do the
stub/wsdl. The
problem is i'm receiving a error due the serialization of this
objetct. So, the problem
is the object's member "List itens"? A collection type inside in a
object doesn't work
with Axis2? How can I solve it?
Thanks in advance,
--
--fx