iPhone and SSL
One of the problems I ran into while working on our iPhone app (see past post) is handling SSL connections. It works just fine with proper certificates, but we have several machines with self-signed SSL certificates. The normal NSURLConnection in the iPhone SDK just rejects connections to a server with a self-signed certificate, and there isn’t an obvious API to get around that. A few searches turned up a way to override part of NSURLRequest or something like that, but…