ServerJS/HTTP Client: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 4: Line 4:


There are certainly other protocols that deserve support, but each protocol has its own purpose and interface and will be documented separately if it will become part of the stdlib.
There are certainly other protocols that deserve support, but each protocol has its own purpose and interface and will be documented separately if it will become part of the stdlib.
==  Requirements/Proposals ==
[[ServerJS/HTTP_Client/A|HTTPClient Proposal A]]


== Prior Art ==
== Prior Art ==
Line 10: Line 14:
* [http://www.ejscript.org/products/ejs/doc/api/gen/ejscript/ejs.io-Http.html Here] is an extended HTTP API from Ejscript.
* [http://www.ejscript.org/products/ejs/doc/api/gen/ejscript/ejs.io-Http.html Here] is an extended HTTP API from Ejscript.
* v8cgi has a [http://code.google.com/p/v8cgi/wiki/API_HTTP HTTP] class
* v8cgi has a [http://code.google.com/p/v8cgi/wiki/API_HTTP HTTP] class
* Helma NG has a [http://dev.helma.org/trac/helma/browser/helma-ng/trunk/modules/helma/httpclient.js helma.httpclient module] ([http://helma.zumbrunn.com/reference/helma.Http.html Helma 1 reference docs]).
* Helma NG has a [http://dev.helma.org/trac/helma/browser/helma-ng/trunk/modules/helma/httpclient.js helma/httpclient module] ([http://helma.zumbrunn.com/reference/helma.Http.html Helma 1 reference docs]).

Latest revision as of 02:35, 4 September 2009

HTTP Client API

Server side programs often need to grab information via HTTP. There should be an API that makes this as easy as possible.

There are certainly other protocols that deserve support, but each protocol has its own purpose and interface and will be documented separately if it will become part of the stdlib.

Requirements/Proposals

HTTPClient Proposal A

Prior Art