Broken Pipe

2001-12-27 Thread Ferran ArĂ­s
Hi, I'm using Tomcat 4.01 Standalone Debian 2.2r4 Kernel 2.2.19 JDK 1.3.1 BlackDown I have the following problem. Tomcat works fast, good for a time. You can do a "ps x -C java" on the machine and you see the processes correctly working. Most of them are i S state (sleeping) some running in R

DO NOT REPLY [Bug 5564] - JDBCRealm and Interbase 6

2001-12-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup Catalina.java

2001-12-27 Thread glenn
glenn 01/12/27 04:33:07 Modified:catalina/src/share/org/apache/catalina/startup Catalina.java Log: Remove the System.exit() I added Revision ChangesPath 1.45 +4 -9 jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup/Catalina.java Index: Ca

Implementing JDBC realm with encryption

2001-12-27 Thread Roland
Hello, I want to implement my own JDBC realm with browser side-password encryption. The idea is to hash the password together with the sessionId and a random variable using SHA-1 on the browser side with Javascript. The hash is then send to the server. This prevents hackers from retrieving the

RE: Problems building Tomcat 4.0.1

2001-12-27 Thread Joseph Lupo
>From what I found on the Internet, I thought getXMLReader was part of JAXP v1.1. I am pretty new to Java so please excuse me if this does not make sense, but I unzipped the crimson.jar file that came with JAXP. I found a reference to getXMLReader in the file ./javax/xml/parsers/SAXParser.class.

Re: [PATCH] [3.3] etomcat target

2001-12-27 Thread costinm
Thanks Jeff, > Incidentally, any tips on classloaders and EmbededTomcat? Everything > starts fine, but my servlet can't see any classes in WEB-INF/lib > *unless* I explicitly use the context classloader. Oh well, that's for > another mail. Very strange. If the servlet is loaded from WEB-INF/lib,

RE: Connector compatibility between TC 4.0 and 4.1

2001-12-27 Thread costinm
On Fri, 21 Dec 2001, Craig R. McClanahan wrote: > As appealing an idea as this sounds (packaging plug-in modules as > webapps), it doesn't solve the underlying issue -- different containers > have radically different internal architectures, and packaging the plug-in > as webapp doesn't avoid havi

Re: Implementing JDBC realm with encryption

2001-12-27 Thread Craig R. McClanahan
On Thu, 27 Dec 2001, Roland wrote: > Date: Thu, 27 Dec 2001 12:52:08 -0200 > From: Roland <[EMAIL PROTECTED]> > Reply-To: Tomcat Developers List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Implementing JDBC realm with encryption > > Hello, > I want to implement my own JDBC realm with

context path aliasing

2001-12-27 Thread john woo
I have a web application that needs to be accessed via two different "paths". For example: http://www.xyz.com/stats http://www.xyz.com/stats2001 So, I'd like to have that web application associated with the paths "stats" as well as "stats2001". This can be done via two separate element

DO NOT REPLY [Bug 5597] New: - NullPointerException if web.xml not in particular order

2001-12-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5597] - NullPointerException if web.xml not in particular order

2001-12-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5368] - StandardContextValve changes session state from new to old too late for other Valves

2001-12-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 5598] New: - (JSP Problem) RequestDispatcher doesn't include HTML output in place

2001-12-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

RE: Default classes loaded by Tocmat

2001-12-27 Thread Kevin Jones
Why not implement your own JSP base class that imports the classes/packages you need and have all your pages extend that new class. This would also be portable across implementations! Kevin Jones Developmentor www.develop.com > -Original Message- > From: Anand Bashyam Narasimham [mailto

RE: context path aliasing

2001-12-27 Thread Anand Bashyam Narasimham
John, By defining your application as two context in the server.xml file you are instructing tomcat to treat them as individual web-applications. This is how Context have been defined. Every context is a web-application by itself. You can however define a URL mapping to a Router Servlet that will

Re: context path aliasing

2001-12-27 Thread Bojan Smojver
If your Tomcat is behind Apache, you might just use mod_rewrite. Bojan Quoting john woo <[EMAIL PROTECTED]>: > I have a web application that needs to be accessed via > two different "paths". > > For example: > http://www.xyz.com/stats > http://www.xyz.com/stats2001 > > So, I'd like to

DO NOT REPLY [Bug 5599] New: - StackOverflowError

2001-12-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util/net StreamHandlerFactory.java

2001-12-27 Thread billbarker
billbarker01/12/27 22:13:22 Modified:src/share/org/apache/tomcat/util/net StreamHandlerFactory.java Log: It is really great when you learn to read :) I had totally misunderstood the java.net.URL javadocs, so this wasn't working at all. This shouldn't e