jboss didn't render any richfaces tag, and just let it pass through.
Could you tell me what did I make wrong?
I did put the richfaces*.jar to build path in eclipse. how come it didn't render?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<h:head>
<title>h2o ImageBase</title>
</h:head>
<h:body>
<rich:popupPanel id="login">
<f:facet name="header">
Sign in
</f:facet>
<h:panelGrid columns="1">
<h:outputText value="email/password"/>
<h:inputText value="#{hc.user.email}" id="userName"/>
<h:inputSecret value="#{hc.user.password}" id="password"/>
</h:panelGrid>
<a4j:commandButton value="sign in" action="#{hc.signIn()}"/>
<h:link outcome="register.xhtml" value="sign up"/>
</rich:popupPanel>
</h:body>
</html>