vote up 0 vote down star

I am writing a cocoa application in which I want to download a file from a webserver. What will be the most convenient method to go about doing this? Should I go in for NSSockets or a NSUrlRequest? Or is there any other easier way to achieve this?

Exact Duplicate of http://stackoverflow.com/questions/393803/accessing-a-webserver-from-a-cocoa-application

flag

closed as exact duplicate by Dave Markle Dec 26 '08 at 15:08

1 Answer

vote up 0 vote down

Don't use raw sockets - you'll have to do a huge amount of manual HTTP work, which is a waste of your time. NSURL, NSURLRequest and NSURLConnection are your friends: Feed one into the next, up to NSURLConnection sendSynchronousRequest, and get an NSData back with the requested data.

link|flag

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