The solution is: 1) creator.taglib.xml like this
| <?xml version="1.0" encoding="UTF-8"?> | <!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://www.sun.com/web/ui</namespace> | <tag> | <tag-name>calendar</tag-name> | <component> | <component-type>com.sun.rave.web.ui.Calendar</component-type> | <renderer-type>com.sun.rave.web.ui.Calendar</renderer-type> | </component> | </tag> | <tag> | <tag-name>form</tag-name> | <component> | <component-type>com.sun.rave.web.ui.Form</component-type> | <renderer-type>com.sun.rave.web.ui.Form</renderer-type> | </component> | </tag> | <tag> | <tag-name>body</tag-name> | <component> | <component-type>com.sun.rave.web.ui.Body</component-type> | <renderer-type>com.sun.rave.web.ui.Body</renderer-type> | </component> | </tag> | <tag> | <tag-name>page</tag-name> | <component> | <component-type>com.sun.rave.web.ui.Page</component-type> | <renderer-type>com.sun.rave.web.ui.Page</renderer-type> | </component> | </tag> | <tag> | <tag-name>head</tag-name> | <component> | <component-type>com.sun.rave.web.ui.Head</component-type> | <renderer-type>com.sun.rave.web.ui.Head</renderer-type> | </component> | </tag> | <tag> | <tag-name>html</tag-name> | <component> | <component-type>com.sun.rave.web.ui.Html</component-type> | <renderer-type>com.sun.rave.web.ui.Html</renderer-type> | </component> | </tag> | | <tag> | <tag-name>link</tag-name> | <component> | <component-type>com.sun.rave.web.ui.Link</component-type> | <renderer-type>com.sun.rave.web.ui.Link</renderer-type> | </component> | </tag> | <tag> | <tag-name>panelLayout</tag-name> | <component> | <component-type>com.sun.rave.web.ui.PanelLayout</component-type> | <renderer-type>com.sun.rave.web.ui.PanelLayout</renderer-type> | </component> | </tag> | <tag> | <tag-name>tabSet</tag-name> | <component> | <component-type>com.sun.rave.web.ui.TabSet</component-type> | <renderer-type>com.sun.rave.web.ui.TabSet</renderer-type> | </component> | </tag> | <tag> | <tag-name>tab</tag-name> | <component> | <component-type>com.sun.rave.web.ui.Tab</component-type> | <renderer-type>com.sun.rave.web.ui.Tab</renderer-type> | </component> | </tag> | | <tag> | <tag-name>dropDown</tag-name> | <component> | <component-type>com.sun.rave.web.ui.DropDown</component-type> | <renderer-type>com.sun.rave.web.ui.DropDown</renderer-type> | </component> | </tag> | <tag> | <tag-name>panelGroup</tag-name> | <component> | <component-type>com.sun.rave.web.ui.PanelGroup</component-type> | <renderer-type>com.sun.rave.web.ui.PanelGroup</renderer-type> | </component> | </tag> | <tag> | <tag-name>messageGroup</tag-name> | <component> | <component-type>com.sun.rave.web.ui.MessageGroup</component-type> | <renderer-type>com.sun.rave.web.ui.MessageGroup</renderer-type> | </component> | </tag> | <tag> | <tag-name>label</tag-name> | <component> | <component-type>com.sun.rave.web.ui.Label</component-type> | <renderer-type>com.sun.rave.web.ui.Label</renderer-type> | </component> | </tag> | <tag> | <tag-name>pageSeparator</tag-name> | <component> | <component-type>com.sun.rave.web.ui.PageSeparator</component-type> | <renderer-type>com.sun.rave.web.ui.PageSeparator</renderer-type> | </component> | </tag> | <tag> | <tag-name>hyperlink</tag-name> | <component> | <component-type>com.sun.rave.web.ui.Hyperlink</component-type> | <renderer-type>com.sun.rave.web.ui.Hyperlink</renderer-type> | </component> | </tag> | <tag> | <tag-name>textField</tag-name> | <component> | <component-type>com.sun.rave.web.ui.TextField</component-type> | <renderer-type>com.sun.rave.web.ui.TextField</renderer-type> | </component> | </tag> | <tag> | <tag-name>passwordField</tag-name> | <component> | <component-type>com.sun.rave.web.ui.PasswordField</component-type> | <renderer-type>com.sun.rave.web.ui.PasswordField</renderer-type> | </component> | </tag> | <tag> | <tag-name>staticText</tag-name> | <component> | <component-type>com.sun.rave.web.ui.StaticText</component-type> | <renderer-type>com.sun.rave.web.ui.StaticText</renderer-type> | </component> | </tag> | </facelet-taglib> | 2)in web.xml | .... | <context-param> | <param-name>facelets.LIBRARIES</param-name> | <param-value>/WEB-INF/creator.taglib.xml</param-value> | </context-param> | .... | 3) include sun jars in your application 4) remove myFaces implementation from /jbossweb-tomcat55.sar/jsf-libs View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953700#3953700 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953700 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ JBoss-user mailing list JBoss-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jboss-user