|
[
Permalink
| « Hide
]
Matt Raible added a comment - 26/Nov/07 12:16 AM
This should say Jetty 6.1.6 (I'm using the maven-jetty-plugin), not version 5.x. Thanks.
Matt,
I don't have 6.1.6 to hand, but testing this on jetty6.1.7 both standalone and the maven plugin is working fine. I'm using jdk1.5 and myfaces 1.1.5 (bit old now I know). I created a little jsp like so: <%@ page contentType="text/html; charset=UTF-8" %> <c:if test="${!empty param.foo}" > <c:if test="${empty param.foo}"> <c:if test="${! empty param.foo}"> </body> I used the same urls and got the same results. So I can't see that this is a jetty problem from the test results, so I'll close the issue for now. However, if you can provide more information, and help pinpoint the problem, then please do reopen this. cheers This issue only happens with MyFaces 1.2.0, not 1.1.5. Can you try again with MyFaces 1.2.0+?
Thanks, Matt Matt,
What result did you get from the simple jsp I pasted above? Jan The JSP you have above uses param.* and since param is never null, the error never occurs. I'm using Facelets and I created the following page.
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:c="http://java.sun.com/jstl/core" <c:if test="${!empty param.foo}" > <c:if test="${empty param.foo}"> <c:if test="${not empty errors}"> |
|||||||||||||||||||||||||||||||||||||||||||||||