Dave Watts wrote:
>The HTTP header you're trying to send is "Referer". When you look at
>CGI debug output in a CF page, many of the HTTP request headers...

Yes, you helped me with this actually awhile back... its part of a call to the Bank of America gateway.  I posted a tag to help others out since BofA doesn't provide much in the way of CF support.

This is in the tag and works fine on CFMX:

<cfhttpparam
   type="HEADER"
   name="referer"
   value="#attributes.Referer#">

the tag senses which CF ver its on and puts out this

<cfhttpparam
   type="CGI"
   name="referer"
   value="#attributes.Referer#">

But I just found thru another developer that you have to name it http_referer, or the BofA system won't recognize it as a referrer value.

<cfhttpparam
   type="CGI"
   name="http_referer"
   value="#attributes.Referer#">


Seems like they have it set up to take something that isn't a properly named referer variable.  Or is it?

--Matt--
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to