Hello,
I have converted a struts application in portlet using portlet bridge
for integration in liferay portal.
The application filter path using the javax.servlet.Filter
<filter-mapping>
<filter-name>SecurityFilter</filter-name>
<url-pattern>/customers/*</url-pattern>
</filter-mapping>
But with this configurazione the filter don't work if my application
is in a portlet context.
Trying this configuration
<filter-mapping>
<filter-name>SecurityFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
The filter work but intercept all request.
How I can make it to work with the path that start with customers?
--
Antonio Talarico
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]