Hey Jerry - first, sorry it took so long to get back to you.
Ok, let's check a few things.
1) I'm assuming the cert you're using is self-signed, is that accurate? If so, the likely culprit is that Apple doesn't trust it and thus you're failing the underlying NSURLConnection security checks. You should add the certificate to your device - easiest way is to email it to yourself and install the cert.
2) I noticed a couple differences in the url's you listed above. The one you hit in your browser was */index/authenticate/basic and the one in the app was */user/authenticate. You should be hitting */user/authenticate.
3) Did you update the values in the method
validProtectionSpaces to match your address? Try setting a breakpoint (or logging something) in the
connection:willSendRequestForAuthenticationChallen ge: method (line 204) in the
AuthenticateOperation implementation
4) Also, have you tried hitting your service with a web service test client like HTTP Client (in the mac appstore) or a chrome plugin like
https://chrome.google.com/webstore/d...jhfbgofnpcjmb? If not, try that and see what the result is. We're just trying to narrow down where it's failing.
Let me know how things go. I will keep an eye on it this week.