CGIObject

This is an abstract base class for objects that implement the processRequest() method. When requests are sent to these objects, the processRequest() method is always called and it is up to the derived class to process the request.

Methods

processRequest(self, manager, request, response)

   def processRequest(self, manager, request, response):

Called whenever a request is sent to the object. manager is the CGIManager instance, request is a CGIRequest instance, and response is a CGIResponse instance.