Reputation: 1412
Im new to this development,can any one can help me in know what is ssl and How to implement the ssl & https call
Upvotes: 0
Views: 1505
Reputation: 4159
If you manage to connect to the https:// it means that you obtain a secure connection. You should study documentation for NSURLAuthenticationChallenge in order to understand how to manage the certificates of the https.
Upvotes: 1
Reputation: 597
You do not have to do anything on iphone. If your are accessing any server, then that server should have a ssl certificate to implement secure connection. On iphone/ipad you just need to hit the server using NSURLConnection api and https url.
Upvotes: 1
Reputation: 2060
For SSL check the wikipedia site: http://en.wikipedia.org/wiki/Secure_Sockets_Layer and for your question:
You can use the normal NSURLConnection API to access SSL pages from iOS. It's really as simple as any other URL connections - but just make sure that the certificate on the server is a public certificate - otherwise you might run into problems.
Upvotes: 1