I am having an issue with ASIHTTPRequest authentication. The steps are in the following order,

  1. User entering wrong username and password -- > No data comes from backend and request failed delegate gets called from ASIHTTPRequest. Then goto login page again.

  2. User enters correct values -- > Data comes as expected and request finished method gets called. Then goto login page again.

  3. User entering wrong username and password -- > Data again comes and request finished method gets called.

The code which I am using is:

ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setDelegate:self];
[request setTimeOutSeconds:60];

[request setUsername:User_Name];
[request setPassword:Pass_Word];
[request setValidatesSecureCertificate:NO];
[request setShouldPresentCredentialsBeforeChallenge:NO];
[request startAsynchronous];

The backend is handling stateless webservices. What is teh problem ? and what am i doing wrong ? please help me out.

Thanks, Vinod.

link|improve this question

22% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You could maybe try:

[request setUseSessionPersistence:NO];
link|improve this answer
Thank you so much Now i got it working well !!! – Atom Jun 11 '11 at 16:22
@user317894 Glad to hear it - assuming it was my answer that solved it, please mark the answer as accepted (click the outline of the tick next to it) and upvote it (the upwards pointing arrow) - thanks! – JosephH Jun 12 '11 at 10:07
feedback

Try with shouldPresentCredentialsBeforeChallange:YES (which is the default).

link|improve this answer
No Luck man ... Also tried setting shouldattemptpersistentconnection to NO it is also not working :( – Atom Jun 10 '11 at 23:25
feedback

Your Answer

 
or
required, but never shown

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