Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Using ui:composition while creating task-flows in JDev12c not rendering the page.

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

Comments

Post Details

Added on May 23 2022
2 comments
292 views