Hello, We are switching an application from standard jsp + struts progressively to JSF. The reason being some part of application being much much easier to write with JSF component renderers than with Struts. We would, at the same time, take the opportunity to simplify our page layout using facelets templating. However, we have quite a few JSP tags that took a lot of time to develop and would be a pain in the ass to convert to another system. Those custom tags don't mix with JSF tags (rendrered on same page but not at same position). However if we go templating, those custom tag should appear in the templates.
Question is, is it possible to include JSP tags inside a facelet template? Or is there an easy way to create a facelet tag that wrap a legacy JSP tag?

