JSF properties file
Using JSF and JSTL, i am trying to use a properties file, to import an xml file.
PROPERTIES FILE:
name > messages.properties
content > url=/home/index.xml
JSP FILE:
<f:loadBundle basename="jsfks.bundle.messages" var="msg"/>
<h:outputText value="#{msg.url}"/>
<c:import url="#{msg.url}" var="xmlSource" />
<x:parse xml="${xmlSource}" var="xmlDocument" />
The outputText works, it does display my URL, but the c:import dont work.
I want to value that is in my properties file, to be imported i.e
<c:import url="/home/index.xml" var="xmlSource" />
how can i do this using the above method?
Thanks

