Re: HttpServletResponseWrapper error.

2002-01-22 Thread Andreas Junghans
Hi Jay, This works with Resin. However, in Tomcat, when I wrap the response, I commit the original response object and can not forward to a thank you page. I catch a java.lang.IllegalStateException: Cannot forward after response has been committed. In my debug tests, the response is

Re: The problem with /

2002-01-22 Thread Bill Barker
I'm not primarily a 4.x developer, but in theory the following should work: URL res = config.getResource(request.getPathInfo()); if(res != null) { RequestDispatcher rd = config.getNamedDispatcher(default); rd.forward(request,response); return; } // Your processing here.

Re: [VOTE] Tomcat 3.3.1 Release Plan

2002-01-22 Thread Faraj Meir
Tomcat 3.3.1 Release Plan Ballot: [] +1 I am in favor of this plan and will help [ X] +0I am in favor of this plan, but am unable to help [ ] -0I am not in favor of this plan [ ] -1 I am against this plan being executed, and my -- To unsubscribe, e-mail:

RE: [VOTE] Tomcat 3.3.1 Release Plan

2002-01-22 Thread GOMEZ Henri
Faraj are you commiter ? - Henri Gomez ___[_] EMAIL : [EMAIL PROTECTED](. .) PGP KEY : 697ECEDD...oOOo..(_)..oOOo... PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6 -Original Message- From: Faraj Meir [mailto:[EMAIL

JDK 1.4 beta breaks TLS re-negotiation?

2002-01-22 Thread Marcus Better
Hi, I have tried to use TLS/SSL client authentication in Tomcat 4.0.1 and JDK 1.4 beta3, and think that something changed in the JDK that breaks renegotiation. It seems to work correctly with JDK 1.3.1. I have an SSL connector with clientAuth=false in server.xml, and have set up web.xml to

Re: [VOTE] Tomcat 3.3.1 Release Plan

2002-01-22 Thread Faraj Meir
Hi , Not but I'm liking to try tomcat . It's a very beautiful servlet implementation . Faraj Meir - Original Message - From: GOMEZ Henri [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Tuesday, January 22, 2002 12:44 PM Subject: RE: [VOTE] Tomcat 3.3.1 Release

Re: [VOTE] Tomcat 3.3.1 Release Plan

2002-01-22 Thread Remy Maucherat
Tomcat 3.3.1 Release Plan Ballot: [ ] +1 I am in favor of this plan and will help [X] +0I am in favor of this plan, but am unable to help [ ] -0I am not in favor of this plan [ ] -1 I am against this plan being executed, and my reason is: Remy -- To

cvs commit: jakarta-tomcat-connectors/webapp Makefile.in

2002-01-22 Thread jfclere
jfclere 02/01/22 03:05:06 Modified:webapp Makefile.in Log: Add javadoc and scandoc generation. Revision ChangesPath 1.25 +7 -1 jakarta-tomcat-connectors/webapp/Makefile.in Index: Makefile.in

Re: The problem with /

2002-01-22 Thread Peter Sojan
On Tue, Jan 22, 2002 at 02:00:08AM -0800, Bill Barker wrote: I thought of something similar, but your solution is way more elegant. Thank you! I'm not primarily a 4.x developer, but in theory the following should work: URL res = config.getResource(request.getPathInfo()); if(res !=

RE: [VOTE] Tomcat 3.3.1 Release Plan

2002-01-22 Thread GOMEZ Henri
Not but I'm liking to try tomcat . It's a very beautiful servlet implementation . Only commiters could vote on release plan ;) BTW : we need strong testers and fine bug reports -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: cvs commit: jakarta-tomcat RELEASE-PLAN-3.3.1.txt

2002-01-22 Thread Larry Isaacs
At this moment, I don't have plans to do the release any differently from 3.3 Final. It has been over a week since it tried anything from J-T-C (my builds were failing due a Tomcat 4.x dependency problem). I check again tonight. If something is ready, we can try to include it. Unfortunately, I

IPv6 question

2002-01-22 Thread Lukasz Czekierda
Hello, I saw last e-mails concerning IPv6 and Tomcat in this place in March. So is it all clear? I have installed Tomcat 4.0.1 on RedHat (kernel 2.4.14) and tried to connect to Tomcat using IPv6. Unfortunately, I got the 400 HTTP error Bad Request returned by Tomcat. The form of URL wan

RE: IPv6 question

2002-01-22 Thread GOMEZ Henri
I saw last e-mails concerning IPv6 and Tomcat in this place in March. So is it all clear? I have installed Tomcat 4.0.1 on RedHat (kernel 2.4.14) and tried to connect to Tomcat using IPv6. Unfortunately, I got the 400 HTTP error Bad Request returned by Tomcat. The form of URL wan analogous to

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core NamingContextListener.java StandardServer.java

2002-01-22 Thread remm
remm02/01/22 08:12:26 Modified:catalina/src/share/org/apache/catalina/core NamingContextListener.java StandardServer.java Log: - Changes to allow Catalina components to access an the global naming using standard JNDI lookups. - JNDI calls can only

failure loading webapp-module (tomcat 4.0.1) into apache (1.3.9)

2002-01-22 Thread Gunther Bachmann
running bin/apachectl configtest i get the error Syntax error on line 224 of /users/sts/stud/gu.bachmann/apache/conf/httpd.conf: Cannot load /users/sts/stud/gu.bachmann/apache/libexec/mod_webapp.so into server: ld.so.1: /users/sts/stud/gu.bachmann/apache/bin/httpd: fatal: relocation error: file

Re: iSeries (AS/400) unusual JDK layout problem

2002-01-22 Thread costinm
On Tue, 22 Jan 2002, GOMEZ Henri wrote: Choices : - Add code in tomcat to make iSeries case handled (add tools.jar search in java.home/lib/ after java.home/../lib/) Unfortunately it doesn't seem to be iSeries specific - I've seen another similar problem on a hpux. The JAVA_HOME !=

Re: failure loading webapp-module (tomcat 4.0.1) into apache (1.3.9)

2002-01-22 Thread jean-frederic clere
Gunther Bachmann wrote: running bin/apachectl configtest i get the error Syntax error on line 224 of /users/sts/stud/gu.bachmann/apache/conf/httpd.conf: Cannot load /users/sts/stud/gu.bachmann/apache/libexec/mod_webapp.so into server: ld.so.1: /users/sts/stud/gu.bachmann/apache/bin/httpd:

Re: The problem with /

2002-01-22 Thread Craig R. McClanahan
On Tue, 22 Jan 2002, Peter Sojan wrote: Date: Tue, 22 Jan 2002 03:30:43 +0100 From: Peter Sojan [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Subject: Re: The problem with / Thank you for your hint! Now I understand,

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans MBeanUtils.java

2002-01-22 Thread amyroh
amyroh 02/01/22 10:05:25 Modified:catalina/src/share/org/apache/catalina/mbeans MBeanUtils.java Log: Fix NPE problem to be more robust so that it allows to have custom components. Thanks to Remy for noticing the problem. Revision ChangesPath

RE: jdk1.3.1 and tomcat 3.3a core dumping?

2002-01-22 Thread Dan Diodati
The main reason that we wanted to change to tomcat 3.3 is for the hierarchical classloading support. I guess we'll have to wait. Dan -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED]] Sent: Monday, January 21, 2002 11:34 PM To: Tomcat Developers List Subject: Re:

Re: Tomcat 4.0 with SSL

2002-01-22 Thread Eric Rescorla
Henry Lu [EMAIL PROTECTED] writes: I followed the every steps in the doc for how-to do ssl. But I got failure when I start the tomcat. Since I couldn't see all error message, here is the on on the screen: at java.lang.reflect.Method.invoke(Native Method) at

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans MBeanUtils.java

2002-01-22 Thread remm
remm02/01/22 10:16:58 Modified:catalina/src/share/org/apache/catalina/mbeans MBeanUtils.java Log: - Fix small compilation problem. Revision ChangesPath 1.11 +15 -15

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans mbeans-descriptors.xml

2002-01-22 Thread amyroh
amyroh 02/01/22 10:24:12 Modified:catalina/src/share/org/apache/catalina/mbeans mbeans-descriptors.xml Log: Fix parameter names to be more meaningful. Revision ChangesPath 1.16 +10 -9

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans ServerLifecycleListener.java

2002-01-22 Thread remm
remm02/01/22 10:24:53 Modified:catalina/src/share/org/apache/catalina/mbeans ServerLifecycleListener.java Log: - Fix AOOBs I found using Slide. Revision ChangesPath 1.11 +7 -7

RE: jdk1.3.1 and tomcat 3.3a core dumping?

2002-01-22 Thread costinm
On Tue, 22 Jan 2002, Dan Diodati wrote: The main reason that we wanted to change to tomcat 3.3 is for the hierarchical classloading support. I guess we'll have to wait. If your VM is crashing with 3.3a ( or anything else !) - you should fix the vm. No combination of java bytecodes should be

Re: jk2 problems with libapr.so

2002-01-22 Thread Aaron Bannert
On Mon, Jan 14, 2002 at 05:12:29PM +0100, jean-frederic clere wrote: Hi, I am playing with jk2 and I have noted that the loadNative() in AprImpl fails: +++ java.lang.UnsatisfiedLinkError: /home/jakarta/jakarta-tomcat-4.0.1/webapps/jk/WEB-INF/jk2/jni/libapr.so:

Will there ever be any support added for Oracle 8i hosted EJB's communicating with Tomcat?

2002-01-22 Thread Dan Hofmann
My company is trying to create a distributed app with EJB's being hosted on Oracle 8i server. However, as you may all know already, calling EJB's from Oracle doesn't work or work well with the Tomcat JSP/Servlet container. It gives many errors, include ClassCastException errors. There is only

Re: jdk1.3.1 and tomcat 3.3a core dumping?

2002-01-22 Thread Bojan Smojver
Even if you have buggy Java classes, this should not cause a good JVM to do this. The problem is with the JVM. I'd try a different JDK, something like 1.3.0_04 or maybe a newer sub-release of 1.3.1. Bojan PS. Keep in mind that I don't work with Solaris :-) Dan Diodati wrote: I am having

JDK 1.4 beta breaks TLS re-negotiation?

2002-01-22 Thread Marcus Better
Hi, I have tried to use TLS/SSL client authentication in Tomcat 4.0.1 and JDK 1.4 beta3, and think that something changed in the JDK that breaks renegotiation. It seems to work correctly with JDK 1.3.1. I have an SSL connector with clientAuth=false in server.xml, and have set up web.xml to

StandardWrapper patch (was RE: shell connector)

2002-01-22 Thread Alan Newberger
Finally got around to packages my changes as a patch to the HEAD. As previously discussed, it should be sufficient for a servlet to implement ContainerServlet and for the class to be placed in the server/lib directory for it to load and initialize correctly (in a Context where privileged is

Re: Tomcat 4.0.2-b2 + JSSE + Security Manager

2002-01-22 Thread Glenn Nielsen
Try starting tomcat 4 with -security and the following properties defined: -Djava.security.debug=access,failure -Djava.net.debug=ssl That should generate alot of debug data to help you track down the source of the problem. Regards, Glenn Renato wrote: Hi all, I'm installing Tomcat

Tomcat 4.0.2-b2 + JSSE + Security Manager

2002-01-22 Thread Renato
Hi all, I'm installing Tomcat 4.0.2B2. Everything is fine except for the following: - I try to run a servlet that uses JSSE. If I start Catalina without the '- security' it works fine, if I start with the '-security' it generates the error: java.net.SocketException: SSL implementation not

Re: Tomcat 4.0 with SSL

2002-01-22 Thread Henry Lu
I followed the every steps in the doc for how-to do ssl. But I got failure when I start the tomcat. Since I couldn't see all error message, here is the on on the screen: at java.lang.reflect.Method.invoke(Native Method) at

Interceptor in Tomcat 4.0 ???

2002-01-22 Thread Renato
Hi all, I have an Interceptor I wrote for Tomcat 3.3 and I want to migrate to Catalina. I think the concept know is a Valve, right ? Is there a guideline how to migrate an interceptor ? Thanks Renato - Brazil. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

Re: Interceptor in Tomcat 4.0 ???

2002-01-22 Thread Craig R. McClanahan
On Tue, 22 Jan 2002, Renato wrote: Date: Tue Jan 22 16:57:45 2002 From: Renato [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Interceptor in Tomcat 4.0 ??? Hi all, I have an Interceptor I wrote for Tomcat 3.3 and