How to Call WSDL Webservices from iPhone Application?

Take a look at wsdl2objc: code.google.com/p/wsdl2objc.

Take a look at wsdl2objc: code.google.com/p/wsdl2objc/ There are a couple other tools that help create a SOAP interop layer for iOS apps, but I would suggest only using them if you have to. Take a look at using JSON to communicate with your web service.

I already have webservices with . Wsdl extension , so I have to implement it. Is there any basic toutorial link with Wsdl web services.

– user752607 Sep 17 at 0:47 The tool I mentioned will create service classes allowing you to interact with existing Web services. Take a look at their wiki for a tutorial on how to use the tool: code.google. Com/p/wsdl2objc/wiki/UsageInstructions.

– Dan Sep 19 at 15:54 thanks Dan for the link – user752607 Sep 20 at 16:57.

Although there are some tools that would generate code for you. I don't like using them as customizing,debugging it would be painful. So here is what I do: Download SOAP UI ( google search it ) and then give it your wsdl and endpoint it will generate sample request for you.

You can get response as well. In your XCode project View controller ( usually I do this in my Model separated from View Controller) Construct your POST using NSURLConnection Asynchronous connection,then in your didFinishLoading you have gotten the data. If response is XML then parse the XML using NSXML or libxml parser.

This will get you started.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions