Re: Environment Variables in OODT

2013-01-17 Thread Mattmann, Chris A (388J)
Thanks Mike! Cheers, Chris On 1/17/13 8:24 AM, "Starch, Michael D (388L)" wrote: >Sounds good. I tested the code and it does return environment variables >as expected. Looks like this is something I can improve for our next >software delivery on PEATE (v9.0.1). If so, a patch for apache sho

Re: Environment Variables in OODT

2013-01-17 Thread Starch, Michael D (388L)
Sounds good. I tested the code and it does return environment variables as expected. Looks like this is something I can improve for our next software delivery on PEATE (v9.0.1). If so, a patch for apache should be easy. -Michael On Jan 15, 2013, at 11:05 PM, Mattmann, Chris A (388J) wrote:

Re: Environment Variables in OODT

2013-01-15 Thread Mattmann, Chris A (388J)
+1, BFost :) Mike? Cheers, Chris On 1/15/13 10:24 PM, "Brian Foster" wrote: > >hey michael, > >System.getenv() didn't exist in jdk 1.4 when the code was initially >written and System.getenv(String) was deprecated in jdk 1.4... i believe >it was rewritten and undeprecated in jdk 1.5 and System.

Re: Environment Variables in OODT

2013-01-15 Thread Mattmann, Chris A (388J)
Hi Mike, Basically this is a legacy decision as when the system was written we were in the midst of JDK4, which didn't have Environment variable support. Nowadays, we could probably update this. Would you like to file a JIRA issue and provide a patch? Cheers, Chris On 1/15/13 10:58 AM, "Starch,

Re: Environment Variables in OODT

2013-01-15 Thread Brian Foster
hey michael, System.getenv() didn't exist in jdk 1.4 when the code was initially written and System.getenv(String) was deprecated in jdk 1.4... i believe it was rewritten and undeprecated in jdk 1.5 and System.getenv() was added... so ya it probably should be using System.getenv()... a patch w