Xebra Module Content Types

About | Installation | Documentation | Tutorials | Frequently Asked Questions

Mod_xebra and XebraHandler create the request message that is sent to the xebra server according to the requests Content-Type in the following way:

GET

In the arguments section key value pairs are appended:

ARGUMENT = "#A#" {"#$#" KEY "=" VALUE};

POST, application/x-www-form-urlencoded

In the arguments section key value pairs are appended:

ARGUMENT = "#A#" {"#$#" KEY "=" VALUE};

POST, multipart/form-data

The submitted file is saved to a temporary file on the disk and its path is appended in the arguments section. Only upload of one file at a time is supported currently. Since XebraHandler stores the uploaded file differently, it adds a IIS_FLAG (#IIS#) to the message.

mod_xebra:

ARGUMENT = "#A#" "#FUPA# FILENAME;

XebraHandler:

ARGUMENT = "#A#" "#FUPI#" FILENAME;

POST, otherwise

Is any other content-type specified, the text will unedited be added to the argument section:

ARGUMENT = "#A#" TEXT;