It's probably irrelevant to 4.0.2, but there is a new feature that was left in but not documented which allows the loading of taglibs that are globally available. This will be tested and documented in 4.0.3. It shouldn't make any difference, but I was going to ask you to disable it if setting useJBossLoader=true didn't work.
>From /jboss-4.0.2/server/default/deploy/jbossweb-tomcat55.sar/conf.web.xml | <!-- Use a custom options class to allow the shared tag lib descriptors | to be loaded from jars in the tomcat sar conf/tlds directory. The | standard options implementation can only find taglibs based on the | class loader classpath. | --> | <init-param> | <param-name>engineOptionsClass</param-name> | <param-value>org.jboss.web.tomcat.tc5.jasper.JspServletOptions</param-value> | </init-param> | <!-- Specify the jars relative to the jbossweb-tomcat55.sar that should | be scanned for common tag lib descriptors to include in every war | deployment. | --> | <init-param> | <description>MyFaces tlds</description> | <param-name>tagLibJar0</param-name> | <param-value>jsf-libs/myfaces-impl.jar</param-value> | </init-param> | This will allow us to bundle MyFaces with the app server. Then you will no longer need to put the MyFaces jars in WEB-INF/lib See http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossFaces Stan View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3880932#3880932 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3880932 ------------------------------------------------------- This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput a projector? How fast can you ride your desk chair down the office luge track? If you want to score the big prize, get to know the little guy. Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
