Tomcat 4 native compnents

2001-05-02 Thread Dave Oxley
I have been trying to get mod_webapp compiling under Win32. I have failed because of the following problems: 1. wa_general.h is missing! 2. apr_main.h is not part of the standard apr distribution available from http://apr.apache.org. Because of these 2 problems I didn't get too far, but a few p

Re: Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Craig R. McClanahan
On Wed, 2 May 2001, Remy Maucherat wrote: > > On Wed, 2 May 2001, Ana wrote: > > > > > Hi, > > > We think we have discovered an error. We call the include method of the > > > RequestDispatcher from a servlet. Then, we call the setAttribute > method > > > of the request object of the included

[PATCH] for reloading syncronization problem (tomcat_32)

2001-05-02 Thread Mike Anderson
In ServletWrapper.handleReload, there is a syncronization problem. If tomcat us under a load and a servlet class file or jsp is updated, there is a potential for multiple request to try and reload the servlet simultaneously and step on each other causing a bad state. The way it is currently c

Re: Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Remy Maucherat
> On Wed, 2 May 2001, Ana wrote: > > > Hi, > > We think we have discovered an error. We call the include method of the > > RequestDispatcher from a servlet. Then, we call the setAttribute method > > of the request object of the included JSP. If we call the getAttribute > > method of the request

Server: Apache1.3.19 Interface: mod_ssl2.8.2 Library: OpenSSL0.9.6a + tom-cat3.2.1

2001-05-02 Thread Júlio Adrian Miño Van Helden
    Hi folks, i installed apache1.3.19 + mod_ssl + mod_jk on windows 2000. The first problem was with the binarie mod_jk for win32 i get in tomcat homepage. When i include it in my httpd.conf the follow message is send to me: [warn] Loaded DSO modules/mod_jk.dll uses plain Apache 1.3 API, th

Re: Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Remy Maucherat
> On Wed, 2 May 2001, Ana wrote: > > > Hi, > > We think we have discovered an error. We call the include method of the > > RequestDispatcher from a servlet. Then, we call the setAttribute method > > of the request object of the included JSP. If we call the getAttribute > > method of the request

RE: Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Craig R. McClanahan
On Wed, 2 May 2001, Charles Chen wrote: > RequestDispatcher.forward() returns immediately BUT the JSP page has not > been processed yet! That isn't actually true -- by the time that the forward() call returns, the forwarded-to servlet will indeed have been executed. Whether the output has bee

Bug in HttpDate.parse()

2001-05-02 Thread Jason Hunter
On my site I use Tomcat 3.2.1 with Apache 1.3.14 and mod_jk ajp12. Someone reported the following problem. >> I clicked on "Servlet ISPs" on Servlets.com and was redirected to >>http://www.servlets.com/isps/servlet/ISPViewAll which threw the >>following exception. Hope it helps... >> >> Error

cvs commit: jakarta-tomcat-4.0/tester/web/WEB-INF web.xml

2001-05-02 Thread craigmcc
craigmcc01/05/02 13:45:00 Modified:catalina/src/share/org/apache/catalina/core ApplicationHttpRequest.java ApplicationRequest.java tester/src/bin tester.xml tester/web/WEB-INF web.xml Added: tester/src/tester/org/apache/teste

RE: Handler Thread Problem

2001-05-02 Thread Ben Sifuentes
Sure can. Here is the info you requested. Verions & System Info: Apache 1.3.14 Tomcat 1.0 Windows NT 4.00.1381 A little about the setup: My server is currently using a VirtualHost configuration running 3 separate applications. Each using a separate port for Tomcat and utilizing there own threa

Re: Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Craig R. McClanahan
On Wed, 2 May 2001, Ana wrote: > Hi, > We think we have discovered an error. We call the include method of the > RequestDispatcher from a servlet. Then, we call the setAttribute method > of the request object of the included JSP. If we call the getAttribute > method of the request object

RE: Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Charles Chen
RequestDispatcher.forward() returns immediately BUT the JSP page has not been processed yet! The JSP page will only be processed after the servlet finishes the work, i.e., your doGet or doPost returns. Therefore, there is no way to access attributes in the JSP page inside the calling servlet. C

Re: cvs commit: jakarta-tomcat/proposals/build2/ant tomcat.jsp

2001-05-02 Thread cmanolache
Hi Casey, Sorry, I have too many things for now - the web based build is going to wait a bit. If you could check in the changes, great.( I hope you got the commit access ) BTW, I have few ideas for the pooling in jasper34 ( I would like to make the pool pluggable, and managed by the container ).

RE: Tomcat 3.2.2 beta 4

2001-05-02 Thread cmanolache
Done. The code doesn't compile on JDK1.1 ( I can add the excludes for util.compat, but there are other places in the code - compiling on JDK1.1 is not a major requirement, only the ability to run ). Costin On Wed, 2 May 2001, Marc Saegesser wrote: > Glenn, Costin, > > If Glenn is OK with it

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

