RE: Classes in tomcat\server\lib folder sometimes are visible to web application

2008-11-05 Thread Gary Hirschhorn
From: Gary Hirschhorn [mailto:[EMAIL PROTECTED] Subject: RE: Classes in tomcat\server\lib folder sometimes are visible to web application The Catalina ClassLoader in server/lib creates Webapp1 ClassLoader specifically for webapp1. It's actually org.apache.catalina.loader.WebappLoader

RE: Classes in tomcat\server\lib folder sometimes are visible to web application

2008-10-17 Thread Gary Hirschhorn
List Subject: RE: Classes in tomcat\server\lib folder sometimes are visible to web application From: Gary Hirschhorn [mailto:[EMAIL PROTECTED] Subject: Classes in tomcat\server\lib folder sometimes are visible to web application According to this documentation, classes in this jar should

Classes in tomcat\server\lib folder sometimes are visible to web application

2008-10-16 Thread Gary Hirschhorn
We are using Tomcat 5.5.17 and are using a custom ClassLoader, which we specify using the Loader element per the documentation at http://tomcat.apache.org/tomcat-5.5-doc/config/loader.html. We place the jar containing our custom ClassLoader in the tomcat\server\lib folder, per the

Setting timeout for HTTP response in case client app stops reading

2008-03-13 Thread Gary Hirschhorn
We are using Tomcat 5.5 and have a servlet that writes the HTTP response to a ServletOutputStream. Occasionally, a calling application will keep the HTTP connection alive but fail to read the complete HTTP response, effectively blocking the thread that is doing the writing. This in turn blocks