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

