RE: Set HTTP Headers

2003-02-18 Thread Dave Watts
> Wouldn't PlumTree qualify as a custom browser, vs. IE and > Mozilla etc as normal browsers? Yes, but he doesn't have it installed on his development server, so that doesn't get him very far. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~

Re: Set HTTP Headers

2003-02-18 Thread Jochem van Dieten
Jeff Chastain wrote: >> -Original Message- >> From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] >> Sent: Tuesday, February 18, 2003 11:23 AM >> To: CF-Talk >> Subject: Re: Set HTTP Headers >> >> Jeff Chastain wrote: >> >>>T

RE: Set HTTP Headers

2003-02-18 Thread Dave Watts
> > You can set any request headers you want with CFHTTP, as > > long as you're willing to use METHOD="POST". You'd simply > > use CFHTTPPARAM with TYPE="CGI". > > Dave - I am not 100% following you here. Could you provide > an example? http://www.yourserver.com/yourdirectory/yourfile.cfm"; me

RE: Set HTTP Headers

2003-02-18 Thread Dave Watts
> I have an instance of a PlumTree portal sitting on a set > of production servers. I am trying to put together another > application that PlumTree can be nice and talk to. > > Now, PlumTree passes information from the portal itself > to third party applications via the http header. So somehow

RE: Set HTTP Headers

2003-02-18 Thread Jeff Chastain
Dave - I am not 100% following you here. Could you provide an example? Thanks -- Jeff -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18, 2003 1:13 PM To: CF-Talk Subject: RE: Set HTTP Headers > You can do v.limited header manipulation us

RE: Set HTTP Headers

2003-02-18 Thread Dave Watts
> You can do v.limited header manipulation using CFHTTP... > well, you can set the user-agent header, and you can > set some cookies but other than that I'm not aware of > another way using purely CF. You can set any request headers you want with CFHTTP, as long as you're willing to use METHOD="

RE: Set HTTP Headers

2003-02-18 Thread Jeff Chastain
r. Thanks -- Jeff -Original Message- From: Andre Mohamed [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18, 2003 11:58 AM To: CF-Talk Subject: RE: Set HTTP Headers Jeff, It may well be that PlumTree is manipulating the headers before calling third party pages but that doesn't nece

RE: Set HTTP Headers

2003-02-18 Thread Andre Mohamed
From: Jeff Chastain [mailto:[EMAIL PROTECTED]] Sent: 18 February 2003 17:43 To: CF-Talk Subject: RE: Set HTTP Headers Okay, let me clear this up then, because setting http header variables can be done. I have an instance of a PlumTree portal sitting on a set of production servers. I am trying

RE: Set HTTP Headers

2003-02-18 Thread Jeff Chastain
to figure out how to set these variables before calling my function - i.e. make it look like PlumTree is doing the calling. Hopefully this is more clear. Thanks -- Jeff -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18, 2003 11:23 AM To:

Re: Set HTTP Headers

2003-02-18 Thread Jochem van Dieten
Jeff Chastain wrote: > The headers that are sent by the browser are all that I am interested in at > this point. I am just trying to figure out how to pass in some test data. You need a custom browser for that. Telnet is a nice one ;-) The reason for this is quite simple actually. Suppose that j

RE: Set HTTP Headers

2003-02-18 Thread Dave Watts
> The headers that are sent by the browser are all that I > am interested in at this point. I am just trying to > figure out how to pass in some test data. You can use telnet, netcat or some other command-line HTTP client. Or, you can use different browsers, which will send different headers; my

RE: Set HTTP Headers

2003-02-18 Thread Andre Mohamed
(probably overkill) e.g. MS WAS lets you set some headers. André -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED]] Sent: 18 February 2003 16:50 To: CF-Talk Subject: RE: Set HTTP Headers The headers that are sent by the browser are all that I am interested in at this point.

RE: Set HTTP Headers

