RE: Part time resources for JSP programming

2005-07-30 Thread pandu yelamanchili
Hi Medha Call met at 952-994-1659 . I can help out with jsp programming. Pandu From: Medha Parathasarathy [EMAIL PROTECTED] Reply-To: Tomcat Users List tomcat-user@jakarta.apache.org To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Part time resources for JSP programming Date: Sat,

RE: connection pooling confusion help needed

2005-03-25 Thread pandu yelamanchili
Hi All the connection pool properties should be configured in server.xml. You dont have to initialize connections etc. in your init method. you just have to make sure you close your resultset and connection after you are done. Closing it will return it back to the pool. Here is one link from

RE: extend JDBCRealm?

2004-12-27 Thread pandu yelamanchili
Yes it is. You will have to change the name in server.xml file also to your class name. Also the class/jar file should be placed in the common folder since tomcat needs access to it. Pandu From: Ilja Smoli [EMAIL PROTECTED] Reply-To: Tomcat Users List tomcat-user@jakarta.apache.org To:

RE: How to run servlet for every 30 minutes in Tomcat 4.1.30

2004-12-21 Thread pandu yelamanchili
I agree. Also You could write a standalone java class which does nothing but makes a http call to your Servlet. This class can be scheduled to run as a task every 30 minutes or so. pandu From: Allistair Crossley [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users

Re: How to run servlet for every 30 minutes in Tomcat 4.1.30

2004-12-21 Thread pandu yelamanchili
I would say it should be avoided at all if possible using threads. Since as we know in case of threads, there is not much management you can do. Also in my experience i have seen it is very easy for them to get out of control . So if there are any other alternatives, They should be explored

Form Authentication probem with tomat 4.1.30

2004-11-29 Thread pandu yelamanchili
Hi I am using Form Authentication on Tomcat 4.1.30 and oracle ojdbc14.jar driver. It always fails. When I used debugger in the JDBCRealm class of Tomcat, All my user id / db info is right, but when the username is set on the preparedstatement, it does not work. I always get an empty resultset