hey ! My Problem : I want to render a JSP (Struts Tags) with cocoon ! Everything works fine ! 1. A servlet arrange the data an puts the beans to the request. 2. forward to the coocoon Servlet ... RequestDispatcher rd = etServletContext().getRequestDispatcher( "/cocoon/printBasket" ); rd.forward( req, res ); ...
[web.xml] ... <!-- Cocoon Servlet Mapping --> <servlet-mapping> <servlet-name>Cocoon2</servlet-name> <url-pattern>/cocoon/*</url-pattern> </servlet-mapping> ... 3. piped to the print.jsp [sitemap.xmap] ... <map:match pattern="cocoon/printBasket"> <map:generate type="jsp" src="print/printBasket.jsp"/> <map:transform src="stylesheets/print2fo.xsl"/> <map:serialize type="fo2pdf"/> </map:match> ... But I have a little performance Pronblem: - One thing attracted attention : By the executing the pipe, the JSP it compiled 3 times and the servlet is executed 2 more times! Is that usual ? Can I do something to get a better performance ? Thanks for Help --------------------------------------------------------------------- Please check that your question has not already been answered in the FAQ before posting. <http://xml.apache.org/cocoon/faqs.html> To unsubscribe, e-mail: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>