I believe there was a hotfix that added a function to do exactly that.
If not, you can easily get them via the PageContext object, just like
in any J2EE web app. Here's some sample code:
<cfset req = getPageContext().getRequest() />
<cfset headerlist = req.getHeaderNames() />
<cfoutput>
<table>
<cfloop condition="headerlist.hasMoreElements()">
<cfset header = headerlist.nextElement() />
<cfset vallist = req.getHeaders(header) />
<tr>
<td>#header#:</td>
<td>
<cfloop condition="vallist.hasMoreElements()">
#vallist.nextElement()#<br /></cfloop>
</td>
</tr>
</cfloop>
</table>
</cfoutput>
cheers,
barneyb
On Tue, 24 Aug 2004 12:51:34 -0400, John Farrar
<[EMAIL PROTECTED]> wrote:
> Does anyone know if you can read the HTTP header posts sent to CF in CFMX
> 6.1? I am trying to retrieve some XML... and currently the only way I found
> is doing ASP and redirecting content back to a CF page.
>
> Thanks,
>
> John Farrar
>
--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com
----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev'
in the message of the email.
CFCDev is run by CFCZone (www.cfczone.org) and supported
by Mindtool, Corporation (www.mindtool.com).
An archive of the CFCDev list is available at www.mail-archive.com/[EMAIL PROTECTED]