Re: Error when executing .jsp in Apache 5.5

2009-11-12 Thread Martin Choma
see http://tomcat.apache.org/tomcat-5.5-doc/class-loader-howto.html for classpath guidelance, and section "XML Parsers and J2SE 1.4" Martin 2009/11/12 John McCleskey : > I'm webfacing some 5250 applications utilizing WDSC 7.0 and when I attempt > to test a project, the Apache web server throws the

Re: Memory, handles and threads increasing in Tomcat 5.5

2009-11-12 Thread Martin Choma
If you say load is constant, seems to me that threads are stuck for some reason and tomcat create chunk of another. Thread dumps can provide answer to what are stucked threads waiting for. Thread dumps can be taken for example with jconsole, which is part of jdk. Martin 2009/11/12 Goldsmith, N

Re: Connection Timeout

2009-11-12 Thread Martin Choma
Here are some timeout settings http://tomcat.apache.org/connectors-doc/generic_howto/timeouts.html. Can I ask, what brings you to such requirements. I consider it for little bit unusual. So what is your case originally? If you tell us, maybe another solution could be take. Martin 2009/11/12 vich

Re: Want to customise the tomcat's session logic

2009-11-09 Thread Martin Choma
Ok, i think i see what you mean. As far as I know there is no quickwin for that. Web application suffer with this disease - that mean sharing session over tabs. You have got three choices to deal with that. A) You dont mind :) B) You will prevent to work in multitabs over one session C) You choose

Re: Tomcat Memory and Garbage Collection questions...

2009-11-02 Thread Martin Choma
Hi, in fact, garbage collection is not tomcat stuff. It is JVM responsibility. So try to focus on jvm memory problem, not tomcat memory problem. Maybe some memory leak? Martin 2009/11/2 Johnson, Trevin (Contractor) : > Hello > OS Version: Windows 2000 > Tomcat version:5.5.17 > Initial Memory Po