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 ...
15
votes
3answers
1k views
Fix warning “Capturing [an object] strongly in this block is likely to lead to a retain cycle” in ARC-enabled code
In ARC enabled code, how to fix a warning about a potential retain cycle, when using a block-based API?
The warning:
Capturing 'request' strongly in this block is likely to lead to a retain cycle
...
5
votes
1answer
885 views
Accurate progress displayed with UIProgressView for ASIHTTPRequest in an ASINetworkQueue
Summary: I want to track the progress of file downloads with progress bars inside cells of a tableview.
I'm using ASIHTTPRequest in an ASINetworkQueue to handle the downloads.
It works, but the ...
3
votes
1answer
700 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 ...
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
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
1answer
2k views
Using ASIHTTPRequest with a UIProgressView in a UIAlertView
I've managed to addSubview: a UIProgressView in/onto a UIAlertView, as well as set everything for ASIHTTPRequest, but where-ever I put the [request startSynchronous];, it crashes the app.
[request ...
2
votes
1answer
294 views
ASIHTTPRequest: keychainPersistence
ASIHTTPRequest can store the username/password in the Keychain. How does this work?
1) Is the built in authentication dialog (ASIAuthenticationDialog) coming up and stores the username/password only ...
2
votes
2answers
2k views
ASIHTTPRequest code design
I'm using ASIHTTPRequest to communicate with the server asynchronously. It works great, but I'm doing requests in different controllers and now duplicated methods are in all those controllers. What is ...
1
vote
3answers
80 views
Download an asynchronous multiple images in UITableViewView?
How can i download an asynchronous multiple images in the UITableView using ASIHttpRequest or something useful?
- (UITableViewCell *)tableView:(UITableView *)tableView ...
1
vote
0answers
172 views
ASINetworkQueue download progress
I need to show the download progress for ASINetworkQueue and it works fine if I add all my request to the queue and then call go method on it. but if there are some requests running in the queue ...
1
vote
2answers
204 views
Blocks retaining the class they just got passed to?
We have a class that wraps NSURLConnection. It accepts a block that it calls back when it finishes loading. To give you an idea, see below. When you send a request, it saves the callback on the ...
1
vote
2answers
1k views
iPhone ASIHttpRequest - can't POST variables asynchronously
Greetings,
I'm trying to simply POST data to a url using ASIHttpRequest.
Here is my code:
__block ASIHTTPRequest *request=[ASIHTTPRequest requestWithURL:url];
[request setPostBody:[NSMutableData ...
1
vote
1answer
186 views
Dealing With Cookies and Reddit on the iPhone
I'm building a Reddit client, for the iPad and the iPhone. I know there's some other clients, but I have some really cool ideas for tabbed Reddit browsing :D
Anywho, I'm working on the back-end of ...
1
vote
1answer
589 views
ASIHTTPRequest: check if username/password is correct
How can I check a webservice if the username/password is correct?
I don't want to transfer the whole response body. I only want to know if the username/password exists and is correct. Currently I'm ...
1
vote
2answers
294 views
ASIHTTPRequest: Results are not populated at the right time when using an asynchronous request
I've my own class which should do the request and the data processing (parsing). This class should be used from different view controllers. In this class I have implemented:
- ...
1
vote
1answer
766 views
YAJL-ObjC + Streaming Parser + gzip
I'm successfully using yajl-objc along with ASIHTTPRequest in an iPhone project that does network access and pulls down and parses JSON data. ASIHTTPRequest allows gzipped HTTP responses by default, ...
1
vote
1answer
540 views
Stream multiple files in _one_ ASIHTTPRequest
What is best practice to stream multiple files in one ASIHTTPRequest?
Right now, for one file I use:
....
ASIHTTPRequest *request = [[ASIHTTPRequest alloc] initWithURL:someUrl];
[request ...
1
vote
1answer
1k views
ASIHTTPRequest: Receive delegates from several requests within a network queue
I use ASINetworkQueue to send two requests, which are in a queue.
My problem is, that I'm not able to receive notifications when
a request fails/is done.
Code:
[networkQueue ...
0
votes
1answer
18 views
ASIHTTPRequest - Adding to queue, but i get queueFailed
I am using ASIHTTPRequest. i need to why requestWentWrong gets executed ? There are times where the application works fine, but sometimes it executes the requestWentWrong method.
1.) I need to know ...
0
votes
1answer
77 views
ASIHTTPRequest - what broke in iOS 5?
I have been using ASIHTTPRequest to do a simple POST upload of a "Scores and Settings" xml file to my server on an iOS game. As of iOS 5, ASIHTTPRequest is having some issues, and as mentioned here ...
0
votes
1answer
25 views
How can i upload Photo from imagePickerController using ASIFormDataRequest?
I use the delegate of UIImagePickerController for choosing a photo and put it to the server but the problem is i don't know how can i do that using ASIFormDataRequest and i don't know what key should ...
0
votes
0answers
43 views
How do I update my progress UIProgressView in another UIView?
I hope someone can help.
I have a file data.h as an NSObject.
In this file I have implemented ASIHTTPRequest.
But my UIProgressView is in another UIViewController.
How do I update that progress ...
0
votes
1answer
24 views
ASIHTTPRequest stops downloading when request:willRedirectToUrl: is implemented
As soon as I add the request:willRedirectToUrl: method in the delegate the request stops downloading from the redirected url, if I don't implement the method it continues to download the file from the ...
0
votes
1answer
65 views
ASIHTTPRequestTester: Asynchronous not working
I'm trying to make a App for iOS using ASIHTTPRequest, but I'm facing some issues using it. To demonstrate my problems, I've uploaded an test-project, which you can download from here: ...
0
votes
1answer
82 views
ASIHTTPREQUEST gives error (1) when iPhone is locked and unlocked
I am using ASIHTTPREQUEST to do asynchronous network connections in my app. For the most part it works great. However, if I am running a connection, and lock the phone (but leave the app open), and ...
0
votes
2answers
66 views
Convert network request from synchronous to asynchronous
I'm currently doing a synchronous network request to load my app which is not the best way as it blocks the UI. I'm also using ASIHTTPRequest. I understand I can just change the line from ...
0
votes
1answer
86 views
How can I access “http://webservices.ns.nl/ns-api-stations” using ASIHTTPRequest
I am trying to access the XML http://webservices.ns.nl/ns-api-stations using ASIHTTPRequest. But what I am using now doesn't seem to work. It says the host is not reachable. So I assume it is going ...
0
votes
1answer
104 views
ASIHTTPRequest Cache is crashing app
I have the following code:
+ (NSMutableArray*)getTodayData:(NSDate*)today
{
NSURL *url = [NSURL URLWithString:[NSString ...
0
votes
1answer
141 views
ASIHTTPRequest Not Working
I have the following code in my cellForIndexPath but the pics are not in the right order:
NSURL *url = [NSURL URLWithString:[self.picturesArray objectAtIndex:indexPath.row]];
__block ASIHTTPRequest ...
0
votes
2answers
335 views
How does the ASIHTTPRequest know that there's new data from JSON response
I'm developing an iPhone app, that uses ASIHTTPRequest library. I''m stuck with the cache and download data.
When I first open the app, it makes a request and download and cache the JSON response of ...
0
votes
1answer
291 views
Parse CSV and update detailview information in iOS
My configuration: Tab Bar with tableView -> click on row -> detailview
My problem: I make a request with asihttp. So far so good. I get a response like:
name;tel;email
Hans ...
0
votes
3answers
119 views
Order of Requests in ASIHTTPRequest
I am using ASIHTTPRequest to download some data.
I have the following in a method:
// Request 1
request1.tag = 1;
[request1 setDelegate:self];
[request startAsynchronous];
// Request 2
...
0
votes
2answers
427 views
ASIHttpRequest - delete cache after a certain time interval
I'm using the ASIHttpRequest library in my App and I'm trying to set the cache for a particular request so that it may be used up to a certain period of time (if no data is available from the server ...
0
votes
2answers
55 views
Object properties throw unknown error in some methods
Setup: I have a custom class I've created that handles data retrieved from a web source using ASIHttpRequest. This data is json encoded. In the completion block of the async request , the custom ...
0
votes
1answer
288 views
Do a GET request with parameters on iPhone SDK?
I'm doing an app which retrieves user info, and it does that using a GET request, but I don't know how could I make one. Already tried ASIHTTPRequest with this code:
NSURL *url = [NSURL ...
0
votes
2answers
183 views
Delaying, cancelling or replacing a ASIFormDataRequest in a NSOperationQueue (for a searchbox)
I'm successfully making a ASIFormDataRequest using the below code.
//get groups
if (![self queue]) {
[self setQueue:[[[NSOperationQueue alloc] init] autorelease]];
}
//make ...
0
votes
1answer
173 views
How Can I Get Remote FileName on Host When download it via ASIHttpRequest
How Can I Get Remote FileName on Host When download it via ASIHttpRequest??
for example, some url like this:
http://www.filedropper.com/processing/filedownload.php?id=test_22
test_22 is my ...
0
votes
2answers
306 views
File doesn't show in documents directory?
I want do download a PDF to my documents directory.
I do it like this:
- (IBAction)grabURLInBackground:(id)sender
{
NSURL *url = [NSURL URLWithString:@"http://www.test.com/test.pdf"];
...
0
votes
1answer
246 views
ASIHTTPRequest: when does ASIAuthenticationDialog appear?
When does the authentication dialog appear? If I didn't set the username/password in the request or URL?
0
votes
2answers
649 views
ASIHTTPRequest: Basic Authentication with Base64 encoding?
Does ASIHTTPRequest uses Base64 encoding for username and password? On the webpage I only found out that the username/password is in plain text if SSL is not used.
-1
votes
1answer
219 views
asiHttpRequest under iOS5
I am succesfuly using AsiHttpRequest library to make url connections in my apps. However, I upgrade to iOS5 and Reachability.m file is reporting some errors (4) on following functions:
static void ...
-1
votes
1answer
456 views
How to get the response string and parse it using ASIHTTPRequest?
I am using ASIHTTPRequest to connect to a web service. I am not getting what I should do next. When i run the code provided below I am not getting any output or response string. Program is running ...
-3
votes
1answer
51 views
iPhone : -[ASIS3Request queue]: unrecognized selector sent to instance [closed]
I am getting following error in my log.
-[ASIS3Request queue]: unrecognized selector sent to instance
What could be wrong?