APR on OSX with tomcat 5.5.x ?

2007-04-03 Thread j.random.programmer
Hi: Has anyone got Apache portable runtime (APR) to work on OS X (10.4.x) with tomcat 5.5.x ? My apr is installed in: /usr/local/apache/apr-1.2.8/ I've done all the usual steps of unpacking the apr src and compiling it with: ./configure --with-apr=/usr/local/apache/apr-1.2.8/ --with-java-hom

Tomcat 5.5.20 Internal error/crash.

2006-10-10 Thread j.random.programmer
Hi: I'm getting these at random, tomcat version: 5.5.20 These looks like a serious coding bug (there should never be ArrayIndexOutOfBoundsExceptions), but it's not clear whether this bug exists in the JDK or in the tomcat code. # java -version java version "1.5.0_06" Java(TM) 2 Runtime Environm

Re: Critical bug in RequestDispatcher.include(..) in Tomcat 5.5.16 ?

2006-07-01 Thread j.random.programmer
> I didn't see him mention "forward", you do > understand what he's saying > right? > No I don't. Which is why this looks like a fairly serious bug from where I am standing. You may want to read the specification about what an "include" is and how it differs from "forward". The spec. explicity s

Re: Critical bug in RequestDispatcher.include(..) in Tomcat 5.5.16 ?

2006-06-30 Thread j.random.programmer
> "%>" the jsp renderer will try to reopen the output > stream (to render > the whitespace), which is already closed. That is > the error you are > seeing here. If you want to include other markup or > jsp's in your jsp > pages use the @include or jsp:incl

Critical bug in RequestDispatcher.include(..) in Tomcat 5.5.16 ?

2006-06-30 Thread j.random.programmer
Is this my imagination or is tomcat really this retarded and this insanely buggy ? Or am I doing something wrong ? - x.jsp -- foo <% RequestDispatcher rd = request.getRequestDispatcher("/foo.html"); rd.include(request, response); %> test;

bug in Tomcat 5.5.x

2006-06-30 Thread j.random.programmer
Hi: This looks like a serious bug. Consider: In web.xml --- java.lang.Throwable /errors/error.jsp --- in foo.jsp: <% int x = 0; int y = 5/(0-x); %> (throws a arithmetic exception) in /errors/error.jsp --