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 (#A#) key value pairs are appended:
ARGUMENT = "#A#" {"#$#" KEY "=" VALUE};
POST, application/x-www-form-urlencoded
In the arguments section (#A#) 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 the its path is appended in the arguments section (#A#). 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#" FILENAME;
XebraHandler ARGUMENT = "#A#" "#IIS#" FILENAME;