Olá pessoal, estou utilizando JSF 2 + richfaces 4CR1 + liferay com TomCat, e o meu problema é o seguinte, quando eu tento colocar alguma tag richfaces ela não funciona,
exemplo:
portletViewMode.xhtml
<f:view
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich"
>
<h:head />
<h:body>
String ?
<h:outputText value="#{Teste.texto}"/>
<rich:tabPanel switchType="client">
<rich:tab label="First">
Here is tab #1
</rich:tab>
<rich:tab label="Second">
Here is tab #2
</rich:tab>
<rich:tab label="Third">
Here is tab #3
</rich:tab>
</rich:tabPanel>
</h:body>
</f:view>
bem simples ne, mas olhem o resultado
não tenho idéia doque eu posso ter feito de errado
valeu pela atenção