Re: web.xml cant load because of listener

2010-11-09 Thread Will Sumekar
wrote: On 04/11/2010 16:06, Will Sumekar wrote: AFAIK if you dont specify contextConfigLocation system looks for default filename applicationContext.xml at default location of ./WEB-INF/. But it doesnt matter cos even if I put context-param the error still comes. So far it looks like

Re: web.xml cant load because of listener

2010-11-04 Thread Will Sumekar
AFAIK if you dont specify contextConfigLocation system looks for default filename applicationContext.xml at default location of ./WEB-INF/. But it doesnt matter cos even if I put context-param the error still comes. So far it looks like the error is caused by listener. Once I remove it, it's OK.

Re: web.xml cant load because of listener

2010-11-03 Thread Will Sumekar
nothing... Will On Wed, Nov 3, 2010 at 3:12 PM, Pid p...@pidster.com wrote: On 03/11/2010 05:14, Will Sumekar wrote: Hi When I put these lines: listener listener-class org.springframework.web.context.ContextLoaderListener /listener-class /listener my

Re: web.xml cant load because of listener

2010-11-03 Thread Will Sumekar
description and before my servlet tags. Yep, after description but before filter definitions. p On Wed, Nov 3, 2010 at 12:14 AM, Will Sumekar will.sume...@gmail.com wrote: Hi When I put these lines: listener listener-class

Re: connection Pooling in tomcat 6

2010-11-03 Thread Will Sumekar
you can use commons dbcp or c3p0 that are available openly. Will On Thu, Nov 4, 2010 at 12:50 PM, mike houston mike.housto...@gmail.comwrote: Hi.. Is there a framework for implementing database connection pooling in tomcat 6? I am migrating my application from tomcat 4 to 6. There is

web.xml cant load because of listener

2010-11-02 Thread Will Sumekar
Hi When I put these lines: listener listener-class org.springframework.web.context.ContextLoaderListener /listener-class /listener my appln can't load at all. When I go to http://localhost:8080/app it's not loaded. But when I remove those lines it loads correctly. I've put