> We have developed a CRM system (Apache+Tomcat+Struts+M$-SQL) which
> does provide reports. These reports are integrated as SQL-Statements
> in JSP pages and executed there via a Taglib. The result is always
> a styled HTML table.
> Our question: Is there a good tutorial out there how to integrate
> Cocoon in an already fully developed environment like a CRM system?
> I googled the net but so far I have not found a satisfying document.
After excessive googling, I found it by myself:
http://struts.sourceforge.net/struts-cocoon/
A cocoon plug-in for Struts. You can handle your actions like usual
and pass a forward to a JSP page which, instead of HTML source, generates
XML code. This XML code will be handled by Cocoon and serialized to
whatever format you want: HTML, Excel, PDF etc.
There u go!
Thomas