JSP pages and fragments are handled by the application server -
meaning that JBoss, WebLogic, WebSphere is the one responsible for
compiling and executing the resulting page code. The best way to hook
into this process is by using a Filter. For JHTML pages, thats a
different story since the app server can't parse and compile the
pages. A servlet is used to redirect the request down the DAS pipeline
where the page can parsed and executed by the ATG page compilation
mechanism.
- George