GetHTTPRequestData()

Makes HTTP request headers and body available to CFML pages. Useful for capturing SOAP request data, which can be delivered in an HTTP header.

GetHTTPRequestData( includeBody=boolean );

Returns: Struct

Argument Description Default
includeBody
boolean, optional

You would like to retrieve the body of the request as well (true or false).

Default is true.

true

Examples

writeDump(GetHTTPRequestData());

See also