Hi Hema,

I use filters in my portlet apps. However, there is one caveat, you need setup filters to fire on Forward, Include and Request which can only be done from within a Servlet 2.4 compatible container (i.e. tomcat 5.x )

Here is a example what one of our filter mappings from my web.xml:

   <filter-mapping>
       <filter-name>OEFilter</filter-name>
       <url-pattern>*.htm</url-pattern>
       <dispatcher>INCLUDE</dispatcher>
       <dispatcher>FORWARD</dispatcher>
       <dispatcher>REQUEST</dispatcher>
   </filter-mapping>

HTH,



Hema Menon wrote:

Hi,

I am trying to make our struts application to a portal that can be
displayed within Jetspeed 1.6 w/Fusion. I modifed the portlet.xml,
web.xml and the html:form as per Ate Douma's documentation on Struts
portlet. We have some servlet filters defined in the web.xml file.
Somehow the servlet filter does not seem to be called. Is it not
supported with Jetspeed? Can someone let me know if this is supported,
if not this could be a road block for us.

Thanks in advance,
Hema



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Hema Menon

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]







--
"Great minds discuss ideas. Average minds discuss events. Small minds discuss 
people."  - Admiral Hyman Rickover

*******************************************
*           Scott T. Weaver               *
*         <[EMAIL PROTECTED]>             *
*     <http://www.einnovation.com>        *
* --------------------------------------  *
*   Apache Jetspeed Enterprise Portal     *
*     Apache Pluto Portlet Container      *
*                                         *
* OpenEdit, Website Content Management    *
*     <http://www.openedit.org>           *
*******************************************


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to