Configuring System properties

2003-02-07 Thread Sreedhar, Dantam
Hi, I am using Java Web Services Developer Pack to expose methods using SOAP. The problem is I want to read a property file location in my program. If the program is of application type, this can be implemented by setting system property using -D searcher.home = command line argument. My

RE: Configuring System properties

2003-02-07 Thread Shapira, Yoav
-Original Message- From: Sreedhar, Dantam [mailto:[EMAIL PROTECTED]] Sent: Friday, February 07, 2003 7:53 AM To: Tomcat Users List Subject: Configuring System properties Hi, I am using Java Web Services Developer Pack to expose methods using SOAP. The problem is I want to read a property file

Re: Configuring System properties

2003-02-07 Thread Will Hartung
From: Shapira, Yoav [EMAIL PROTECTED] Sent: Friday, February 07, 2003 6:02 AM Subject: RE: Configuring System properties Howdy, If you want to go the same route, simply add -Dsearcher.home=... to the JAVA_OPTS variable in $CATALINA_HOME/bin/catalina.sh. It will be available via

Re: Configuring System properties

2003-02-07 Thread Craig R. McClanahan
On Fri, 7 Feb 2003, Will Hartung wrote: Do all of the webapps see the same System Properties? Yes, if they're running in the same JVM. I can't imagine why not (assuming they share a JVM), but with all of the isolation that's enforced between the webapps, it gives one pause to consider.