I'm looking for a way that the programmers may simply ask 'is
this code executing in DEV, QA, PRD?' They need to know which level
of the stack (DEV/QA/PRD) they are running in. Their code may exist
on one of our internally consolidated stacks (not accessible from
the Internet), one of our consolidated stacks in the DMZ
(accessible from the Internet) or possibly in non-consolidated
stacks (a business group that is using their own stack rather where
everyone else is, perhaps internal, perhaps external). Depending on
the load of servers, failures, migrations, etc., the code may be
existing on any one or several different servers across dozens of
servers. Adding/removing server names to a checklist is not ideal
in our situation. It would be preferable if the code could simply
query if it was running in Development, QA or Production so that it
could act/react (security, performance, etc.) appropriately. In our
WebSphere environment, we are able to set a custom property per
JVM, and I was hoping to accomplish the same type of management for
our ColdFusion environment. Thanks for your input.