global init param context-param

2001-02-26 Thread Brett W. McCoy

I am using context-param to set global variables for my servlets,
but my servlets are still not seeing them (the value is showing up as
null).  Here is an example:

 context-param
param-namebw.client.configDir/param-name
param-valueD:\dev\src\conf/param-value
  /context-param

And the code snippet using the param:

oamFileProps.load(config.getInitParameter("bw.client.configDir") +
System.getProperty("file.separator") +
   "SystemPref.properties");

And the exception being generated:

java.io.FileNotFoundException: null\SystemPref.properties (The system
cannot find the path specified)

I'm not sure why this is coming up as null.  Or should this be defined as
init-param for the servlets?  This could be a problem because there are
dozens and dozens of servlets using these parameters, and which ones those
are I don't know (I'm not part of the programming team for this, just the
sysadmin trying to deploy it all).  Again, this value was defined as a
global init parameter in the older JServ properties file.

-- Brett
 http://www.chapelperilous.net/~bmccoy/
---
Those who have had no share in the good fortunes of the mighty
Often have a share in their misfortunes.
-- Bertolt Brecht, "The Caucasian Chalk Circle"



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: global init param context-param

2001-02-26 Thread Brett Knights


 oamFileProps.load(config.getInitParameter("bw.client.configDir") +
 System.getProperty("file.separator") +
"SystemPref.properties");
 
Context.getInitParameter for globals

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: global init param context-param

2001-02-26 Thread Brett W. McCoy

On Mon, 26 Feb 2001, Brett Knights wrote:

  oamFileProps.load(config.getInitParameter("bw.client.configDir") +
  System.getProperty("file.separator") +
 "SystemPref.properties");
 
 Context.getInitParameter for globals

Argh, I was hoping you wouldn't suggest a code change.  :-)

-- Brett
 http://www.chapelperilous.net/~bmccoy/
---
A wise person makes his own decisions, a weak one obeys public opinion.
-- Chinese proverb


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]