Tagged Questions

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 ...
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 ...
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 ...
6
votes
3answers
450 views

Switching to AFNetworking from ASIHTTPRequest - Issue with ASINetworkQueue

I'm working on a problem where I have to download around 10 different large files in a queue, and I need to display a progress bar indicating the status of the total transfer. I have this working ...
5
votes
4answers
878 views

Good pattern for Internet requests with Grand Central Dispatch?

I'm currently using synchronous ASIHTTPRequest with GCD queues to download data from the Internet, then parse the response data with JSONKit. What do you think about this pattern. Thank you in ...
5
votes
3answers
328 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
1k views

XCode 4 + Instruments 4: False positive leaks?

Ever since switching to XCode 4 the leaks tool shows a LOT of leakage, all from JSONKit and ASIHTTPRequest, after a 2 min run I am leaking hundreds of arrays/dictionaries/strings (from ...
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
2answers
108 views

ASIHTTPRequest: a (potentially) carrier-specific issue whilst uploading data / server receives blank POST

Very strange (to me) problem when uploading files to a server using ASIFormDataRequest. When uploading over WiFi, there's no problem, I can upload just fine. When uploading over 3G using O2 UK as the ...
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
3answers
668 views

Objective C: How to release delegates in this situation

I am using custom delegate objects to do some cleanup tasks after a request finishes. ASIHTTPRequest doesn't retain delegates so I can't autorelease them. Right now this is how I am allocating and ...
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. ...
3
votes
1answer
344 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
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
175 views

ASIHttp Synchronous request is running delegate methods after returning

I am trying to download a file from a server. My code is following. In didFinishLaunchingWithOptions method, I create a new thread using detachNewThreadSelector which runs the following code. ...
3
votes
1answer
390 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
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
704 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 ...
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
45 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
35 views

ASIHTTPRequest setTemporaryFileDownloadPath: not working with some URL's

When I download a URL like this one: http://tinyurl.com/csr2xc7 then ASIHTTPRequest's temporaryFile is created and the data is not stored in memory. However with a URL like this: ...
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
0answers
67 views

Veterans needed: History of ASIHTTPRequest

Prologue In the aftermath of the [request release]; article on the blog of this framework's creator and — admittedly — not being a huge fan of ASIHTTPRequest (from now on: ASI) in the first place, I ...
2
votes
4answers
60 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
95 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
3answers
119 views

Delegating work to two different Delegates, Is it possible?

I am trying show a UIProgressView while downloading an image from a server by using ASIHTTPRequest. I want to show progress on the UIProgressView which is working perfectly using this code: [request ...
2
votes
2answers
128 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
2answers
83 views

How to retrive keychain from iphone app?

I store password to the keychain when the user logs in. Now I'm working on change password page. I want to compare the keychain password with old password. How do I retrieve the keychain password? ...
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
677 views

Do we have an update of ShareKit for iOS 5 which supports automatic reference counting?

I am trying to migrate my app which was initially developed in iOS 4.3 to iOS 5. All the third party code is being migrated with Xcode's refactor tool. But it doesn't convert the code and shows a lot ...
2
votes
1answer
260 views

ASIHTTPRequestErrorDomain Code=8. Cannot move file from temp directory to docs

I download files with ASIHTTPReqeust. Everything downloads fine but it can't move file from temp directory to documents. When i implement -(void) request:(ASIHTTPRequest *)request ...
2
votes
5answers
518 views

How do I use ASI Http in iOS to POST data to a web service?

I am using the instructions provided in the ASI page here. I am trying to send some data to a web service and not seeing any results. This is my sendRequest method which gets called in viewDidLoad ...
2
votes
1answer
114 views

Error while uploading image to server in base 64encoding string

I'm trying to upload data onto a server. The server can accept strings of images. Now I'm using the following code to upload image to the server. NSData *image = UIImagePNGRepresentation(image); ...
2
votes
2answers
87 views

How to send a float value using ASIHTTPRequest?

I'm pretty new to iPhone. I want to send a request to a server with a float value for a specific key. Can anyone help me out here how to send a float value using ASIHTTPRequest in the request body. I ...
2
votes
2answers
146 views

Objective c, downloading, checking and keeping available a plist file

Okay, I'm having a bit of a mental block today/this week, so I'm probably being stupid but I can't get this to work. So, any advice/help as always would be hugely appreciated... I need my iPhone app, ...
2
votes
1answer
213 views

Use ASIHTTPRequest as NSDictionary Key

I'm attempting to use a ASIHTTPRequest/ASIFormDataRequest as a key in a NSDictionary as so: ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url]; [request ...
2
votes
3answers
965 views

How to track the progress of a download using ASIHTTPRequest (ASYNC)

I am currently using an asynchronous call to my API (I setup) on my site. I am using ASIHTTPRequest's setDownloadProgressDelegate with a UIProgressView. However I don't know how I can call a selector ...
2
votes
3answers
608 views

How do I repeat an ASIHTTPRequest?

Given the example code below: // ExampleModel.h @interface ExampleModel : NSObject <ASIHTTPRequestDelegate> { } @property (nonatomic, retain) ASIFormDataRequest *request; @property ...
2
votes
2answers
242 views

Objective-C: Instance Variable in Category

I am just asking whether it was possible to add an instance variable via a category. My special problem is, that I need to add an NSIndexPath property to an ASIHTTPRequest object but I don't wanna ...
2
votes
2answers
514 views

Best way to handle many ASIHttpRequests and core data operations in ipad app

The current app I'm developing for the iPad involves handling many network requests and persisting the processed results in core data. The scenario is follows - the application needs to download ...
2
votes
2answers
204 views

Correct way to release object which implements NSOperationQueue and Asynchronous requests

I'm struggling to figure out a solution to my problem, I have a Download class which handles calls to my api, these calls are added to a NSOperationQueue. Each call is assigned a completed and failed ...
2
votes
2answers
1k views

How to call soap method from ASIHTTPRequest in iphone?

I am using the ASIHTTPRequest class to download and upload data.Can any one explain how to call SOAP method to access this webservice: "http://ced.netsdi.com/Chipaservice.asmx"
2
votes
1answer
306 views

Restrict my iPhone application to use only one server certificate

My application uses ASIHttpRequest for my server communication. I have a requirement that I should block HTTP protocol cos I dont wont to transmit that data over insecure link. So only SSL over HTTPS ...
2
votes
2answers
3k views

How to Using ASIHTTPRequest to tracking Upload/Download progress

I got some question is using ASIHTTPRequest to tracking Upload/Download progress This is the sample from ASIHTTPRequest website ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url]; ...
2
votes
1answer
1k views

How do I get Ruby on Rails to work with ASIHTTPRequest?

I am creating an iOS application with a Ruby on Rails backend. I've got my logic setup and working in Rails, and have verified by testing in a web browser. My Rails application will not respond ...

1 2 3 4 5 6