RE: Tomcat 4: org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

2006-08-04 Thread Tejas Bavishi
1. You can try giving a password to the database and setting the same in the server.xml. See if this works. Thanks Tejas -Original Message- From: Roy Kiesler [mailto:[EMAIL PROTECTED] Sent: Thursday, August 03, 2006 10:41 PM To: users@tomcat.apache.org Subject: Tomcat 4:

RE: Unable to compile the Jsp in Tomcat

2006-08-02 Thread Tejas Bavishi
Hello You can shutdown the tomcat. Delete all the contents under work folder. Restart the tomcat. Now check if this thing works. Thanks Tejas devteam_matsys [EMAIL PROTECTED] 08/03/2006 10:42 AM Please respond to Tomcat Users List users@tomcat.apache.org To users@tomcat.apache.org cc

RE: JSP 2.0 tag files slowing development/deployment

2006-07-26 Thread Tejas Bavishi
Hi I had once worked on an application with approximately 40 tags. I had an Ant task that compiled these tags and build a jar file. Then the ant task would also deploy it on tomcat and restart the webapp. The webapp restart time was very low and also client http request servicing was very quick.

RE: Tomcat creates a jsessionid cookie when session timeouts

2006-07-26 Thread Tejas Bavishi
Hi The session timeout will occur when the user does not perform any activity for a time longer than session timeout value. Since your app uses URL rewriting method of session maintenance, any request from the browser after session timeout, will still be sending the old jsessionid. To solve the

RE: Tomcat + Multiple Request

2006-07-25 Thread Tejas Bavishi
Hi I would have thought that multiple requests for the same user should not have any impact on the tomcat as long as the server logic does not try to modify the same session data simultaneously. Probably using the synchronized keyword here may be required. The request data modifications should

RE: Problem accessing two McKoi databases from Tomcat

2006-06-26 Thread Tejas Bavishi
Hi Not sure if this is helpful to you. I had found this URL useful. The URL shows how to setup a JNDI DataSource in Tomcat. http://tomcat.apache.org/tomcat-4.1-doc/jndi-datasource-examples-howto.html Also, check the Java Servlet specification for more information. Regards Tejas -Original