Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
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 ...
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
13k views

How do I make HTTP post request for getting JSON object in response for iPhone application?

I've a web service running on server which return data either in XML format or JSON format. I wanted to request a JSON format but using HTTP Post method. any help greatly appreciated. thanks in ...
7
votes
3answers
5k views

How to send json data in the Http request using NSURLRequest

I'm new to objective-c and I'm starting to put a great deal of effort into request/response as of recent. I have a working example that can call a url (via http GET) and parse the json returned. The ...
7
votes
1answer
536 views

NSURLRequest won't fire while UIScrollView is scrolling

I have a problem in that I am trying to background load a sound file while the user moves around a UIScrollView... The problem is that I am using NSURLRequest so I can load in the background, but even ...
6
votes
1answer
423 views

When did caching in a UIWebView start working?

I've been testing an iPhone view controller that uses a UIWebView to load external content, as opposed to resources in the project's bundle. Another engineer noticed that the web view wasn't caching ...
6
votes
2answers
982 views

Can you intercept NSURLRequests in a UIWebView without breaking the back button?

I'm having trouble loading custom HTML into my UIWebView without breaking its goBack method. What Works I'm intercepting the URL requests of my UIWebView so I can load custom HTML. I have control ...
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
6answers
5k views

Alternative method for NSURLRequest's private “setAllowsAnyHTTPSCertificate:forHost:”?

My iPhone application was rejected solely for using the (very safe, it seems) private method +setAllowsAnyHTTPSCertificate:forHost: for NSURLRequest. Is there a non-private API to emulate this ...
5
votes
5answers
5k views

Using NSURLRequest to pass key-value pairs to PHP script with POST

I'm fairly new to objective-c, and am looking to pass a number of key-value pairs to a PHP script using POST. I'm using the following code but the data just doesn't seem to be getting posted through. ...
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?
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
2k views

Use a self-signed ssl certificate in an iphone app

I apologize in advance for the long-winded question. I'm having trouble with a self-signed SSL cert and I want to document everything I've tried so far. I'm working on an app that communicates with ...
3
votes
1answer
133 views

NSURLRequest hanging SpringBoard

I have a MobileSubstrate addon that hooks springboard (not in the actual objective c code, but with the plist). It contains a UIWebView, which loads a NSURLRequest. This NSURLRequest is here: ...
3
votes
2answers
701 views

Constantly growing memory allocation while fetching images over HTTP in iOS

I am implementing an iOS App that needs to fetch a huge amount of images over HTTP. I've tried several approaches but independently what I do, Instuments shows constantly increasing memory allocations ...
3
votes
2answers
2k views

NSURLRequest cannot handle HTTP body when method is not POST?

Whenever I set a body on a mutable request with the method set to anything other than POST, the body is not included in the request and I get a kCFErrorDomainCFNetwork error 303 ...
3
votes
2answers
797 views

How to add lowercase field to NSURLRequest header field?

I'm getting pretty frustrated figuring out how to add a lowercase header field to an NSMutableURLRequest. NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:[NSURL ...
3
votes
1answer
7k views

How to use NSURLRequest / NSURLConnection to download an mp3 file to app?

The Situation In my app, I am currently downloading an mp3 file (to docs directory) using [NSData dataWithContentsOfURL:URL], a method that works fine, but ties down the CPU, dissallowing screen ...
3
votes
5answers
6k views

NSURLConnection leak?

i have set up a nsurl which grabs the data from http. when i run instrument, it says i have a leak NSFNetwork object. and how do i release theConnection in (void)ButtonClicked? or it will be release ...
3
votes
4answers
6k views

Handling a NSURLRequest with timeout when using delegate

I'm using a NSMutableURLRequest to connect to a web site to get a JSON response. I'm doing so by generating the request, and then using NSURLConnection with a delegate of self to handle the async ...
2
votes
3answers
39 views

How to send NSURL request containig @ in the username

How can i send a url request containing a @ character in the username ? Currently my url request code looks as follows : NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL ...
2
votes
2answers
35 views

What is the Difference between CFUrl and NSUrl

I would like to send a simple HTTP to a web server in Objective-C. From what i've seen, the most common way is to use the NSURLRequest with NSUrl.... But i have also stumbled upon the CFNetwork ...
2
votes
2answers
760 views

Sending multipart POST from iOS and reading parameters in PHP $_POST?

I'm trying to send a multi-line post from an iPhone/iPad to a php service, the problem is that for some reason, the POST Content-Type seems to be application/x-www-form-urlenconded, ( I found out this ...
2
votes
1answer
92 views

NSURL from File -> Editing text of data then turn back into URL = NULL

I have an html file that I want to dynamically edit before displaying to change some of the values. I get the file fine, then replace the text I want, still fine. But when I convert it back to a ...
2
votes
2answers
2k views

Append data to a POST NSUrlRequest

How do you append data to an existing POST NSUrlRequest? I need to add a new parameter 'userId=2323".
2
votes
1answer
106 views

How to distinguish between link requests in Objective-C

