siva
siva

Reputation: 1412

How to implement the ssl & https

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

Answers (3)

Oleg Danu
Oleg Danu

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

Snehal
Snehal

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

Magnus
Magnus

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

Related Questions