I have a web page coded as a JSP and utilizing JSTL tags. On this page, I have a dynamic report that is generated by a webwork call. I am using the <c:include> tag to reference the webwork action, and it is mapped to a JSP view for rendering.
Time for a visual? index.jsp +----------------------+ | | | | | | | +------+ | | | | | | | |<------ report.action (mapped to a view called report.jsp) | | | | invoked by using JSTL <c:import url="/report.action"/> | +------+ | | | | | | | | | +----------------------+ The <c:include> invokes the webwork action and the view is returned, however the view is returned as a String! It is not parsed by the JSP engine, so the callbacks to the ValueStack never occur. I have also tried the <jsp:include> tag, but it does not render the included JSP either. Perhaps there is a webwork tag to handle this? I would prefer a pure JSTL solution, but at this point, I am open. :) What is the best way to handle this simplified problem? ------------------------------------------------------- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! http://www.vasoftware.com _______________________________________________ Opensymphony-webwork mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork