Gowtham
Gowtham

Reputation: 47

How to identify NAMESPACE, METHOD_NAME, URL and SOAP_ACTION from WSDL and SOAP message

I have some problem in parsing a SOAP web service. How can i identify the NAMESPACE, METHOD_NAME, URL and SOAP_ACTION from WSDL and also how can i handle using SoapObject.

I want to call the soap in android.

Below are the WSDL AND SOAP REQUEST XML.

WSDL:

https://e1jas01.domain.cssus.com:8091/DV910/RI_AddressBookManager?WSDL

Thanks, Gowtham.

Upvotes: 4

Views: 10854

Answers (2)

Aniruddha K.M
Aniruddha K.M

Reputation: 7521

It might help others who are finding it difficult that's why i am posting, this stackoverflow question explains the process of identifying NAMESPACE, METHOD_NAME, URL and SOAP_ACTION ksoap2 org.xmlpull.v1.xmlpullparserexception expected start_tag error

Upvotes: 0

arenko
arenko

Reputation: 174

Firstly, downloading SoapUI will help you a lot, when you create a new project there and import that URL, you will see namespaces and method names properly. For the Soap action; for each operation there is 1 soap action. From that link first you should find the operation which you want to use then you will see soap action of that operation.

http://www.c-sharpcorner.com/UploadFile/88b6e5/how-to-call-web-service-in-android-using-soap/

Here, there is a tutorial about creating soap objects etc.

Upvotes: 5

Related Questions