I am using async NSURLConnection to connect to a web site from iPhone. Handle didReceiveResponse is activated on response and I am trying to get all cookies, by using allHea
Try this: in your NSMutableURLRequest, you should tell it to handle cookies:
NSMutableURLRequest
[request setHTTPShouldHandleCookies:YES];