Hi, I'm getting this error while using checkbox and some other tomahawk components: /home.xhtml @316,15 <t:checkbox> Tag Library supports namespace: http://myfaces.apache.org/tomahawk, but no tag was defined for name: checkbox
I have that tag on my *tomahawk.taglib.xml*: <?xml version="1.0"?> <!DOCTYPE facelet-taglib PUBLIC "-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN" "http://java.sun.com/dtd/facelet-taglib_1_0.dtd"> <facelet-taglib> <namespace>http://myfaces.apache.org/tomahawk</namespace> <tag> <tag-name>aliasBean</tag-name> <component> <component-type>org.apache.myfaces.AliasBean</component-type> <renderer-type>org.apache.myfaces.AliasBean</renderer-type> <handler-class>your.package.AliasBeanHandler</handler-class> </component> </tag> <tag> <tag-name>buffer</tag-name> <component> <component-type>org.apache.myfaces.Buffer</component-type> <renderer-type>org.apache.myfaces.Buffer</renderer-type> </component> </tag> <tag> <tag-name>checkbox</tag-name> <component> <component-type>org.apache.myfaces.HtmlCheckbox</component-type> <renderer-type>org.apache.myfaces.Checkbox</renderer-type> </component> </tag> (...) *And on my web.xml:* <context-param> <param-name>facelets.LIBRARIES</param-name> <param-value>/WEB-INF/tomahawk.taglib.xml</param-value> </context-param> I can use some tomahawk components as commandButton, outputText, etc... Any idea? Thanks, Nuno -- Ping is just a number timming is everything

