> Do any of you know how to dump *only* HTTP headers send from 
> ther server to the browser using CF?
> 
> Here is an example in CGI:
> http://www.delorie.com/web/headers.cgi?url=http%3A%2F%2Fwww.ma
> cromedia.com

I'm not sure what you're looking for. The example you pointed out, simply
makes an HTTP request to macromedia.com itself, and outputs those headers.
You could do the same thing with CF like this:

<cfhttp url="http://www.macromedia.com/";
        method="get">

<cfoutput>#CFHTTP.Header#</cfoutput>

Note that this doesn't have anything to do with HTTP headers returned by CF
to the browser. If you want to look at those, use something other than a web
browser as a client (telnet will do fine for this, for example).

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

______________________________________________________________________
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation � $99/Month � Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to