insert dynamic jsp codes in Tiles

2006-01-27 Thread Kai Mai
Hi, Sorry, my previous posting was messed up by Roomity. I need to insert some dynamic jsp codes into my pages using tiles with Struts 1.2.4. The following examples don't seem to insert really dynamic jsp. It's for illustration purpose. tiles-defs.xml: in my jsp pag

Re: One Pass JSP Parsing Woes! - how to generate Dynamic JSP and enforce those tags get parsed/translated?

2006-01-29 Thread Kai Mai
Raghu, can you be more specific about your solution? how about giving some coding examples? Thanks. Kai On 1/27/06, Raghu Kanchustambham <[EMAIL PROTECTED]> wrote: > > Hi, > I solved the problem by "playing the container". > > I called the tag functions that the container would have called in th

intercept any request to jsp page in Struts Tiles

2006-01-29 Thread Kai Mai
Hi, Whenever a user requests a JSP page, I need to determine if I need to re-generate it if the corresponding template has been changed. I use action forward to display tiles. login.view is an action forward in my struts-config file I tried to extend TilesRequestProcessor and

Re: intercept any request to jsp page in Struts Tiles

2006-01-30 Thread Kai Mai
The template files are in HTML format instead of JSP format. so the container won't re-compile them. whenever they are changed, I need to convert them in JSP formats first. Then the container will re-compile them. On 1/30/06, Dave Newton <[EMAIL PROTECTED]> wrote: > &

Re: intercept any request to jsp page in Struts Tiles

2006-01-30 Thread Kai Mai
I need to support the legacy html template files. On 1/30/06, Dave Newton <[EMAIL PROTECTED]> wrote: > > Kai Mai wrote: > > The template files are in HTML format instead of JSP format. so the > > container won't re-compile them. > > > > whenever they a