2001-05-02 Thread costin
costin 01/05/02 10:49:42 Modified:src/share/org/apache/tomcat/util Tag: tomcat_32 SessionUtil.java Log: Fixing SessionUtil for JDK1.1 compatibility, using the jdk compat package. The fix is backported from 3.3 ( the difference is that 3.3 avoids static

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util/compat Action.java Jdk11Compat.java Jdk12Support.java SimpleClassLoader.java

2001-05-02 Thread costin
costin 01/05/02 10:47:58 Added: src/share/org/apache/tomcat/util/compat Tag: tomcat_32 Action.java Jdk11Compat.java Jdk12Support.java SimpleClassLoader.java Log: Adding the JDK compat package from 3.3. This provide an clean mec

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

2001-05-02 Thread costin
costin 01/05/02 10:44:19 Modified:src/share/org/apache/tomcat/util Tag: tomcat_32 PrefixMapper.java Log: Ops, typing error. Revision ChangesPath No revision No revision 1.3.2.4 +4 -4 jak

Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Ana
Hi, We think we have discovered an error. We call the include method of the RequestDispatcher from a servlet. Then, we call the setAttribute method of the request object of the included JSP. If we call the getAttribute method of the request object in the servlet (after the include call), the

Re: Handler Thread Problem

2001-05-02 Thread kevin seguin
can you provide some more info? like, tomcat version, os, etc.? i want to say i saw something like this a long time ago, and it was a problem in mod_jk somewhere. but trying to remember past last week is difficult at best :) Ben Sifuentes wrote: > > Can somebody take the time to help me figur

Re: TC4 B3: Filters and Load Order bug?

2001-05-02 Thread Craig R. McClanahan
On Wed, 2 May 2001, Philippe Khalife wrote: > > This is a question about Servlet Specification Vs Implementation details. > Yah, there is always an interesting space between those two ... :-) > The filters mappings are applied as per specifications, and in order. > > However when initializ

Re: [PROPOSAL Tomcat 4.x] Cluster

2001-05-02 Thread Mark.Abbott
I would think that, if it already existed, the API described by the new JSR 107 http://java.sun.com/aboutJava/communityprocess/jsr/jsr_107_cache.html would be strongly considered as the basis for a distributed session manager. Any design made now ought to have an eye on going over to that API in

RE: Solaris Sparc Performance Problem

2001-05-02 Thread Tomas Rokicki
It might be Nagle's algorithm on one of the sockets involved. A simple test with snoop should show precisely where the delay is coming from. -tom -Original Message- From: Douglas E. Hornig [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 02, 2001 3:42 AM To: [EMAIL PROTECTED] Subject: RE

RE: Handler Thread Problem

2001-05-02 Thread Ben Sifuentes
Can somebody take the time to help me figure out this problem. I've tried several times to get this problem resolved but with no luck. You guys are my last hope!! Thanks, -Ben -Original Message- From: Ben Sifuentes [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 1:41 PM To: Tomcat

RE: Relase 3.3 status

2001-05-02 Thread cmanolache
On Wed, 2 May 2001, Larry Isaacs wrote: > Regrettably, I have been swamped with other work for a while. > I am currently reviewing the state of bugs to see what > work remains. I'll add a release notes file to show > what we plan to fix for 3.3 and which bugs will not. > I'll then update the sch

TC4 B3: Filters and Load Order bug?

2001-05-02 Thread Philippe Khalife
This is a question about Servlet Specification Vs Implementation details. The filters mappings are applied as per specifications, and in order. However when initialized by the Container they start by Alphabetical order. No matter what order I list these filter declarations in, "AuthFilter" alwa

TC4 & SSL: Error in SSLServerSocketFactory: initProxy()?

2001-05-02 Thread Philippe Khalife
Dev environment: Win2K Pro, JDK1.3, TC4 B3, latest JSSE, openssl, apache 1.3.19 I don't have a connector for apache compiled on this platform yet, so I'm trying direct SSL on TOMCAT The JSSE seem to be properly setup: I have the JSSE in the CLASSPATH also under $JAVA_HOME\jre\lib\ext, and $CATA

RE: Tomcat 3.2.2 beta 4

2001-05-02 Thread Marc Saegesser
Glenn, Costin, If Glenn is OK with it (since its his security manager stuff thats affected) then I'm OK with it. The class your talking about are the ones in the org.apache.tomcat.util.compat package in the TC3.3 source, right? I'm stuck in an all day meeting today (ouch) and then I've got to m

RE: Relase 3.3 status

2001-05-02 Thread Larry Isaacs
Regrettably, I have been swamped with other work for a while. I am currently reviewing the state of bugs to see what work remains. I'll add a release notes file to show what we plan to fix for 3.3 and which bugs will not. I'll then update the schedule. Hopefully, I will get this done this week.

Re: Tomcat 3.2.2 beta 4

2001-05-02 Thread Glenn Nielsen
Costin, The code you are referring to in 3.3 makes it easy to abstract out jdk 1.2 dependencies at build and runtime? If so, I have no problems with you back porting that into 3.2. If these classes are generic enough, perhaps they could be put into the commons. Regards, Glenn [EMAIL PROTECTE

RE: Solaris Sparc Performance Problem

2001-05-02 Thread Douglas E. Hornig
I ran truss and it generated a ton of stuff that I frankly had trouble making much sense of. My approach for now is to work with some Sun engineers to try to get to the bottom of it. So far they have suggested trying the latest JDK (J2SE 1.3.1 RC2), and passing the requests through apache (I'

Relase 3.3 status

2001-05-02 Thread Antony Bowesman
Does anyone have schedules for 3.3 release. Current release plan shows 3.3 final release as at Apr 5. Rgds Antony -- Antony Bowesman Teamware Group [EMAIL PROTECTED] tel: +358 9 5128 2562 fax: +358 9 5128 2705

[TC 4.0 beta 3] Decode any UTF8-URL-encoded URI.

2001-05-02 Thread Pilho Kim
Hi, I have mentioned about URI with multibyte characters from a long time ago. Please check http://www.javaclue.org/tomcat/ Regards, Kim