RE: init parameters acces

2002-11-21 Thread Shapira, Yoav
ve to call init(config) yourself. Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Javier Linares [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, November 20, 2002 12:59 PM >To: [EMAIL PROTECTED] >Subject: init parameters acces > >Hi, > >I'm tr

Re: init parameters acces

2002-11-20 Thread Jeanfrancois Arcand
From you web.xml fragment, seems some element are missing. First, the element is not closed. Are you sure you web.xml file is parsed properly? -- Jeanfrancois Javier Linares wrote: Hi, I'm trying to access my init parameters in my web.xml file located in my install_dir/webapps/ROOT/WEB-INF f

init parameters acces

2002-11-20 Thread Javier Linares
Hi, I'm trying to access my init parameters in my web.xml file located in my install_dir/webapps/ROOT/WEB-INF folder with this init method: public void init(ServletConfig config) throws ServletException { super.init(config); message = config.getInitParameter("message");