I have discovered ASIHTTPRequest a few days ago and I'm now blocked on a thing. I would like to authenticate my self on an https address (https://user:pwd@api.domain.com/0.1/userCom/?apikey=12432 )

I try this code :

   NSURL *url = [NSURL URLWithString:@"https://api.domain.com/0.1/userCom/?apikey=12432"];
 ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
 [request setDelegate:self];
 [request setUsername:@"myUserName"];
 [request setPassword:@"myPassword"];
 [request startAsynchronous];

And I've implemented the delegate methods

-(void)requestFailed:(ASIHTTPRequest *)request
{
 NSError *error = [request error];
 NSLog(@"Failed %@ with code %d and with userInfo %@",[error domain],[error code],[error userInfo]);
}

-(void)requestFinished:(ASIHTTPRequest *)request
{
 NSLog(@"Finished : %@",[request responseString]);
}

When I launch my application the requestFailed method is directly called and I have this message :

Failed ASIHTTPRequestErrorDomain with code 1 and with userInfo {
NSLocalizedDescription = "A connection failure occurred: SSL problem (possibly a bad/expired/self-signed certificate)";
NSUnderlyingError = "Error Domain=NSOSStatusErrorDomain Code=-9807 \"The operation couldn\U2019t be completed. (OSStatus error -9807.)\" UserInfo=0x680fbf0 {}";

Have got an idea to resolve this problem ? Thanks a lot !

link|improve this question

47% accept rate
feedback

1 Answer

There are two possible approaches:

i) Fix the certificate on your/ the server if possible. (Or there's a small chance you might be using the wrong hostname to connect? Does the same error appear when using safari on the device?)

This is definitely the correct and preferred approach.

or:

ii) Disable certificate checking:

[request setValidatesSecureCertificate:NO];

Disabling certificate checking is, perhaps obviously, not a good permanent solution. Disabling it removes a lot of the security that https provides and leaves your app wide open to Man-in-the-Middle (MITM) attacks for a start. It can be a good temporary solution when debugging or using a test server that doesn't have a proper certificate, but in the long term you should fix the underlying issue so that the server's certificate is valid.

link|improve this answer
i) This is not my server so I'll check this with my client :) If I try user:pwd@api.domain.com/0.1/userCom/?apikey=12432 on my Safari Mac there's no problem. ii) Working well ! Thanks for your help. If you have any other thing to add please write it :) – Pierre Aug 7 '10 at 11:50
It's possible you Mac has some certificate authorities present that the iphone doesn't, and a missing certificate authority could cause that kind of error. If you get a similar error on safari on the device then that is the problem - if safari on the device works okay then it could be an asihttprequest bug somehow. – JosephH Aug 7 '10 at 12:49
Disable certificate checking helps in most cases – NR4TR Nov 23 '10 at 15:01
FYI the error code -9807 is errSSLXCertChainInvalid defined in the Security framework's SecureTransport.h header. That file's missing from the iPhoneOS SDK though :-(. – markshep Aug 31 '11 at 11:05
1  
I would strongly recommend against disabling the certificate checking, apart from debugging for obvious reasons. – João Portela Sep 29 '11 at 18:32
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.