integration « JSP « JSF Q&A





1. Problem with expression language functions in Tomahawk tags    stackoverflow.com

I'm using:

  • Tomcat 6.0
  • Jsf 1.2 - Mojarra Implementation
  • Tomahawk 1.1.9
I imported the taglib
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
when i call:
<h:outputText value="#{fn:indexOf('ciao','i')}"></h:outputText>
Output is 1 when i use
<t:outputText value="#{fn:indexOf('ciao','i')}"></t:outputText>
it throws a server exception, like there are some ...

2. JSP and Facelets integration?    coderanch.com