I think I am close, but I keep returning the exception:
com.sun.jsftemplating.layout.LayoutDefinitionException
My .xhtml page is:
<!DOCTYPE layoutDefinition SYSTEM "/jsftemplating/layout.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml"
xmlns:ui="
http://java.sun.com/jsf/facelets"
xmlns:h="
http://java.sun.com/jsf/html"
xmlns:f="
http://java.sun.com/jsf/core"
xmlns:rave="
http://www.sun.com/web/ui">
<ui:composition template="/common/template.xhtml">
<ui:define name="title">Petro Admin: EAI/GFT</ui:define>
<ui:define name="body">
<layoutDefinition>
<layout>
<component type="staticText" id="hello">
<option name="value"
value="Hello World!" />
</component>
</layout>
</layoutDefinition>
</ui:define>
</ui:composition>
</html>
I tried using just straight rave components in the page such as:
<rave:staticText text="Hello World!" />
But that throws the same exception.
Thoughts?
Thanks,
--Todd