Questions tagged [asihttprequest]

ASIHTTPRequest, a deprecated and outdated framework to replace NSURLConnection on iOS and OS X.

ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier. It is written in Objective-C and works in both Mac OS X and iPhone applications.

It is suitable performing basic HTTP requests and interacting with REST-based services (GET / POST / PUT / DELETE). The included ASIFormDataRequest subclass makes it easy to submit POST data and files using multipart/form-data.

Homepage:

http://allseeing-i.com/ASIHTTPRequest/

Setup instructions:

http://allseeing-i.com/ASIHTTPRequest/Setup-instructions

How to use:

http://allseeing-i.com/ASIHTTPRequest/How-to-use

Source code:

http://github.com/pokeb/asi-http-request/tree

1323 questions
-4
votes
1 answer

ASIHttp which function send data?

in ASIHTTPRequest class I debug - (void)main method of the NSOperation with wireshark . I want to find which method send data. But i debug to the end of startRequest in main method of NSOperation. I can't grab any data. Because the read…
user1292717
  • 173
  • 10
-4
votes
1 answer

Parsing a json array in an ios app

In this app someone has built for me has used this code in order to parse a json array: ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/lending.php?category_id=1",host_name ]]]; [request…
Alb M
  • 151
  • 10
-5
votes
1 answer

How to Call Webservice in iphone?

Problem in ios. I have a problem regarding the webservice data fetching.i have two websevice named getManagerEvents and WhoAreComing.i want to get a eventid from the getManagerEvents and then after in another class i have to print the data based on…
Ankit
  • 286
  • 4
  • 16
1 2 3
88
89