RE: Servlet gateway to legacy cgi application

2004-10-28 Thread Shawn Church
I initially looked at CGIServlet, but I run the Apache http server, rather than using Tomcat's implementation. I also need to implement my own functionality (primarily for user authentication). But yes, this is close to what I'm after. I'm sure I can roll my own, but it would be nice to find

RE: Servlet gateway to legacy cgi application

2004-10-28 Thread Phillip Qin
List' Subject: RE: Servlet gateway to legacy cgi application Maybe it's too obvious to say ... but does the cgi servlet (that comes with Tomcat) fit your needs ? http://jakarta.apache.org/tomcat/tomcat-5.0-doc/cgi-howto.html > -Original Message- > From: Shawn Church [ma

RE: Servlet gateway to legacy cgi application

2004-10-28 Thread Mike Curwen
Maybe it's too obvious to say ... but does the cgi servlet (that comes with Tomcat) fit your needs ? http://jakarta.apache.org/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

RE: Servlet gateway to legacy cgi application

2004-10-28 Thread Shawn Church
Steve, I've developed servlet-based webapps for several years, I've written servlet filters and implemented many various types of authentication mechanisms, and I've also done request forwarding within an application. I was hoping to implement something similar to request forwarding, but acco

RE: Servlet gateway to legacy cgi application

2004-10-28 Thread Steve Kirk
I'm not personally aware of anything already built in to TC that specifically handles request, although having said that I haven't really ever had the need for it. However I think that the standard features of TC will probably make this quite straightforward to do. Have you written Java and/or Serv