Objective-C Asynchronous Web Request with Cookies
I spent a day writing this code and can anyone tell me what is wro
Firstly you're making starting the connection too complicated. Change to:
connection = [[NSURLConnection alloc] initWithRequest:request delegate:self]
Remove [connection start]
. Now:
url
is what you expect it to be? What is it?One does not need to do anything special to use NSURLConnection, it's a straightforward part of the Foundation framework. No special compiler settings required. No initialization before use. Nothing. Please don't start blindly trying stuff like bringing in CoreServices.Framework.
As sending the request synchronously works, there must be something wrong with your handling of the asynchronous aspect. It could be:
NSDefaultRunLoopMode
so the connection is unable to schedule itself.-cancel
on the connection before it has a chance to load.Ah, in fact I've just realised what's going on. You are calling:
-[NSApp runModalForWindow:]
Read the description of what this method does. It's not running the run loop like NSURLConnection
expects. I'd say that really, you don't want to be presenting a window quite like this while running a URL connection for it.
I'd also suggest that you implement the -connection:didReceiveResponse:
delegate method too. You want to check here that the server is returning the expected status code.