What is the best starting point to learn connecting to ssl web services by iphone?
Until now i did some basic connections over http via SOAP etc. but i have no experience on https. Any good sources, tutorials, starting references, "use nsurl...class"s are appreciated
Check out ASIHTTPRequest. It is very stable, non-leaky, easy-to-use and includes a bunch of goodies like download file resuming, progress bar support etc… It also has authentication support
i'm posting a sample https client. it ignores if server certificate is not valid. the server has a webget method with uritemplate=username({usercode})/password({passcode})
you can use CharlesProxy to check your outgoing message
NSURLConnection works by default with SSL and can access https sites. Issues may appear regarding letting user trust SSL certificates, here's a discussion on this that I've found to be interesting.