Hi<br><br>Doing some tests I notice the implementation in mojarra of UIViewRoot.getComponentResources() does not match with the spec javadoc. This javadoc says this:<br><br><i>&quot;...Return an unmodifiable List of UIComponents for the provided target agrument. Each component in the List is assumed to represent a resource instance.<br>
<br>The default implementation must use an algorithm equivalent to the the following.<br><br>    * Locate the facet for the component by calling getFacet() using target as the argument.<br>    * If the facet is not found, create the facet by calling context.getApplication().createComponent() using javax.faces.Panel as the argument<br>
          o Set the id of the facet to be target<br>          o Add the facet to the facets Map using target as the key<br>    * return the children of the facet....&quot;</i><br><br>The javadoc says cleary that the returning facet is created using javax.faces.Panel as argument. But mojarra uses &quot;javax.faces.ComponentResourceContainer&quot; as argument. The effect can be seen when you try to use myfaces on glassfish v3 and you set the classloader delegate to true (I know that configuration is wrong, but the exception caught my attention).<br>
<br>Looking on google I saw this issue:<br><br><a href="https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=1427">https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=1427</a><br><br>I also saw that the line:<br>
<br>&quot;<i>Set the id of the facet to be target&quot;<br><br></i>is to respected too. Tomahawk has an example (myfaces-example-simple20/calendar.jsf) that has this code<br><br>        &lt;h:panelGroup id=&quot;body&quot;&gt;<br>
<br>It works with mojarra (2.0.3-SNAPSHOT) but do not with myfaces. The reason is myfaces is doing what spec says, but mojarra set the id to &quot;javax_faces_location_body&quot;. That&#39;s not fair. On JSF 2.0 Rev A Change Log there is no issue related to this one. <br>
<br>I have to say it, my personal opinion is that spec changes should not be done without document them on javadoc or add them to JSF 2.0 Rev A Change Log. Do things like that, only makes things more difficult to track, even worst, important details that needs to be on the spec just will be missing.<br>
<br>Could anyone include this detail on:<br><br><a href="http://wiki.jcp.org/wiki/index.php?page=JSF+2.0+Rev+A+Change+Log">http://wiki.jcp.org/wiki/index.php?page=JSF+2.0+Rev+A+Change+Log</a><br><br>and correct the spec javadoc?<br>
<br>regards,<br><br>Leonardo Uribe<br>