Accessing a webserver from a cocoa application. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:41:44Z http://stackoverflow.com/feeds/question/393803 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/393803/accessing-a-webserver-from-a-cocoa-application 4 Accessing a webserver from a cocoa application. Mayur 2008-12-26T14:05:37Z 2009-01-16T22:40:40Z <p>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?</p> http://stackoverflow.com/questions/393803/accessing-a-webserver-from-a-cocoa-application/393847#393847 1 Answer by Ben Gottlieb for Accessing a webserver from a cocoa application. Ben Gottlieb 2008-12-26T14:44:16Z 2008-12-26T14:44:16Z <p>The simplest thing to do is probably use NSURLDownload with NSURLRequest. </p> http://stackoverflow.com/questions/393803/accessing-a-webserver-from-a-cocoa-application/394009#394009 4 Answer by Marc Charbonneau for Accessing a webserver from a cocoa application. Marc Charbonneau 2008-12-26T17:20:50Z 2008-12-26T17:20:50Z <p>If you want to load the contents of the file into memory, many of the Cocoa data classes such as NSString, NSData and even NSDictionary have <code>initWithURL:</code> methods, which initialize directly with the contents of a web request. They're very easy to use, but they're not very flexible or provide for good error handling. NSURLConnection provides a more flexible way to load data if you need it.</p> <p>If you want to download the file directly to disk, then NSURLDownload would be the best bet.</p> http://stackoverflow.com/questions/393803/accessing-a-webserver-from-a-cocoa-application/394400#394400 2 Answer by Peter Hosey for Accessing a webserver from a cocoa application. Peter Hosey 2008-12-26T22:41:17Z 2008-12-26T22:41:17Z <p>A word of warning: The initWithURL: methods are blocking, which is a big problem if the file is large, the server is slow, the user's internet connection is slow, etc. Don't call them from the main thread.</p> <p>You also don't get any progress reporting, so <em>when</em> the download is slow, you have no way to tell the user how far along it is or how much longer it will take.</p> <p>In almost all cases, you should use NSURLDownload or NSURLConnection instead.</p> http://stackoverflow.com/questions/393803/accessing-a-webserver-from-a-cocoa-application/396263#396263 0 Answer by Kristof for Accessing a webserver from a cocoa application. Kristof 2008-12-28T15:25:15Z 2008-12-28T15:25:15Z <p>And another way is using libcurl, which comes preinstalled on any OS X system. You'd better make sure System Settings like proxies etc. are respected though if you use this approach.</p> http://stackoverflow.com/questions/393803/accessing-a-webserver-from-a-cocoa-application/420488#420488 0 Answer by lostInTransit for Accessing a webserver from a cocoa application. lostInTransit 2009-01-07T14:30:45Z 2009-01-07T14:30:45Z <p>NSURLConnection is good if you want to get data from the web service into an NSString or NSData. Make sure you make asynchronous calls and handle errors and data in the NSURLConnection methods</p> <p>Here's a good example for REST-style calls <a href="http://kosmaczewski.net/2008/03/26/playing-with-http-libraries/" rel="nofollow">http://kosmaczewski.net/2008/03/26/playing-with-http-libraries/</a></p> http://stackoverflow.com/questions/393803/accessing-a-webserver-from-a-cocoa-application/452309#452309 0 Answer by Matthew McCullough for Accessing a webserver from a cocoa application. Matthew McCullough 2009-01-16T22:40:40Z 2009-01-16T22:40:40Z <p>NSURLConnection does give you the most granularity, but be careful with NSURLConnection's sendSynchronousRequest() method. <a href="http://lists.apple.com/archives/Macnetworkprog/2008/Nov/msg00006.html" rel="nofollow">It leaks memory each time</a> (have attached the XCode Leak Instrumentation tool and run it to prove it to myself) and gives weird HTTP 204 responses for no reason at all on occasion. <a href="http://denverdev.blogspot.com/2009/01/iphone-sdk-cocoa-restful-web-services.html" rel="nofollow">I've blogged about this here</a></p>