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
t tell you much. Aaron Smuts > -Original Message- > From: Daniel Lipofsky [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 20, 2004 1:41 PM > To: Struts Users Mailing List > Subject: list of modules > > I have one web module with many struts modules. > I am wonderi

list of modules

2004-04-20 Thread Daniel Lipofsky
I have one web module with many struts modules. I am wondering if there is a way to get a hold of the list of modules? I have 1 shared action servlet and I want to get the list of modules in the init() method. Thanks, Dan - To