Isn't webservice consumer implementation independent of actual webservice implementation? i.e. websevice could be implemented in java but consumer could be iphone(c), java or dot net.
Also, these webservices are currently being consumed for an iPhone apps. then what's wrong with Apache Axis client?
Thank You.
g tsuji
Ranch Hand
Joined: Jan 18, 2011
Posts: 368
1
posted
0
...what's wrong with Apache Axis client?
If you mean wrong in the sense that you might not be sure of the "What comes here?" below...
TestWSEndPointServiceStub stub = new TestWSEndPointServiceStub("What comes here?");
You should, modulo other complications, primarily look for the {http://schemas.xmlsoap.org/wsdl/soap}address element, in particular read its "location" attribute in the wsdl.
Axis2's supports for rpc is restricted to rpc/literal style; but I think not many would still use rpc/encoded style any more, so your application might be just that of the former, rpc/literal style.