Spanky
Spanky

Reputation: 5000

Using a secure web service from iPhone with SOAP

I'm trying to get secure web service connectivity on the iPhone over https via SOAP. Currently have http working with NSMutableURLRequest but it doesn't appear to support https. Any ideas what to use to get the secure web service access and processing I'm after?

Any help appreciated // :)

Upvotes: 1

Views: 1384

Answers (1)

Massimo Cafaro
Massimo Cafaro

Reputation: 25419

Use gSOAP. It's a C/C++ library providing fast and secure access to web services; you can even develop your own. Even though it's not natively supporting Objective C, it's still IMHO the best open source web services library. Additional information and download can be found here

Upvotes: 1

Related Questions