2003-02-18 Thread Jeff Chastain
: Andre Mohamed [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18, 2003 10:52 AM To: CF-Talk Subject: RE: Set HTTP Headers Jeff, Are you trying to read request headers i.e. those set by the browser when requesting one of your pages, or are you trying to read response headers set by another server

RE: Set HTTP Headers

2003-02-18 Thread Jeff Chastain
- From: Andre Mohamed [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18, 2003 10:43 AM To: CF-Talk Subject: RE: Set HTTP Headers Jeff, You could also do a CFHTTP call to the page you are setting the headers on. Then cfdump cfhttp.header for the raw response header you get back from your

RE: Set HTTP Headers

2003-02-18 Thread webguy
_All_ headers are sent by the browser WG -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED]] Sent: 18 February 2003 16:50 To: CF-Talk Subject: RE: Set HTTP Headers The headers that are sent by the browser are all that I am interested in at this point. I am just trying to

RE: Set HTTP Headers

2003-02-18 Thread webguy
Subject: RE: Set HTTP Headers Jeff, You might want to try a tool like HTTP Analyzer (www.coolfusion.com) It will easily let you see what you are sending down to the browser. getHTTPRequestData() will only show you what the browser sends you when it makes its request. Matt -Original Message

RE: Set HTTP Headers

2003-02-18 Thread Andre Mohamed
[mailto:[EMAIL PROTECTED]] Sent: 18 February 2003 16:42 To: CF-Talk Subject: RE: Set HTTP Headers Okay, that makes since. Now let me explain the problem better. I am building some functionality to read a set of header variables and do some processing on them. As a test, I was trying to insert

RE: Set HTTP Headers

2003-02-18 Thread webguy
Sent: 18 February 2003 16:27 To: CF-Talk Subject: Set HTTP Headers I am working on a project where I need to create a new HTTP Header variable. I thought this was what the cfheader tag was for, but I am not being able to make it work. What am I missing here? When I do ... I do no

RE: Set HTTP Headers

2003-02-18 Thread Jeff Chastain
-Talk Subject: RE: Set HTTP Headers Jeff, You might want to try a tool like HTTP Analyzer (www.coolfusion.com) It will easily let you see what you are sending down to the browser. getHTTPRequestData() will only show you what the browser sends you when it makes its request. Matt -Original Message

RE: Set HTTP Headers

2003-02-18 Thread Matthew Fusfield
[mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18, 2003 11:27 AM To: CF-Talk Subject: Set HTTP Headers I am working on a project where I need to create a new HTTP Header variable. I thought this was what the cfheader tag was for, but I am not being able to make it work. What am I missing here

RE: Set HTTP Headers

2003-02-18 Thread Andre Mohamed
estVarValue" as expected etc. André -Original Message- From: Aaron Johnson [mailto:[EMAIL PROTECTED]] Sent: 18 February 2003 16:31 To: CF-Talk Subject: RE: Set HTTP Headers Hi Jeff, >> I am working on a project where I need to create a new HTTP Header variable. I thought this was

RE: Set HTTP Headers

2003-02-18 Thread Jeff Chastain
: Set HTTP Headers Hi Jeff, >> I am working on a project where I need to create a new HTTP Header variable. I thought this was what the cfheader tag was for, but I am not being able to make it work. What am I missing here? -- A header is something you send to the client in the response

RE: Set HTTP Headers

2003-02-18 Thread Dave Watts
> I am working on a project where I need to create a new > HTTP Header variable. I thought this was what the cfheader > tag was for, but I am not being able to make it work. What > am I missing here? > > > > When I do > > > > > ... I do not see the testVar header. The CFHEADER t

RE: Set HTTP Headers

2003-02-18 Thread Aaron Johnson
Hi Jeff, >> I am working on a project where I need to create a new HTTP Header variable. I thought this was what the cfheader tag was for, but I am not being able to make it work. What am I missing here? -- A header is something you send to the client in the response stream. So doing getHTTPRe

Set HTTP Headers

2003-02-18 Thread Jeff Chastain
I am working on a project where I need to create a new HTTP Header variable. I thought this was what the cfheader tag was for, but I am not being able to make it work. What am I missing here? When I do ... I do not see the testVar header. Thanks -- Jeff ~