Tagged Questions
An NSURLConnection is the Apple Foundation Framework class that provides support to perform the loading of a URL request.
11
votes
1answer
5k views
Asynchronous request to the server from background thread
I've got the problem when I tried to do asynchronous requests to server from background thread. I've never got results of those requests. Simple example which shows the problem:
@protocol ...
11
votes
2answers
5k views
Changing the userAgent of NSURLConnection
Hey I am using a NSURL Connection to receive data.
[NSURLConnection sendSynchronousRequest:
//create request from url
[NSURLRequest requestWithURL:
//create url from string
[NSURL ...
11
votes
3answers
12k views
How to download a large file with the iPhone SDK and avoid memory usage issues?
I'm using the NSURLConnection class to download a large file in my iPhone application, but it crashes every so often because it's using too much memory. I'm doing the usual NSURLConnection usage, to ...
10
votes
1answer
409 views
Updating iPhone Reachability on Network Changes
Edit 23.5.11
I'm now wondering whether I'm over engineering this. When I use an online connection, I handle it properly - either:
in the background with a progress or activity indicator showing ...
10
votes
2answers
14k views
NSURLConnection timeout?
I'm using this NSURLConnection with delegates.
nsconnection = [[NSURLConnection alloc] initWithRequest:request
delegate:self startImmediately:YES];
Problem is the website doesn't respond at ...
8
votes
4answers
1k views
Why should I prefer ASIHTTPRequest over NSURLConnection for downloading files from the web?
I've seen a couple of times people using ASIHTTPRequest to download files. Now I wonder why? What are the core benefits over NSURLConnection?
8
votes
2answers
2k views
ASIHTTPRequest vs NSURLConnection
Just wondering which is faster in terms of performance and usability? Or if there's anything better out there?
8
votes
4answers
1k views
When does NSURLConnection's initWithRequest return nil
Does anyone know in which situations initializing a NSURLConnection returns nil instead of the created connection. The documentation says it's possible but fails to specify when this happens.
The ...
8
votes
1answer
2k views
NSURLConnection, NSURLRequest, untrusted cert and user authentication
Morning Everyone,
I've been attempting to write an application that does some GETs from a remote Web Service that requires authentication. My main problem is that the majority of these remote servers ...
8
votes
1answer
5k views
NSMutableURLRequest not obeying my timeoutInterval
I'm POST'ing a small image, so i'd like the timeout interval to be short. If the image doesn't send in a few seconds, it's probably never going to send. For some unknown reason my NSURLConnection is ...
9
votes
1answer
3k views
NSURLConnection/NSURLRequest gzip support!
Does anyone knows if NSURLConnection/NSURLRequest have support for gzip requests.
If does, can you provide more information?
Thanks in advance!
8
votes
2answers
5k views
Downloading a file from url and saving to resources on iPhone
Is it possible to download a file (i.e. an sqlite database file) from the Internet into your iPhone application programmatically for later use within the application?
I am trying using ...
8
votes
2answers
16k views
error handling with NSURLConnection sendSynchronousRequest
how can i do better error handling with NSURLConnection sendSynchronousRequest? is there any way i can implement
- (void)connection:(NSURLConnection *)aConn didFailWithError:(NSError *)error
i have ...
8
votes
4answers
5k views
Does NSURLConnection take advantage of NSURLCache?
I'm trying to figure out how to use the URL loading framework to load URLs taking advantage of caching.
I am using NSURLConnections and feeding them NSURLRequests. I have even set the cachePolicy on ...
8
votes
4answers
7k views
Delayed UIImageView Rendering in UITableView
Ok, I've got a UITableView with custom UITableViewCells that each contain a UIImageView whose images are being downloaded asynchronously via an NSURLConnection. All pretty standard stuff...
The issue ...
8
votes
3answers
5k views
Creating URL query parameters from NSDictionary objects in ObjectiveC
With all the URL-handling objects lying around in the standard Cocoa libraries (NSURL, NSMutableURL, NSMutableURLRequest, etc), I know I must be overlooking an easy way to programmatically compose a ...
7
votes
2answers
3k views
NSURLConnection and grand central dispatch
Is it advisable to wrap up NSUrlConnection in a gcd style blocks and run it on a low_priority queue?
I need to ensure that my connections are not happening on the main thread and the connections need ...
7
votes
1answer
590 views
iPhone Custom CA certificate for an application which uses NSURLConnection?
I have an application which is communicating with many different sites and each site has its own SSL certificate signed by our own internal CA. Doing this prevents us the need from purchasing SSL ...
6
votes
2answers
5k views
How can I get NSURLResponse body?
I'm writing an application that connect with a server using NSURLConnection.
In the delegate method didreceiveresponse:, if the status code is 404, I cancel the connection and I would like to show a ...
6
votes
2answers
8k views
NSMutableURLRequest timeout interval not taken into consideration for POST requests
I have the following problem. On a NSMutableURLRequest using the HTTP method POST the timeout interval set for the connection is ignored. If the internet connection has a problem (wrong proxy, bad ...
6
votes
3answers
5k views
Handling redirects correctly with NSURLConnection
For the purposes of this, I'm going to pretend the original url is http://host/form and the new url is https://host/form. (Note that before I ship this, both URLs are going to be secure. However, the ...
5
votes
2answers
488 views
NSURLConnection vs. NSData + GCD
NSData has always had a very convenient method called +dataWithContentsOfURL:options:error:. While convenient, it also blocks execution of the current thread, which meant it was basically useless for ...
5
votes
3answers
525 views
NSURLConnection on iOS doesn't try to cache objects larger than 50KB
Despite Apple's documentation indicating otherwise, NSURLCache on iOS doesn't do any disk (flash) caching at all. You can subclass NSURLCache to change the behaviour of the fetch and store operations ...
5
votes
2answers
272 views
What caching algorithm does NSURLCache use?
Apple's NSURLCache class has decent documentation, but it doesn't say what caching algorithm it uses. Is it LRU, LFU, or something else entirely?
I'm developing for the iPad, and am hoping to make ...
5
votes
1answer
331 views
Unable to get destinationURL data in connectionDidFinishDownloading for ios5
I'm trying to get a list of assests urls to download. I'm using NSURLConnection in order to get a JSON file that have this list of urls.
in
- (void)connection:(NSURLConnection *)connection ...
5
votes
2answers
1k views
Determining Trust With NSURLConnection and NSURLProtectionSpace
Good day everyone,
I would like to ask a followup question to a previously posed question. I've got the code to create an NSURLRequest/Connection, run it and have the callback methods for ...
5
votes
1answer
4k views
What are differences between NSURLConnection and ASI-HTTP-Request?
Some people strongly prefer asihttprequest ASIHTTPRequest vs NSURLConnection
Reasons can be listed (not full)
a lot of extra features,such as supporting cache,http proxy etc
also based on CFNetwork ...
5
votes
1answer
1k views
iOS: How can i receive HTTP 401 instead of -1012 NSURLErrorUserCancelledAuthentication
I have a problem similar to the one described in the link below.
NSHTTPURLResponse statusCode is returning zero when it should be 401
I use [NSURLConnection ...
5
votes
2answers
595 views
How do I track the download progress of gzip encoded web content?
I'm writting an iPhone client that downloads stuff from the net. Since the cellular network is not so fast, and files might be big, I wanted to improve upon the activity spinner with a progress bar.
...
5
votes
1answer
2k views
Resume download functionality in NSURLConnection
I am downloading some very large data from a server with the NSURLConnection class.
How can I implement a pause facility so that I can resume downloading?
5
votes
2answers
293 views
Logging in without displaying a login page
I am writing an app which will display articles at a membership based website.
We want the app to be able to read and display articles that are set as "members only" - even if the app owner is not ...
5
votes
3answers
4k views
Cocoa: Checks required for multiple asynchronous NSURLConnections using same delegate functions?
This is with reference to the StackOverflow question Managing multiple asynchronous NSURLConnection connections
I have multiple asynchronous HTTP requests being made at the same time. All these use ...
5
votes
3answers
3k views
NSURLConnection is run many times
I connect asynchronously with server each 5 seconds. The URL is the same, but POST-body is changed each time. Now I create NSURL, NSURLRequest and NSURLConnection from the scratch each time.
I think ...
5
votes
3answers
4k views
NSURLConnection, NSURLRequest and remote caching
I'm having a small problem with request caching using NSURLConnection asynchronous connections on the iPhone. I don't know if I understood something incorrectly, or if Cocoa is doing the opposite to ...
4
votes
2answers
2k views
NSURLConnection methods no more available in IOS5
I was looking at the NSURLConnection class which could be used to establish a sync or async connection to an URL and then retrieve its data... a lot of changes have been made to this class with IOS 5 ...
4
votes
3answers
519 views
NSURLConnectionDownloadDelegate file issue
Now that 5.0 is launched and we can discuss it without breaching Apple's NDA, I have an issue with the new version of NSURLConnection. This has a new delegate, NSURLConnectionDownloadDelegate with two ...
4
votes
1answer
2k views
NSURLRequest / NSURLConnection ios 5.0 v/s earlier versions
I am trying to use NSMutableRequest and NSURLConnection to fetch a compressed file from the server . Here's the code I'm using:
NSMutableURLRequest *newRequest = [NSMutableURLRequest ...
4
votes
3answers
1k views
Multiple async webservice requests NSURLConnection iOS
I have a problem that Im not sure how to tackle. I can without any problem make requests to the REST service when passing a single request.
My problem now is at based on that respons i get some ...
4
votes
1answer
629 views
how do I check an http request response status code from iOS?
I am sending an http request from iOS (iPad/iPhone) to my python google app engine server using the NSURLConnection and NSURLRequest classes. How do I read the response's status, i.e. the value set by ...
4
votes
2answers
1k views
NSURLConnection and multitasking in iOS
I'm using NSURLConnection to download resources asynchronously in iOS. (They are large-ish PDF files, so it takes some time on a slow connection.)
Now I'm updating my app from iOS 3 to iOS 4. As my ...
4
votes
5answers
2k views
NSURLConnection doesn't call delegate methods
I saw similar questions here, but I couldn't find solution to my problem.
I have a simple NSURLConnection in main thread (At least I didn't create any other threads), but my delegate methods aren't ...
4
votes
1answer
2k views
SSL certificate for iPhone -> which CA?
I find all these work-arounds for NSUrlConnection's which use a closed API to access a non-trusted SSL certificate. The other options is to install the certificate first by using the Safari/Mail app..
...
4
votes
2answers
2k views
Where's the NSURLConnection protocol?
The documentation of NSURLConnection says that there are delegate methods like
connection:willSendRequest:redirectResponse:
But the documentation doesn't mention which delegate protocol to ...
4
votes
4answers
3k views
When to call release on NSURLConnection delegate?
When passing a delegate to the a NSUrlConnection object like so:
[[NSURLConnection alloc] initWithRequest:request delegate:handler];
when should you call release on the delegate? Should it be in ...
3
votes
0answers
63 views
how to play the data received from nsurlconnection [closed]
I try to play the audio from a given URL which is password protected. I've got the authentication working, but how do I play the data received after that?
- (void)viewDidLoad
{
NSString ...
3
votes
4answers
227 views
Objective-C class method does not call delegate methods while instance method does
I have the following 2 methods:
-(void)authenticateUserToGoogle:(NSString *)userName withPassword:(NSString *)password {
NSString *URLstr = GOOGLE_CLIENT_LOGIN;
URLstr = ...
3
votes
1answer
525 views
How do I get the default user-agent string in an NSURLConnection?
I would like to append text to the default user-agent header in an NSURLConnection. I know how to change the user-agent of the NSURLConnection, but I don't see how to get the default user-agent. I ...
3
votes
1answer
472 views
Return custom NSURLResponse class
I try to return an object of a subclass of NSURLResponse in my custom NSURLProtocol, but it seems the returned response is always exchanged by a normal NSURLResponse.
This is the part of the ...
3
votes
1answer
139 views
Correct way to handle various NSURLConnections differently
I have an iPhone programming making many different NSURLConnections to a server. I use many different webservices, and for each I get a different response.
This means I make many different NSURL ...
3
votes
1answer
373 views
NSURLConnection synchonous methods from within NSOperation
Suppose I have multiple NSOperation objects attached to a concurrent queue.
Within these NSOperations, I would call a synchronous method of NSURLConnectionClass, sendSynchronousRequest ... just to ...