I have a request : [NSURLConnection connectionWithRequest:urlRequest delegate:self]; that is launched. When I receive at any time :
I am using ASIHTTPRequest to download some data. I have the following in amethod: // Request 1 request1.tag = 1;
I\'m creating an app which communicates alot with a server. I want to make sure I have only 1 connection at a time - only 1 request pending. I want so that if I try to send anothe开发者_开发百科r req
I create an NSURLConnection and make a call to my url (which is to the local apache on my macbook). The php file it calls immediately returns \'\';It\'s taking the NSURLConnection 3-5 seconds. If I ac
I\'m using NSURLConnection and NSURLRequest to make a connection to a server for my OS X app. Now I would like to implement a specific proxy server connection but I cannot find something about it in
I\'m using this code, but when profiling, it tells me I have a many memory leaks within response_error, request and _response variables.
I\'m working on an iPhone app that will interact with a web service using RESTful API. I use NSURLConnection to do the work. The network code was working very well for all my needs until today.
i need to set a NSTimer object to manually timeout a server call if it is taking more than 10 seconds (not supported in Restkit)
Background: I have already written an Android application that periodically sy开发者_JS百科ncs a database with a web service (using the abstract threaded sync adapter in the framework).
On a lot of NSURLConnection examples I see the following lines: NSURLConnection *theConnection = [[NSURLConnection alloc]initWithRequest:theRequest delegate:self];