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
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
> 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
> "%>" 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
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;
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
--