I would like to know if it's possible to use inheritance on the IN and OUT parameters of a web service.
For instance,
I would like to have an service with a method with this signature:
ReturnType method();
On the implementation of the service I write:
ReturnType method(){
return new ReturnTypeChild();
}How can I handle it with axis? Both ReturnType and ReturnTypeChild are beans.
I've read the axis FAQ and also googled for an answer but I can't find it.
Thank you very much, Aureliano.
