ActionServlet does not invoke Custom ModuleConfigFactory

2007-10-19 Thread Cool Coder
I am trying to use my own ModuleConfigFactory, hence in web.xml, I added following init-param configFactory com.my.site.struts.CustomModuleConfigFactory But why CustomModuleConfigFactory is never get invoked? - BR __ Do Yo

Re: Case insensitive action mappings

2007-10-19 Thread Cool Coder
D]> wrote: On 10/19/07, Cool Coder wrote: > > Hi, > There is a requirement in my project to make all action mappings case > insensitive i.e. login.do is same as Login.do. Somebody suggested me to > use custom moduleconfig, something like > > class MyModuleConfig e

Case insensitive action mappings

2007-10-19 Thread Cool Coder
Hi, There is a requirement in my project to make all action mappings case insensitive i.e. login.do is same as Login.do. Somebody suggested me to use custom moduleconfig, something like class MyModuleConfig extends ModuleConfigImpl{ public MyModuleConfig(String prefix) { super(pref

Multi-thread issue on redeploy of application

2007-10-08 Thread Cool Coder
Hi Group, I have issue wrt no of threads on redeploy. The web app creates number of threads, and on each deployement, web app should close threads and create new threads but it instead of closing/reusing old threads, it creates new threads which makes web app crashes. I use struts and in destr