Tagged Questions
36
votes
6answers
2k views
What major ASIHTTPRequest features is AFNetworking missing?
With work having recently stopped on ASIHTTPRequest, it seems like attention is shifting to AFNetworking.
However, I've not yet found a good comparison of the features of the two libraries, so I ...
16
votes
2answers
2k views
Best architecture for an iOS application that makes many network requests?
I'm in the process of rethinking my approach to the request architecture of a large app I'm developing. I'm currently using ASIHTTPRequest to actually make requests, but since I need many different ...
13
votes
3answers
3k views
Asihttprequest 61 errors [closed]
it should be a simple problem.
im using the ASIhttprequest in many project but sins 1 week each new project i'm trying to add the ASIhttprequest classes i got the following 61 error before using ...
11
votes
2answers
4k views
ASIHTTPRequest: https with SSL
How to implement a https connection with SSL and ASIHTTPRequest? Are there some special steps to do? Can it be that this has nothing to do with ASIHTTPRequest? It has to do only with the server-side I ...
9
votes
3answers
5k views
8
votes
4answers
241 views
ASIHTTPRequest / ASIFormDataRequest - referencing request object within blocks under ARC
Very similar to this question, I am trying to convert a project that uses ASIHTTPRequest & ASIFormDataRequest to ARC.
In my view controller classes, I often refer to and use properties of the ...
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
1answer
1k views
Uploading to Ruby on Rails from iPhone using ASIHTTPRequest
I've really hit a wall and am need of some help! Thankyou for reading this far!
I'm in the middle of writing an app that talks to my ROR web-server for database requests and works great thanks to ...
7
votes
3answers
2k views
Generic approach to NSManagedObjectContext in multi-threaded application
I've read a number of posts here about NSManagedObjectContext and multi-threaded applications. I've also gone over the CoreDataBooks example to understand how separate threads require their own ...
7
votes
4answers
846 views
How can I add HTTP request caching to an application using ASIHTTPRequests?
I'm using ASIHttpRequests and an ASINetworkQueue in an iphone app to retrieve some 100k XML files and a lot of thumbnails from a web service. I'd like to cache the requests in the style of NSURLCache. ...
5
votes
2answers
193 views
Is it safe to still use ASIHTTPRequest?
Ben Copsey has abandoned ASIHTTPRequest. It has been announced almost two months ago but I just realized it.
I'm in the middle of a project using it. It wouldn't be an huge problem for me to replace ...
5
votes
2answers
2k views
iOS Development: Why do I always get the “A connection failure occurred” on the 1st attempt, but success on the next?
I'm using the ASIHTTPRequest lib in my iOS app to make RESTful requests to my Rails 3 web app. I seeing a weird and somewhat consistent error the 1st time I try to make a POST request to my web app, ...
5
votes
1answer
249 views
http status code 400 in middle east countries
I have an iPad app which loads a plist from a server fine on a UIWebView but when I try to get it as response string from the server, it returns a http status code 400 with response string as Request ...
5
votes
3answers
327 views
Push vs polling with web service on iPhone
I'm using the ASIHttpRequest library to ask a web service every minute for updates. The app receives a json string and parses it. It works OK.
But I'd like to make this more efficient.. what would be ...
5
votes
2answers
5k views
ASIHTTPRequest post json to php server
I have been trying to post a json object to a PHP script for the last 5 hours. I have read all the docs and it seems the code should work BUT it does not. The request is made and received ok, but I ...
5
votes
4answers
2k views
iPhone ASIHTTP - Distinguishing between API calls?
I currently have a view controller that implements ASIHTTP for handling API calls.
My view controller fires 2 separate calls. I need to be able to distinguish between the 2 calls in the ...
4
votes
1answer
302 views
Incorrect NSStringEncoding value 0x0000 detected (using ASIHTTPRequest)
I'm using ASIHTTPRequst in my application and im having some problems, but only on certain devices. In some cases i get the following error:
"
Incorrect NSStringEncoding value 0x0000 detected. ...
4
votes
1answer
511 views
ASIFormDataRequest POST returning website source code?
I am using the following code to set the username and password to a form on a website:
ASIFormDataRequest *request = [[ASIFormDataRequest alloc] initWithURL:url];
[request ...
4
votes
1answer
1k views
ASIHTTP: Upload UIImage?
Can someone please tell me how I can use an ASIHTTPRequest object in Objective-c to upload an UIImage object? Do I need to convert it to an NSData object?
(This is for an avatar upload url)
E.g.
...
4
votes
2answers
2k views
Empty body in POST in ASIHTTPRequest
Basically, I am sending a POST request with an empty data body:
ASIHTTPRequest *request [ASIHTTPRequest alloc] init];
[request setURL:[NSURL URLWithString:escapedUrlString]];
[request ...
4
votes
4answers
1k views
Crashing with ASIHTTPRequest and NSOperationQueue when cancelling operations
I'm having a really hard time when trying to cancel requests in an NSOperationQueue.
Before deallocating my 'engine' object, I call a cancelOperations method to cancel everything in the queue, so ...
4
votes
1answer
2k views
How to Use ASIFormDataRequest to http post array of NSDictionary objects
Hey, I need to make a HTTP POST request with an array of NSDictionary objects.
When I do this, however, I notice on the server side that the NSDictionary object does not get deserialized to a hash. ...
4
votes
2answers
2k views
How to use Three20 framework to upload multiple images and handle JSON response?
So I have an iPhone application that needs to:
Post several strings and up to 5 images (stored in memory) to a RoR web application
Parse the JSON returned that will include several strings and an ...
4
votes
1answer
4k views
ASIHTTPRequest - HTTPS
Does ASIHTTPRequest support HTTPS connections? My connection right now works for a HTTP connection and errors if I try a HTTPS Connection. (Goes into requestFailed and gives me a ...
4
votes
3answers
4k views
Timeout a ASIHTTP request
I'm using the ASIHTTPRequest library to request some data from a server in my iPhone app. But i cannot figure out how to create a timeout so that if the server goes down or the iPhone doesnt have ...
3
votes
1answer
340 views
ASIHTTPRequest vs AFNetworking framework
I am about to develop application for iPad and it has enormous amount of background thread network calls.
I would like to know which one will be better? ASIHTTPRequest still works but not ...
3
votes
1answer
180 views
Using ASIHTTPRequest to POST nested params using a NSDictionary
Trying to post information for nested parameters to a rails app and having some trouble.
#pragma mark - Begin Network Operations
- (void)beginNetworkOperation {
NSURL *requestURL = [NSURL ...
3
votes
3answers
138 views
Wi-fi sleeps after some time - objective-c
I created application to download files. For downloading i use ASIHTTPRequest. When I start download big file, and lock my device, after some time my download stops, wi-fi disables and i see Edge icon ...
3
votes
1answer
63 views
App crashes when accessing NSDictionary's values but not when accessing its keys?
I have an NSDictionary object called "myData," and I'm trying to access it from the UITableViewDelegate method "didSelectRowAtIndexPath."
I can perform these operations fine:
if(myData == nil) { /* ...
3
votes
2answers
105 views
How to terminate ASIHTTP connection in iphone?
I am having an issue with ASIHTTPRequest authentication. The steps are in the following order,
User entering wrong username and password -- > No data comes from backend and request failed delegate ...
3
votes
3answers
2k views
Where is the “ Edit Active Target ” in xcode 4
i follow stup instructions to add ASIHTTPRequest to my project
and i dont found Edit active target in my xcode 4 . I can't post image i should have 10 reputation so you can see it in the link , it's ...
3
votes
1answer
218 views
asihttprequests failing
I'm trying to download a a queue of files using ASIHTTPRequest. Each request is permanently failing. I know that the urls are valid, I've traced them out and popped them into a browser and the files ...
3
votes
4answers
1k views
Setting an ASIHTTPRequest post to a SimpleHTTPServer Python server?
I am working on a project (that i will not be releasing to the app store - just for fun) that will upload an image via an HTTP Post request from my iPhone to a server that I have running the Python ...
3
votes
2answers
777 views
Is calling -[NSRunLoop runUntilDate:] a good idea?
Is it generally a good idea to call -[NSRunLoop runUntilDate:]? It seems to work without any issues, but it makes me nervous to tell the run loop to run from within the run loop.
More info:
I have ...
3
votes
1answer
387 views
ASIHTTPRequest compile/link problem
when I was trying to add ASIHTTPRequest for an iPhone project, I ran into many compiling/Linking problems even after following the instructions allseeing-i.
so after comparing my new project with the ...
3
votes
4answers
2k views
ASIHTTPRequest; installation issues
Hi there
I am trying to install ASIHTTPRequest and i am having issues with libxml/HTMLParser, xmlsave, xpath and xpathInternals are missing.
I have already included the libxml2.2.7.3 framework and ...
3
votes
1answer
697 views
Tracking download progress of a response to a ASIFormDataRequest
I am sending a request with POST data to a web server. The web server returns with JSON response in case of an error or the file data itself if there are no errors.
I would like to track the progress ...
3
votes
1answer
808 views
iPhone upload image speed advice
I have an app that allows you to take a picture, adjust the jpeg quality size (10-100%) and then send it to a server using ASIFormDataRequest (part of the ASIHTTPRequest implementation). This works ...
3
votes
1answer
521 views
How do I send a delete request with ASIHTTPRequest?
Wondering how I can send a DELETE instead of POST/GET etc with ASIHTTPRequest.
Thanks!
3
votes
1answer
703 views
What delegate method is called when an ASI-HTTP-Request times out?
I have an app that uses ASI-HTTP-Request for large files, and I had a tester recently note that they wer observing very long loading delays that should be manifesting as timeouts. I have delegate ...
3
votes
2answers
2k views
ASIHTTPRequest synchronously
I have an iPhone app which uses ASIHTTPRequest to communicate to a REST service on my server. When I'm running on the simulator, it works just fine, but when I get onto the phone itself, I get weird ...
2
votes
1answer
43 views
Why is the frame of my UIScrollView changing after making a call with ASIHTTPRequest?
I'm trying to figure out why the frame of a UIScrollView is changing after using ASIHTTPRequest. In the nib, the UIScrollView is set at {{0, 0}, {320, 416}} with the Top Bar on the view holding it set ...
2
votes
1answer
41 views
Checking is WIFI is available using ASIHTTPRequest
I am using ASIHTTPRequest. I need to know how to do the following events using it;
The following are the way i should be checking for the availability of the internet, but in which event should i add ...
2
votes
1answer
91 views
objective c - asynchronous http request blocks the program
I'm having a very strange problem with asynchronous http request:
I send a request to the server, which delays it by 10 seconds and then sends a response.
In order to not block the program, I do it ...
2
votes
4answers
58 views
Handling HTTP request arguments in a PHP script
In an Objective-C method I use this
NSURL *url = [NSURL URLWithString:@"http://xxxxxx.com/test/test.php?id=3333&vote=1"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
...
2
votes
1answer
94 views
Error in accessing google reader's Endpoints API
I am trying to implement google reader in iPhone APP and so far I have successfully received the sid and auth. The problem arises when I try to call the Endpoints API with GET.. Here's the code:
...
2
votes
2answers
126 views
Using ASIDownloadCache offline
I want to get a JSON and cache it when the Internet is available or use cache if it's not. I used this code, but request's responseString is always null when I'm offline. (Documentation says it works ...
2
votes
1answer
97 views
I seem to be getting a huge amount of errors in XCode with ASI HTTP Request?
I am getting about thirty issues already with the files which I downloaded from http://allseeing-i.com/ASIHTTPRequest/.
See http://f.cl.ly/items/0J0l3w1t1n222N3E3v44/ASIErrors.tiff for a few errors ...
2
votes
1answer
79 views
HTTPS on app store - what is the process?
(I think this question has been asked before, but the answers have been contradictory and may be out-of-date by now)
I'm creating an app which uses HTTPS, using the ASIHTTPRequest library.
My ...