vote up 1 vote down star
2

How would I accept a self-signed server certificate? Using the code below, I can only connect/authenticate after I accept the Server Cert using Safari.

  • (void)secure:(NSString *)username credentials:(NSString *)login { NSURLCredential *userCredentials = [NSURLCredential credentialWithUser:username password:login persistence: NSURLCredentialPersistenceForSession];

    NSURLProtectionSpace *space = [[NSURLProtectionSpace alloc] initWithHost:LIST_URL_HTTPS port:443 protocol:@"https" realm:@"Restricted Area" authenticationMethod:NSURLAuthenticationMethodHTTPBasic];

    [[NSURLCredentialStorage sharedCredentialStorage] setCredential:userCredentials forProtectionSpace:space];

    NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:imageURL] cachePolicy:NSURLCacheStorageNotAllowed timeoutInterval:30];

    NSURLResponse *response; NSError *error;

    NSData *returnData = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:&response error:&error];

}

flag

1 Answer

vote up 0 vote down check

Found Answer here:

link text

Thanks, All

link|flag

Your Answer

Get an OpenID
or

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