Blank <h:dataTable with Warning: Could not load ViewHandler>

Hi guys,

I am getting following warning on my TomCat (5.5.17) screen

WARNING: Could not load ViewHandler com.sun.facelets.FaceletViewHandler

java.lang.ClassNotFoundException: com.sun.facelets.FaceletViewHandler

at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)

........................

......................

when I try to execute my EmpList.jsp with following code

<f:view>

<h:form>

<h:dataTable

value="#{EmpBean.myDataList}"

var="myDataItem"

>

<h:column>

<f:facet name="header">

<h:outputText value="ID" />

</f:facet>

<h:outputText value="#{myDataList.dept_code}" />

</h:column>

<h:column>

<f:facet name="header">

<h:outputText value="Name" />

</f:facet>

<h:outputText value="#{myDataList.dept_name}" />

</h:column>

</h:dataTable>

</h:form>

</f:view>

and there is no data on the list. what else to do?

Thnx

[1145 byte] By [AlexCoxwella] at [2007-11-26 20:00:31]
# 1
This warning can be fixed by adding jsf-facelets.jar to the application.
AlexCoxwella at 2007-7-9 22:58:10 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...