Hello all, I have a requirement for a dynamically created menu on all pages of a web site i am creating. So i created an action that creates a List of MenuItems, and then forwards to a jsp that uses jstl to forEach through the list and generate the appropriate html. the jsp page only has the snippet of html for the menu div of the page. I am including this action in "static" html pages via the use of apaches SSI module like this: <!--#include virtual="/apps/footer" -->
and thought i was going to use jsp:include to include it in all of the jsp pages to which my applications actions are forwarding, like this: <jsp:include page="/apps/footer" /> However when i attempt to do that i get a: java.lang.IllegalStateException: Cannot forward after response has been committed This does work: <c:import url="http://www.domainname.com/apps/footer" /> but i'd prefer not to have to use that, because then i'll have to change it when things move from dev to production, so far my jsp's have no site specific information, so i can just copy them. So can someone tell me how/if i can include the results of an action in a jsp that is being forwarded to from another action? Thanks Dave --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]