RE : Buffering the ouput of a JSP page within an action

2004-04-20 Thread Amine Bousta
-Message d'origine- De : Wiebe de Jong [mailto:[EMAIL PROTECTED] Envoyé : lundi 19 avril 2004 20:51 À : 'Struts Users Mailing List' Objet : RE: Buffering the ouput of a JSP page within an action Check out Matt Raible's solution to templated-email using Velocity. It is good

RE: Buffering the ouput of a JSP page within an action

2004-04-19 Thread Wiebe de Jong
il 19, 2004 3:01 AM To: 'Struts Users Mailing List' Subject: Buffering the ouput of a JSP page within an action Hello, I'm trying to write a struts action that could save in a database and send by e-mail the output of a JSP page. This JSP page needs attributes values that are stored in

Re: Buffering the ouput of a JSP page within an action

2004-04-19 Thread Niall Pemberton
Struts has a tag - not used it myself, but the docs say it performs an internal dispatch to a component or URL and stores the response in a bean. Maybe you could use that as part of a solution. http://jakarta.apache.org/struts/userGuide/struts-bean.html#include I have a simple tag (StoreTag) wh

Buffering the ouput of a JSP page within an action

2004-04-19 Thread Amine Bousta
Hello, I'm trying to write a struts action that could save in a database and send by e-mail the output of a JSP page. This JSP page needs attributes values that are stored in the session context. In other words, I need ServletContext of the struts action and the JSP page to be the same. I first