I need to access the header elements as passed from an ajax post the nearest 
thing I found was a jsp solution: (http://coldfusion.sys-con.com/read/36711.htm)

<!---
I would like to see all of the elements in the request header in my JSP for 
debugging purposes.

<%
java.util.Enumeration e=
request.getHeaderNames():
for (e; e.hasMoreElements();) {
String header=
(String)e.nextElement();
out.print(header + " = " +
request.getHeader(header) + "
");
}
%>

--->

I know this can be done in java hebce the jsp example above but how can this be 
translated into ColdFusion? 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294752
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to