Re: Mysql: Cannot create JDBC driver

2004-11-27 Thread sven morales
You may want to remove autoReconnect=true from this and see if you still observe same: jdbc:mysql://localhost:3306/bankapp1?autoReconnect=true --- Carlos Bracho <[EMAIL PROTECTED]> wrote: > Hello everybody. > > I am writting you because I get this exception > ramdonly, I mean, > sometimes ha

RE: Mysql: Cannot create JDBC driver

2004-11-27 Thread John Najarian
Carlos, did you check that the MySQL driver is in the path? -Original Message- From: Carlos Bracho [mailto:[EMAIL PROTECTED] Sent: Saturday, November 27, 2004 4:58 PM To: Tomcat Users List Subject: Mysql: Cannot create JDBC driver Hello everybody. I am writting you because I get this ex

Mysql: Cannot create JDBC driver

2004-11-27 Thread Carlos Bracho
Hello everybody. I am writting you because I get this exception ramdonly, I mean, sometimes happends, sometimes does not. javax.servlet.ServletException: Cannot create JDBC driver of class '' for connect URL 'null', cause: No suitable driver at org.apache.jasper.runtime.PageContextImpl.d

Tomcat classloader fails to load manager app

2004-11-27 Thread Roman D
Hi, Tomcat 5.0.28, Windows XP install from exe. After deploying Jakarta Slide(2.1), the Tomcat manager and balancer applications fail during loading. It fails because something get broken in Tomcat's class loader/classpath. However Tomcat Admin application still works. I tried to reinstall Tomc

which to use: JK2 or JK?

2004-11-27 Thread Erez Efrati
Hi, I am installing an apache + JBoss/tomcat and I need to run the JK module. Now I understand that the JK2 is no longer supported so does it mean that it would be better using JK1.2? Thanks, Erez

Re: Can I send response to browser even after the doGet returned?

2004-11-27 Thread Frank W. Zammetti
>>Has there any way to implement asynchronous request/response using servlets? Not directly. What you can do though is submit the request from the browser, put some operation in a queue and return immediately with a page that will call another servlet (or the same one, either way) to poll for

Re: Can I send response to browser even after the doGet returned?

2004-11-27 Thread Wade Chandler
Santhosh Thomas wrote: Or, are you trying to run some long-running process and think it would be better off as it's own thread? If that's the case, you probably want to look into some sort of queueing mechanism with either status polling or some sort of callback when the task is complete. Again,

Automated reply from bulletproof@www.bulletproofsoft.com

2004-11-27 Thread bulletproof
BulletProofSoft.com Support Ticket Reply. DO NOT REPLY TO THIS EMAIL Please use our Online Support system for faster results to your questions. You can monitor the status of your ticket online where you can add follow up replies. http://www.bulletproofsoft.com/cgi-bin/custquest/quest_desk.cgi

Re: TC 5.0.28 "error creating temporary file"

2004-11-27 Thread Tim Funk
http://issues.apache.org/bugzilla/show_bug.cgi?id=19765 Tomcat uses Ant to do a compile. Ant creates a temp file to assist in compliation. I am guessing the tempdir is not set correctly. (or something similar) -Tim M.Hockings wrote: Tim Funk wrote: Ant is trying to create some temporary files to

RES: [work] CLIENT-CERT

2004-11-27 Thread Paulo Alvim
Hi, The questions are: 1. Is it possible to use two authentication methods (FORM and CLIENT_CERT) in the same J2EE application? 2. If so, how could we do it in Tomcat 5.0.19? Thanks in advance! Paulo Alvim/Raphael Powerlogic - Brazil -Mensagem original- De: Raphael Gallo [mailto:[EMAI

Re: Re: Can I send response to browser even after the doGet returned?

2004-11-27 Thread Dakota Jack
Why do you want to put the request in the queque? I do something similar in a messaging application that runs in the background. I have the message related matters bundled in an interface called Message that is passed to the multithreaded queque. Is there an advantage to passing the request to t

RE: TC 5.0.28 "error creating temporary file"

2004-11-27 Thread Mark Thomas
Have you tried pre-compiling your JSPs before deployment? Mark > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of M.Hockings > Sent: Saturday, November 27, 2004 12:59 PM > To: [EMAIL PROTECTED] > Subject: Re: TC 5.0.28 "error creating temporary file" > > Tim Funk w

Re: TC 5.0.28 "error creating temporary file"

2004-11-27 Thread M.Hockings
Tim Funk wrote: Ant is trying to create some temporary files to compile the JSP. Ant cannot write the temp file. Somewhere in the archives or in bugzilla there was a discussion about this. -Tim I found a few hits in the archives about this but they seemed to be related to permissions for the TC

Re: CLIENT-CERT

2004-11-27 Thread Mario Ivankovits
Raphael Gallo wrote: It´s possible use FORM authentication and CLIENT-CERT in the same application. How can I do this ? Not sure if it works with FORM but I have done this with BASIC (through https). If the CLIENT-CERT fails the system will fallback to BASIC. I have done this by fiddlin

Re: How to map the servlet in web.xml

2004-11-27 Thread Aidas Semezys
You have to declare every servlet with separate element and map all of them with different url patterns: name_1 class_1 name_2 class_2 name_N class_N name_1 url_pattern_1 name_2 url_pattern_2 ... name_N url_pattern_N You can not ma