Suggestion, assuming you want to gather simple forms inside a more complex form:
A.jsp -> contains viewRoot and form, include B_comp.jsp B.jsp -> contains viewRoot and form, include B_comp.jsp C.jsp -> contains viewRoot and form, include C_comp.jsp B_comp.jsp -> does not contain root neither form tag, but only components, include C_comp.jsp C_comp.jsp ->does not contain root neither form tag, but only components If on the other hand, you just want to gather various forms inside a view, you can do a similar separation, (a jsp for the view root, another to include for each form) Scott McMasters a écrit : > Hello, > > I have a project wherein jsf pages must be included via a customized > tag into another jsf page, and also two layers down. > > For example, let's say we have A.jsp which uses the JSF libraries as > well as a custom JSP tag library. A tag handler will include > B.jsp/jspf dynamically, and another tag handler in B.jsp/jspf will > include C.jsp/jspf dynamically. I can't get this to work, however. > > Have any of you tried something like this before, or have any ideas > how I might accomplish this? > > Thanks in advance, and God bless, > > Scott L. McMasters >

