Re: list of modules

2004-05-01 Thread Craig R. McClanahan
Aaron Smuts wrote: To just get a list you could do something like this, I guess: In an Action class put the getServlet, else omit if in the servlet. Enumeration enum = getServlet().getServletConfig().getInitParameterNames() Then you could look for the ones that start with "config/" A more ro

RE: list of modules

2004-04-20 Thread Aaron Smuts
To just get a list you could do something like this, I guess: In an Action class put the getServlet, else omit if in the servlet. Enumeration enum = getServlet().getServletConfig().getInitParameterNames() Then you could look for the ones that start with "config/" This doesn't tell you much. A