Hello,

I am trying to use the function, call.invoke(SOAPEnvelope env) instead of
call.invoke(Object [] params) for invoking the webservice from the Client
Can anyone please explain to me how to do this.

Currently , I invoke a webservice, by

Service service = new Service();
Call call = service.createCall();
//....setting the values for Call
call.invoke(Object [] params);

Instead , I want to invoke it this way
Service service = new Service();
Call call = service.createCall();
//create the SOAPEnvelope
call.invoke(SOAPEnvelope);

Please help.

Thanks,
biju.


Reply via email to