How to connect to https url from iphone application ? Is there any sample code available?
Thanks & Regards, Yogini
How to connect to https url from iphone application ? Is there any sample code available?
Thanks & Regards, Yogini
You don't need to use anything special in order to GET information through HTTPS protocol in iPhone SDK.
The same way that you connect to a http URL. The Cocoa Touch API does all the hard stuff behind the scenes.
"Error Domain=kCFErrorDomainCFNetwork Code=306" means "A connection could not be established to the specified HTTP proxy." Seems that there's a problem with your networking configuration.
The most common cause of this is an untrusted certificate. If you cannot install a trusted certificate, see the previous discussion of this.
Hi , Is der any way to estabilish a secure connection with the server using tcp with sslv3. I need some sample code and the way to implement. now I am just setting the readstream and writestream's property as follows
[readStream setProperty:NSStreamSocketSecurityLevelKey forKey:NSStreamSocketSecurityLevelSSLv3];
[writeStream setProperty:NSStreamSocketSecurityLevelKey forKey:NSStreamSocketSecurityLevelSSLv3];
do any one provide some sample link or sample code in order to estabilish a secure connection using tcp with sslv3
Regards, Mohammed Sadiq.