RE: big image only appear at half

2006-12-06 Thread Miller, Steve
Is this image embedded in the jsp page? Are you calling it directly as the image only? Do you have a code snippet? Knowing that would help us help you :-) If you have it in a JSP page, one thing you might try within the JSP code at the top is: <%@ page autoFlush="true" %> <%@ page buffer="256kb"

RE: jsp optimization for db driver load and connection

2006-12-04 Thread Miller, Steve
Ugh. Model 1 architecture :-) Connection pooling is the way to go here, definitely. Setup Tomcat to do it for you automatically on startup. Then, just grab a connection from the pool when you need it. Some good documentation on setting up and configuring Tomcat to do that is at http://tomcat.apach