Re: tiles and custom RequestProcessor

2004-04-17 Thread Niall Pemberton
Your SessionRequestProcessor needs to subclass TilesRequestProcessor. Niall - Original Message - From: "Dean A. Hoover" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 17, 2004 8:27 PM Subject: tiles and custom RequestProcessor > I am using

Re: tiles and custom RequestProcessor (SOLVED)

2004-04-17 Thread Dean A. Hoover
OK, the trick is to subclass TilesRequestProcessor. Thanks anyway Dean A. Hoover wrote: Sorry, I should probably have included the exception: javax.servlet.ServletException: TilesPlugin : Specified RequestProcessor not compatible with TilesRequestProcessor org.apache.struts.tiles.TilesPl

Re: tiles and custom RequestProcessor

2004-04-17 Thread Dean A. Hoover
Sorry, I should probably have included the exception: javax.servlet.ServletException: TilesPlugin : Specified RequestProcessor not compatible with TilesRequestProcessor org.apache.struts.tiles.TilesPlugin.initRequestProcessorClass(TilesPlugin.java:360) org.apache.struts.tiles.Til

tiles and custom RequestProcessor

2004-04-17 Thread Dean A. Hoover
I am using tiles *and* I want to use a custom RequestProcessor to handle HttpSession stuff. It seems that tiles uses its own request processor. I wrote a simple subclass of RequestPorcessor and configured as follows: How can I get "in front of" the tiles request processor? Dean