Hi,
I have a problem. I use Axis2 plugin in eclipse to generate STUB from wsdl on Jboss.
My web services is a oneway service that return void value. But in the client I have to obtain a parameter present in HTTP HEADER response generated from skeleton.
I wrote this code for client to call web service AddPersonOneway:
//******************************************
// get stub autogenerated from plugin ecplise
HandlerPersonProxyServerWSStub stub = new HandlerPersonProxyServerWSStub();
// get parameter handler of web services
AddPersonOneway paramAddPerson = new AddPersonOneway();
// set parameter
paramAddPerson.setPerson(person);
// call web service
stub.addPersonOneway(paramAddPerson);
//******************************************
What' the solution?
thanks Emanuele