RE: multiple cfapplications

2009-04-17 Thread Chad Gray
t: Friday, April 17, 2009 12:41 PM > To: cf-talk > Subject: Re: multiple cfapplications > > > Chad, > > No, only the nearest parent Application.cfm fires. > > May I ask the reason for the nested Application.cfm files? > > -- > Ben Nadel > Adobe Commun

RE: multiple cfapplications

2009-04-17 Thread Mark Kruger
ned in the Root application.cfm. Will those variable be set when a user hits the "users" folder application.cfm? > -Original Message- > From: Ben Nadel [mailto:b...@bennadel.com] > Sent: Friday, April 17, 2009 12:03 PM > To: cf-talk > Subject: Re: m

RE: multiple cfapplications

2009-04-17 Thread Mark Kruger
MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: Friday, April 17, 2009 11:24 AM To: cf-talk Subject: RE: multiple cfapplications Ok.. makes sense. What happens if someone has a boo

Re: multiple cfapplications

2009-04-17 Thread Ben Nadel
Chad, No, only the nearest parent Application.cfm fires. May I ask the reason for the nested Application.cfm files? -- Ben Nadel Adobe Community Expert Adobe Certified Advanced ColdFusion Developer Manager New York ColdFusion User Group http://www.bennadel.com Need ColdFusion Help? http://www

RE: multiple cfapplications

2009-04-17 Thread Chad Gray
n the Root application.cfm. Will those variable be set when a user hits the "users" folder application.cfm? > -Original Message- > From: Ben Nadel [mailto:b...@bennadel.com] > Sent: Friday, April 17, 2009 12:03 PM > To: cf-talk > Subject: Re: multiple cfapplicati

RE: multiple cfapplications

2009-04-17 Thread Mark Kruger
Chad Gray [mailto:cg...@careyweb.com] Sent: Friday, April 17, 2009 10:57 AM To: cf-talk Subject: multiple cfapplications If I have many cfapplication.cfm files on a web site in different folders how do they work together? Say I have application.cfm on the root of the web site with an application

Re: multiple cfapplications

2009-04-17 Thread Ben Nadel
Chad, Applications on the same box that have the same name *are* the same application, as far as ColdFusion is concerned. It uses the CFApplication tag (or Application.cfc THIS.Name property) to bind the current page request to a defined memory space in ColdFusion application server. So, yes, if

multiple cfapplications

2009-04-17 Thread Chad Gray
If I have many cfapplication.cfm files on a web site in different folders how do they work together? Say I have application.cfm on the root of the web site with an application name "foo". Then in a "user" folder I have an application.cfm page and it's application name is also "foo". How do t