RE: Servlet gateway to legacy cgi application

2004-10-28 Thread Shawn Church
forwarding -Original Message- From: Shawn Church [mailto:[EMAIL PROTECTED] Sent: Thursday 28 October 2004 03:58 To: [EMAIL PROTECTED] Subject: Servlet gateway to legacy cgi application I am planning to migrate an old cgi (actually iSeries/AS/400 Net.DATA) application to Java

RE: Servlet gateway to legacy cgi application

2004-10-28 Thread Shawn Church
/tomcat/tomcat-5.0-doc/cgi-howto.html -Original Message- From: Shawn Church [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 9:58 PM To: [EMAIL PROTECTED] Subject: Servlet gateway to legacy cgi application I am planning to migrate an old cgi (actually iSeries

Servlet gateway to legacy cgi application

2004-10-27 Thread Shawn Church
I am planning to migrate an old cgi (actually iSeries/AS/400 Net.DATA) application to Java, but in the meantime I would like to create a servlet-based gateway to the application, so that all requests are filtered through this gateway prior to being forwarded to the cgi application. Likewise, all

Tomcat 4.1.12 unpackWARs

2002-10-09 Thread Shawn Church
I found some hint of this in past archives, and am wondering if this is a bug or if I am missing something. The following will not unpack a .war file existing in the appBase directory. Tomcat processes will start and then quickly die because according to the log messages generated, the docBase

Migration from 3.3a to 4.0.4

2002-07-09 Thread Shawn Church
I am new to Tomcat 4, and I am trying to move an existing webapp from 3.3a to 4.0.4. I am using Apache as the web server, but I am not quite clear on which portions of Tomcat relate specifically to the stand-alone web server configuration versus general webapp serving through a connector

RE: Help Preventing VM Tomcat Crash

2002-02-23 Thread Shawn Church
Looks like you are using the JDBC-ODBC bridge (maybe to an MS Access or MS SQL Server database?), which is not thread-safe and is not intended for use in production environments. My guess is that one thread (the current thread servicing the Thumbnail servlet) has a db connection open, and the

RE: Help Preventing VM Tomcat Crash

2002-02-23 Thread Shawn Church
code doesn't know this and it's causing the VM to puke. Does anyone think my logic makes sense? Better yet, does anyone know a way to prevent it? :-) Regards, Kennedy At 09:02 AM 2/23/2002 -0600, Shawn Church wrote: Looks like you are using the JDBC-ODBC bridge (maybe to an MS Access or MS SQL

RE: Help Preventing VM Tomcat Crash

2002-02-23 Thread Shawn Church
Shawn -Original Message- From: Shawn Church [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 23, 2002 3:32 PM To: Tomcat Users List Subject: RE: Help Preventing VM Tomcat Crash So much for that theory. However, your guess is pretty close. I found something which you might find