I have the following method in a UIViewController: - (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType. My ...
2
votes
1answer
2k views

UIWebView won't load links with certificate (https:// prefix)

I know this has been asked before but I have looked at every answer (there aren't many) and none help me. The issue I am running into is dealing with certificates with my schools e-mail service. The ...
2
votes
1answer
468 views

Tunneling web requests on iPhones

I want to know if it is possible to tunnel web requests, and of course what to use/implement. I have already written subclasses of NSInputStream and NSOutputStream to send & receive data via my ...
2
votes
3answers
948 views

iPhone Objective C oauth 2.0 Login - unsupported_grant_type

I am brand new to salesforce development and am trying to connect to Sales force to get the token. I guess my question is 2 fold: 1) Do I have to use a webpage to authenticate with SF? 2) If not, ...
2
votes
1answer
2k views

add HTTP Header for NSURLRequest

Is there Anyway to Add HTTP header to NSURLRequest object? I used to Add them in NSMutableURLRequest using: [request addValue:@"PC" forHTTPHeaderField:@"machineName"] Thanks in Advance.
2
votes
1answer
165 views

CFHTTPCookieGetCreateDate is deprecated in this OS build (iOS4)

I have a simple application which accesses cookies from a webpage using a standard NSURLConnection. The existing version of the application works fine (developed for 3.0), however, I have modified ...
2
votes
3answers
503 views

Cleaning up hanging NSURLConnections when a controller is dealloc'ed

I have a controller that makes HTTP GET requests using a custom class, which acts as the delegate for the NSURLConnection. Once the NSURLConnection fails or finishes, the custom class invokes methods ...
2
votes
5answers
767 views

NSURLConnection not “firing” until UITableView scrolls

I've got a UITableView that loads an image asynchronously and places it in the UITableViewCell once it's loaded (I'm using almost the exact same code as in the "LazyTableImages" tutorial). This works ...
2
votes
1answer
2k views

NSURL from NSURLConnection?

It seems dead simple, as to create an NSURLConnection I usually do this: NSURL *theURL = [NSURL URLWithString:urlString]; NSURLRequest *req = [NSURLRequest requestWithURL:theURL]; NSURLConnection ...
1
vote
1answer
91 views

UIWebView not loading mobile twitter (iPad)

I try to load Twitter into my UIWebView Using loadHTMLString (after loading the DOM using an NSURLRequest), now the string I have contains the correct HTML. It loads the twitter page, but then I only ...
1
vote
1answer
68 views

Sending/Storing credentials in an iPhone app

I have an iPhone app that uses an NSURLRequest to sign in to a web app. In order to make a particular request later down the line, it needs the cookie received when the user logged in, to verify the ...
1
vote
1answer
92 views

How to use authentication token in NSURLRequest

I'm using a service with REST API, which provides me an authentication token as the response for the sign in POST request. Now for authentication on every request i need to send that token with the ...
1
vote
1answer
55 views

Remove a cookie from NSURLRequest

I need to expire a specific cookie when making a NSURLRequest, but don't see any way to expire a specific cookie. Is this possible?
1
vote
1answer
58 views

Monotouch + UIWebView = Random Crashes

I'm using the latest stable releases of Mono/Monotouch/MonoDevelop on a iOS 5.0 iPhone and iPad. I have a UIWebView that in the emulator never crashes however randomly on the actual devices it ...
1
vote
1answer
39 views

how can I hold initial data when introducing an iPhone app?

I am developing an iPhone app which retrieves information via NSUrlRequest and displays through UIWebView. I want to hold initial data (such as HTML pages, images) as a cache so that users of my app ...
1
vote
4answers
133 views

how to send Asynchronous URL Request?

i will like to know how do i get a return value 1 or 0 only.... back from a URL request asynchronously. currently i do it this way, NSString *UTCString = [NSString ...
1
vote
1answer
56 views

Application delegates are not calling while application entered into background

I am implementing an iPhone application.I am downloading data from server by using asynchronous request in the application.If, I Press the home button, My application delegate is not calling ...
1
vote
2answers
64 views

How to trap custom URL scheme from a webview?

In my application, I have a webview which loads up a page that contains both normal links and custom URL schemes, such as myapp://id=1234. Right now, I am trying to trap the request within this ...
1
vote
0answers
55 views

POST to server results in GET request

I'm trying to do a simple POST request to a server, with this code: NSString *post = [[NSString alloc] initWithFormat:@"email=%@&password=%@", self.email.text, ..]; // .. simplified keychainItem ...
1
vote
1answer
675 views

NSData and Uploading Images via POST in iOS

I have been combing through the many many posts about uploading images via POST in iOS. Despite the wealth of information on this topic, I cannot manage to correctly upload JPEG data taken from my ...
1
vote
2answers
132 views

Cannot get NSURLConnection, but app keeps waiting

So i have an app that connects to an internal IP Address. So i want to implement code that will make sure the NSSURLConnections is made (i.e. connected to the wireless network) because i wont be able ...
1
vote
1answer
94 views

How can i port .net's HttpWebRequest to iOs's URLRequest

How can i port the following .net HttpWebRequest to objective-c? I have been given code snippets from a colleague for a POST request in .net to a certain server, and was required to implement the ...
1
vote
1answer
103 views

Handle NSURLRequest Response

I am working on an app that queries a web service. I want to know how can I handle errors like "404" (NOT FOUND). The delegate method connection:(NSURLConnection *)conn didFailWithError:(NSError ...

1 2 3 4 5