MyFaces version 1.2.X uncommented a couple lines of code that exist but are
commented-out in Myfaces 1.1.X- I am trying to find out why these lines are
'uncommented' in Myfaces 1.2.X because they cause a breakage when using a
ServletWrapper (such as coherence*web in our case).  i am trying to identify
the best way to fix this incompatibility... 

The WebXml.class code in question:

getFacesServletMappings() method:

1.1 - commented out: 
//            if (FacesServlet.class.isAssignableFrom(servletClass) ||
//                   
DelegatedFacesServlet.class.isAssignableFrom(servletClass))
//            {

1.2.X: uncommented: 
  if (FacesServlet.class.isAssignableFrom(servletClass) ||
                   
DelegatedFacesServlet.class.isAssignableFrom(servletClass))
            {
              
-- 
View this message in context: 
http://www.nabble.com/WebXml-changes-between-1.1.x-and-1.2.x-break-with-ServletWrapper-tp24481808p24481808.html
Sent from the My Faces - Dev mailing list archive at Nabble.com.

Reply via email to