When task-flows is created with jsf2.0 in Jdeveloper 12c it failed to render the ui.
For Example , A JSFF page with following code snippet, on render it shows blank page.
<?xml version='1.0' encoding='UTF-8'?>
<ui:composition xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<af:outputText value="This is a test taskflow which does NOT work in OIM 12c" id="ot1"/>
</ui:composition>
Whereas a JSF page created with below code snippet renders fine and display output text.
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<af:outputText value="This is a test taskflow which works in OIM 12c" id="ot1"/>
</jsp:root>
is there any thing missing or this is a wrong usage for ui:composition?
Thanks in advance,
Lalit