You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by Apache Wiki <wi...@apache.org> on 2006/02/28 21:49:52 UTC

[Myfaces Wiki] Update of "Installation and Configuration" by MikeKienenberger

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Myfaces Wiki" for change notification.

The following page has been changed by MikeKienenberger:
http://wiki.apache.org/myfaces/Installation_and_Configuration

The comment on the change is:
Updated information on jetty and TLD listeners.

------------------------------------------------------------------------------
  
  == Other Containers ==
  
-  * Some containers do not support registering listeners in tld files.   Jetty 5.1.3 appears to be an example of this.  For these containers, you must register the listener in the web.xml file, between the <filter-mapping> and <servlet> tags.
+  * Some containers do not support registering listeners in tld files, such as Jetty 5.1.2 and earlier.  For these containers, you must register the listener in the web.xml file, between the <filter-mapping> and <servlet> tags.
  {{{
       [...]
   </filter-mapping>
@@ -194, +194 @@

       [...]
  }}}
  
+ For Jetty 5.1.3rc0 and later, you need to uncomment the !TagLibConfiguration in the jetty.xml file to enable registering listeners in tld files, or you can respecify it like this:
+ {{{
+   <Set name="WebApplicationConfigurationClassNames">
+     <Array type="java.lang.String">
+       <Item>org.mortbay.jetty.servlet.TagLibConfiguration</Item>
+     </Array>
+   </Set>
+ }}}
+