We are trying the main application to access the common Facelets files from shared library deployed in WebLogic.
The common Facelets files are in the below path in shared library:
META-INF->resources->common-ac->HelloWorld.xhtml
We access this in main application page as:
<ui:include src="/common-ac/HelloWorld.xhtml" />
However, this didn't work, it throws the following exception:
javax.faces.view.facelets.TagAttributeException: /....public/Home.xhtml @47,50 <ui:include src="/common-ac/HelloWorld.xhtml"> Invalid path : /common-ac/HelloWorld.xhtml
at com.sun.faces.facelets.tag.ui.IncludeHandler.apply(IncludeHandler.java:125)
How is this caused and how can I solve it?