How do I access the system environment variables in CFML? It is required to read out the CloudFoundry database connectivity settings.

The variable required is "VCAP_SERVICES".

Is there a function for that?

Thanks,

Yvan

link|improve this question

Do you mind if I ask what you hosting environment is? OS, J2EE server and CF Server will help better get an answer. – Dave Long Apr 25 '11 at 17:04
It is an OpenBlueDragon runtime, in the "JavaWeb" environment of CloudFoundry.com – Yvan JANSSENS Apr 26 '11 at 11:10
If you have access to the server itself then try out my comment on Sergii's answer. – Dave Long Apr 26 '11 at 15:01
feedback

1 Answer

up vote 2 down vote accepted

Following solution seems to work very-very partially on my Ubuntu (it gets far from all variables listed by env -- bit this may be fine because JVM just does not get most of these), but it may somehow work for you:

<cfset properties = createObject("java", "java.lang.System").properties />
<cfdump var="#properties#">

Variable you are looking for can be prefixed with user.

link|improve this answer
1  
It looks like that returns all variables passed into the JVM at the startup time. What you would have to do, I am assuming, is pass the environment variables you need access to into the JVM. – Dave Long Apr 25 '11 at 17:03
1  
IIRC System.getEnv() returns a Map of system environment variables. Just verify it is not deprecated .. – Leigh Apr 25 '11 at 17:27
@Leigh Good one, but looks like it is also doesn't return all environment variables available through the shell. Though set of vars is a bit different than properties. – Sergii Apr 26 '11 at 12:20
Yes, I am not sure how it works on *nix. On windows there can be some overlapping. So you may end up using properties anyway ;-) download.oracle.com/javase/tutorial/essential/environment/… – Leigh Apr 26 '11 at 15:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.