We have a problem with our iPhone-simulator that was caused by using this line:

    Foo = [NSURLCredential CredentialWithUser:foo 
    password:bar persistance:NSURLCredentialPersistencePermanent];

The problem was created when the credential was given to the challenge over at

        -(NSURLConnection *)connection
        didReceiveAuthenticationChallenge(NSURLAuthenticationChallenge *)challenge
    {

        [[challenge sender]useCredential:Foo forAuthenticationChallenge:challenge]      
    }

So now when we run the application, we dont ever ever again run into the authenticationchallenge again, which is quite odd, even if we change the credential to

    Foo = [NSURLCredential CredentialWithUser:foo 
    password:bar persistance:NSURLCredentialPersistenceForSession];

or even

    Foo = [NSURLCredential CredentialWithUser:foo
    password:bar persistance:NSURLCredentialPersistenceNone];

To summarize:

By using credentialpersistencepermanent the credential is somehow saved somewhere and used automagically to access wherever we need to autenticate ourselves.

So for testing-purposes, we would really like to remove this persistent... credential.

Any ideas anyone? :)

link|improve this question

1  
If someone answers this question by stating that i should only have to reset the iPhone-simulator i'll mark that answer as correct. It actually solved the problem, we just didnt ever think about it. – Da_smokes Jun 3 '11 at 11:48
1  
There aren't rules against you posting your own answer :) – Tom Irving Jun 3 '11 at 14:26
feedback

1 Answer

up vote 1 down vote accepted

Have you tried just resetting the simulator? It's in the Simulator menu.

link|improve this answer
1  
Thank you, works like a charm. How silly of me. – Da_smokes Jun 7 '11 at 6:12
feedback

Your Answer

 
or
required, but never shown

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