2

I need to access WSDL webservice on iphone. Is there any way to use SOAP or HTTP to access .wsdl url on iPhone.

Please suggest.

Thanks SD

iPhoneDev
  • 2,995
  • 4
  • 33
  • 44

3 Answers3

4

http://sudzc.com/

it will generate Obj c soap client. From sudzc.com, you can get example and documentation of your webservice if you provide your wsdl url.

S.P.
  • 5,427
  • 11
  • 56
  • 83
1

As pointed out in this answer to this question, wsdl2objc looks like a great place to start. It generates Objective-C code from a WSDL for calling SOAP services.

Community
  • 1
  • 1
Brad Larson
  • 170,088
  • 45
  • 397
  • 571
1

We can use Hessian protocol instead of WSDL. It support .NET/JAVA as server side language http://sourceforge.net/projects/hessiankit/ and documentation http://wiki.caucho.com/Hessian_-_Objective-C_2.0_Implementation

iPhoneDev
  • 2,995
  • 4
  • 33
  • 44