fcgi_protocol(n) 1.0 "flibs"

Name

fcgi_protocol - Module for supporting the Internet Fast-CGI protocol

Table Of Contents

Synopsis

Description

When you want to create web applications, the Fast-CGI (fast common gateway interface) is one of the means to integrate your underlying programs with the web server. The protocol itself is, at least superficially, simple enough, but you need to take care of a number of details. It is these details that the fcgi_protocol module seeks to take care of.

Note that the fast-CGI protocol differs from the CGI protocol in that it requires specific support from the web server and that the program stays alive all the time, whereas with the CGI protocol the program is started with each request. This makes it easier to keep control over the processing.

The global structure of a program that uses this module to communicate with the web server is basically:

Within a loop that starts with a call to the function fcip_accept_environment_variables, do:

The module relies on the cgi_protocol module and a library for fast-CGI support (see the detailed documentation on the subject).

DATA TYPES AND ROUTINES

The module defines the following data types:

dict_struct

A derived type holding a list of keyword-value pairs. Each value is of the type "dict_data" (see below). The routine fcgip_make_dictionary fills such a structure to hold all form variables and their values.

dict_data

The derived type whose contents is the string value of a particular form variable. It has one component: value, a string of 200 characters long (the actual length is set via the parameter "dict_value_length", so you can easily change it if this should prove necessary).

The module defines the following routines:

call fcgip_accept_environment_variables()

Routine to accept an incoming request from the web server. It prepares for the transfer of the data making up the request. It returns a positive value if there is a request and a non-positive one, if the server is shutting down.

The function should be called as a condition for a do while loop, so that the program continues to accept new requests.

It has no arguments.

call fcgip_make_dictionary( dict, unitNo )

Analyse the request data and make them available in the dictionary.

type(dict_struct), pointer dict

Variable to hold alll the form variables and their values. You pass this variable to cgi_get() to retrieve these values. You can also store new variables and values, if this is useful (via the plain dictionary routines).

Note: Initialise it to "null()" before calling the routine.

integer, intent(in) unitNo

Unit number of a file to write debugging statements to. Typically the same file as the one used to transfer the HTML output. (The debugging statements are filtered out.)

call fcgip_put_file( unitNo, mimetype )

Copy the response to the request to the web server. This is then presented to the user.

integer, intent(in) unitNo

The unit number of the opened file that contains the information that should be sent to the user. It is typically HTML text, but can actually be anything supported by the server.

character(len=*), intent(in), optional mimetype

String to indicate to the web server what the type of response is, the MIME type. Typically this is text/html, so if you leave out the argument, this is used by default.

NOTES

The test/demonstration programs illustrate several techniques to set up web services: