Reputation: 1588
I want to implemnt a soap request in blackberry using ksoap library.
The following code lines to required to implement it. Can someone describe the terms servicenamespace,servicemethode,soapaction and serviceurl with an example?
SoapObject request = new SoapObject(serviceNamespace, serviceMethod);
ht = new HttpTransport(serviceURL);
ht.call(soapAction, envelope);
Upvotes: 0
Views: 1137
Reputation: 417
Have a look at this tutorial.
While I realize it is not exactly what you want to know, it takes you step by step in making a simple SOAP request with the KSoap library while also explaining what each method does.
Furthermore, access the javadocs here if you want to know about particular methods/fields:
Upvotes: 1