Files
EWF/library/server/ewsgi
Jocelyn Fiat 0bd2d16c12 Made WGI_CHUNKED_INPUT_STREAM inherits from WGI_INPUT_STREAM
Merged REQUEST.input and REQUEST.chunked_input
  Now REQUEST.input handles directly the chunked transfer encoding, or the non chunked.
Kept REQUEST.is_chunked_input since it matters that Content-Length is 0 even if there are input (chunked) data.
2012-04-13 16:33:49 +02:00
..
2012-04-12 12:25:34 +02:00
2012-04-12 12:25:34 +02:00
2012-03-19 15:06:50 +01:00

Eiffel Web Server Gateway Interface

Overview

The main goal of this library is to provide a common layer on top of many different connectors. A connector is a library used for the integration of Eiffel web server application with an underlying httpd server technology such as CGI, libFCGI, or even standalone Eiffel Web Nino (which is a httpd server written in Eiffel).

Then one can build an Eiffel web service compliant with EWSGI specification, and thus with the same code (or almost), this could be compiled to run on any available connectors.

Usage