public
Description: Easy to use CFNetwork wrapper for HTTP requests, Objective-C, Mac OS X and iPhone
Homepage: http://allseeing-i.com/ASIHTTPRequest
Clone URL: git://github.com/pokeb/asi-http-request.git
Ben Copsey (author)
Fri Aug 01 09:25:05 -0700 2008
commit  7624ef236338b704e78cd9e767bafc8652dce815
tree    d7ce1be26cc0dc42f9c1adb19ae2b06a4ecf5ba7
parent  d404ae181d1d71c01398809fdffdaf516178af2f
name age message
file ASIHTTPRequest.h Loading commit data...
file ASIHTTPRequest.m
file ASIHTTPRequestTests.h
file ASIHTTPRequestTests.m
file ASIProgressDelegate.h
file AppDelegate.h Mon Jul 14 14:44:28 -0700 2008 First public release [Ben Copsey]
file AppDelegate.m
directory English.lproj/
file Info.plist Mon Jul 14 14:44:28 -0700 2008 First public release [Ben Copsey]
file LICENSE Mon Jul 14 16:27:37 -0700 2008 Added readme with intro and a link to the websi... [Ben Copsey]
file README
file Tests-Info.plist
directory asi-http-request.xcodeproj/
file asi-http-request_Prefix.pch Mon Jul 14 14:44:28 -0700 2008 First public release [Ben Copsey]
file main.m Mon Jul 14 14:44:28 -0700 2008 First public release [Ben Copsey]
README
[NEW!] Documentation is available at: http://allseeing-i.com/asi-http-request

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 suitable for when you want to submit data to an existing web form, or don't want to mess around with SOAP or 
XML-RPC.

It provides:

* A straightforward interface for submitting data to (GET & POST) and fetching data from webservers

* The ability to submit files on local drives as part of POST data, compatible with the HTML file input mechanism

* Easy access to request and response HTTP headers

* Ability for setting up progress delegates (e.g. NSProgressIndicators) to show information about download AND upload 
progress

* Basic authentication (username and password) support, credentials are automatically for the duration of a session, and 
can be stored for later in the Keychain.

* Based on NSOperation to make queuing requests and background operation easy

* Basic unit tests (more to come!)

ASIHTTPRequest comes as part of a simple application that demonstrates many of the features above, just look at 
AppDelegate.m for good pointers on basic usage, or read the comments in ASIHTTPRequest.h for more detail.

ASIHTTPRequest is partly based on code from Apple's ImageClient code samples, so if it doesn't meet your needs, take a 
look at their CFNetwork examples for more.

ASIHTTPRequest is my first open source Objective-C code. I hope to expand the class and example application further 
(unit tests, maybe even iphone examples...) in the coming months. If you find it helpful, please do get in touch!