Thread dump for Windows Service

2004-09-24 Thread Robert Herold
I've installed tomcat as a Windows service. Is there any way to trigger the JVM to produce a thread dump? I understand how to do so when Tomcat is run in a console window (cntl-break), but in this case it has to be run as a service. Thanks for any pointers... -- bob -- Robert H

RE: tomcat 4.1.12 JDBC driver class 'null'

2002-10-02 Thread Robert Herold
suggestions with no luck except for one case - the example given in the JNDI - How To works for me. The example is using standalone Tomcat and that works. As soon as I use Apache/mod_webapp I get the exception Cannot load JDBC driver class 'null'. Robert Herold wrote: > I've

RE: tomcat 4.1.12 JDBC driver class 'null'

2002-10-02 Thread Robert Herold
The DriveName element is changed to url in 4.1.12 driverName jdbc:oracle:thin:@localhost:1521:ctg should be url jdbc:oracle:thin:@localhost:1521:ctg Raj Robert Herold wrote: > I've been happily using tomcat 4.0.4 for a while, and thought I'd upgrade to > vers

RE: JDBC Driver Installation

2002-10-01 Thread Robert Herold
This is actually a documented behavior - see http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-how to.html and look in the section on Oracle 8i, paragraph zero. -- bob -- Robert Herold Cotagesoft, Inc. 650 474 9013 x808 -Original Message- From: [EMAIL

tomcat 4.1.12 JDBC driver class 'null'

2002-10-01 Thread Robert Herold
Any ideas on what to try would be appreciated. Thanks. -- bob -- Robert Herold Cotagesoft, Inc. 650 474 9013 x808 -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Getting port, path in servlet init()

2002-09-17 Thread Robert Herold
String hostname = "www.me.com"; int port = 8080; String path = "myapp"; Protocol I can assume is http. Hostname I can get using InetAddress.getLocalHost().getHostName() How can I get the port and the path? Thanks for your suggestions... -- bob -- Robert Herold