Re: What is happening to my request variables?

2007-12-18 Thread Ian Skinner
Todd wrote:
> Why are you using:
> ?
This turned out to be the problem.  Apparently I got hold of some 
old|incorrect documentation.  Digging further I see that this should be 
'requestName'?  Anyway changing this resolved my issue.

P.S.
I posted several replies yesterday, but they all disappeared into void.

~|
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:294996
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: What is happening to my request variables?

2007-12-17 Thread Ben Forta
You should not be creating the REQUEST structure with StructNew(), REQUEST
is already there, just assign the variables.

And generally you want to define APPLICATION variables in OnApplicationStart
and SESSION in OnSessionStart.

--- Ben


-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 17, 2007 4:08 PM
To: CF-Talk
Subject: What is happening to my request variables?

I'm trying to use request variables set in the onRequestStart method of 
an Application.cfc file.  This is not something I do very often.  For 
some reason I can not fathom the variables are not making it to the body 
of the request.  Am I missing some basic understand here?

Application.cfc


   

request = structNew();
request.logout = "test";
request.errorMsg = " ";
request.foobar = true;
session.foobar = true;
application.foobar = true;

  


index.cfm




Session works, Application works, request is empty.  Interestingly on 
another template the request scope is working as expected.

TIA
Ian





~|
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:294947
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: What is happening to my request variables?

2007-12-17 Thread Gaulin, Mark
I haven't use an Application.cfc yet, but why would you need to
explicitly create the request variable ("request = structnew()")... That
scope is always present, right?

Thanks
Mark

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 17, 2007 4:08 PM
To: CF-Talk
Subject: What is happening to my request variables?

I'm trying to use request variables set in the onRequestStart method of
an Application.cfc file.  This is not something I do very often.  For
some reason I can not fathom the variables are not making it to the body
of the request.  Am I missing some basic understand here?

Application.cfc


   

request = structNew();
request.logout = "test";
request.errorMsg = " ";
request.foobar = true;
session.foobar = true;
application.foobar = true;

  


index.cfm




Session works, Application works, request is empty.  Interestingly on
another template the request scope is working as expected.

TIA
Ian





~|
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:294950
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: What is happening to my request variables?

2007-12-17 Thread Todd
Why are you using:


?

On Dec 17, 2007 4:08 PM, Ian Skinner <[EMAIL PROTECTED]> wrote:

> I'm trying to use request variables set in the onRequestStart method of
> an Application.cfc file.  This is not something I do very often.  For
> some reason I can not fathom the variables are not making it to the body
> of the request.  Am I missing some basic understand here?
>
> Application.cfc
> 
>
>
>
>request = structNew();
>request.logout = "test";
>request.errorMsg = " ";
>request.foobar = true;
>session.foobar = true;
>application.foobar = true;
>
>  
> 
>
> index.cfm
>
>
>
>
> Session works, Application works, request is empty.  Interestingly on
> another template the request scope is working as expected.
>
> TIA
> Ian
>
>
>
> 

~|
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:294949
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4