-
Sub-task
-
Resolution: Obsolete
-
Minor
-
2.0.0.CR2
-
None
When a JSF page is generated, the namespaces look like this :
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:c="http://java.sun.com/jsp/jstl/core" template="/resources/scaffold/pageTemplate.xhtml">
They use the old java.sun.com namespace instead of the new xmlns.jcp.org. They should look like this :
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:ui="http://xmlns.jcp.org/jsf/facelets" xmlns:c="http://xmlns.jcp.org/jsp/jstl/core" template="/resources/scaffold/pageTemplate.xhtml">