configure the web.xml file to display the index.jsp page of a web application

2010-12-07 Thread pix_siro
Hi all, I'm working on Ubuntu 9.10 where I have installed Tomcat 7. I have a problem with following web.xml file: the program work fine but when I try to connect to localhost:8080/OverEncrypt I can not show any page even if I set index.jsp. The folder configuration is the following: $CATALINA_HOM

Re: java thread open after Tomcat shutting down

2010-12-07 Thread pix_siro
have started a thread named [pool-1-thread-1] but has failed to stop it. This is very likely to create a memory leak. I think the second GRAVE error is that significant. Pid * wrote: > > On 12/7/10 10:13 AM, pix_siro wrote: >> >> I solved writing a simple script to shutting do

Re: java thread open after Tomcat shutting down

2010-12-07 Thread pix_siro
ll it anyway app_pid=$(ps axuw | grep -v grep | grep "/usr/local/apache-tomcat-7.0.4/bin" | awk '{print $2}') [[ "x${app_pid}x" == "xx" ]] || kill -9 ${app_pid} >/dev/null 2>&1 Thanks. markt-2 wrote: > > On 03/12/2010 18:36, pix_siro wr

java thread open after Tomcat shutting down

2010-12-03 Thread pix_siro
Hi all, I'm working on Ubuntu 9.10, I have implemented a Java application and I have installed it on Tomcat 7.0.4 with a WAR file. When I shut down Tomcat with the command ./shutdown.sh, a java thread remains open. Notice that application have a connection with a postgres db but the connections ar