Tagged Questions
2
votes
4answers
56 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];
...
1
vote
1answer
194 views
How to cancel ASIHTTPRequest with wrong response HTTP code?
I'm uisng ASIHTTPRequest for HTTP requests and to save result into separate file. As the file is expected to be large, it should also be able to resume.
request.allowResumeForFileDownloads = YES;
...
1
vote
3answers
415 views
iOS Handling Multiple Asynchronous Requests: Send a Signal When All Requests Are Finished
So I am browsing over Stack Overflow for ways to handle asynchronous requests effectively. Right now I am using ASIHTTPRequest and my application consumes a REST API, in which a request to a single ...
1
vote
0answers
422 views
ASIHTTPRequest cache
I want to cache my requests. If I set this line in app delegate will all my requests cached?
[ASIHTTPRequest setDefaultCache:[ASIDownloadCache sharedCache]];
I have one more question. Can I have ...
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
71 views
How to send login and password to a server using ASIHTTPRequest?
I'm pretty new to everything that deals with http and stuff like that and i know almost nothing about how http methods work so i need your advice. In my app i have to send login and password to a ...
0
votes
2answers
123 views
ASIHTTPRequest and NSURLConnection
I need to work with ASIHTTPRequest in my app but i'm an absolute beginner in everything that concerns http, json, connections to server and stuff like that, so i decided to learn the basics first and ...
0
votes
1answer
59 views
ASIHTTPRequest does it affect new apps
I have created an app with http and I am using asihttprequest. The app only seems to work in console. The app closes without errors in the console. Did using asihttprequest affect my app?
is it ok ...
0
votes
3answers
46 views
is there any light-weight http request library for iphone?
I know ASIHTTPRequest, but it's too powerful for me. actually, I nerver use some functions it provided. It also has too much dependences.
I also know NSURLConnection, I don't like it, either.
Do I ...
0
votes
3answers
141 views
ASIHTTPRequest, request sent twice
I´ve just started using ASIHTTPRequest for iOs and I have a small issue with it. All requests are sent twice to the server even though I only get one reply from the library to my delegate methods.
...
0
votes
2answers
48 views
ASIHTTPRequest import issue
I am trying to get up and running with ASIHTTPRequest. I have followed the instructions as per http://allseeing-i.com/ASIHTTPRequest/Setup-instructions, having added the classes to a new group called ...
0
votes
0answers
54 views
Nested Queues of ASIHTTPRequest objects (ASINetworkQueue)
I am building an app using ASIHTTPRequest. I have heard that it is recently "unrecommended," but I have used it in many other shipped iOS applications and it works fine for me.
I am working with an ...
0
votes
2answers
81 views
ASIHTTPRequest returns error 406 when trying to reed RSS Feed
I'm trying to read the following URL: http://www.bandsintown.com/Godwrath/rss
My response string is empty and [request responseStatusCode] returns 406. I've tried adding the following with no ...
0
votes
1answer
294 views
asihttp using a POST method and post nsMutabledata to a uri,why i can not get the asi delegate callback?
guys!
when i using asihttp in my app,i meant a post method with a nsmutabledata for body stream,but i can't get what should be,just couldn't callback the
- (void)requestFinished:(ASIHTTPRequest ...
0
votes
1answer
333 views
ASIHTTPRequest issue
I am trying to develop an app which will use this Cytamobile-Vodafone webservice to login.
I have used HTTP Live Header add-on with Mozilla to get this one:
...
0
votes
3answers
202 views
How to Get ASIHTTPRequest Involved In My Own Program?
I have run ASIHTTPRequest successfully. I got it from the link, http://github.com/pokeb/asi-http-request/tarball/master.
Since I just started to learn xCode, I am not sure how to get ASIHTTPRequest ...