Using tomcat 4.3.1 I have included the following in server.xml
<GlobalNamingResources>
   <Environment name="config_file" type="java.lang.String" value="test"/>
 </GlobalNamingResources>

In a servlet loaded on startup I try to read in the property
InitialContext ic = new InitialContext();
Context ctx = (Context) ic.lookup("java:comp/env");
String configFilename = (String)(ctx.lookup("config_file"));

This code throws a NamingException. Where have I gone wrong?

Thanks
Andrew

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



Reply via email to