I have a xhtml with I must include into my jsp site. I've intergrated jsf into my project and everything works fine. The problem is that if I try to include a xhtml with tiles like this:
<put-attribute name="jsf-header" value="/jsf/index.xhtml"/>
and then in my jsp:
<tiles:insertAttribute name="jsf-header"/>
I get the complete site included (which makes sense). There are two things which doesn't work here:
1) I just want to add the generated source from jsf. not the head and body tag. But unfortunatelly, if I don't add h:head and body, the xhtml isn't well formed...
2) Stylesheets which are included into my xhtml are getting the wrong path if I include them with tiles. Same as if I would include them with jsp:ínclude.
Anybody of you, don you know how I can include xhtml files into my jsp files? Thanks Christian