How to use Facelets composition with files from another context
I have an application that use composition (for page templates). But we think in create a web-application (war) to host all templates shared by all applications in the same host of all applications. How I can include a template from another context? At this time I use import from http request. But it's sounds like bad. <ui:composition template="http://localhost:8080/templates/layout/foo.xhtml"> I'm using JBoss Seam 2.x with JSF 1. BalusC Note that this is to be done differently in JSF 2.x Facelets, see this answer for detail. This is possible with a custom Facelets resource resolver. I would