Difference between revisions of "Xebra Module Content Types"

(New page: Category:Xebra About | Installation | Documentation | Tutorials | [[Xebra FAQ|Frequently Asked Quest...)
(No difference)

Revision as of 09:06, 12 August 2009

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;