-----Original Message-----
From: Michael Kurz [mailto:[email protected]] 

>Madhav Bhargava schrieb:
> To add if you see the spring security application config, I have the 
> following set:
> 
> <security:http>
>               <security:intercept-url pattern="/**/secure/**" 
> access="ROLE_USER" />
>               <security:intercept-url pattern="/**/operations/**" 
> access="ROLE_OPERATIONS"/>
> </security:http>
> 
> The URL for the outcome to be forwarded to matches the second interceptor 
> pattern which is "/jsp/operations/user/operationsLanding.iface"
> 
> However what the filter receives is "/jsp/secure/hprelanding.jspx" which is 
> the old URL from where the control is being forwarded. This is not how it 
> happens when using jsp:forward.

>For clarification: Is the navigation to the new page 
>operationsLanding.iface performed (do you actually see it in the browser)?
>
>- Michael

Yes,the request is properly forwarded to operationsLanding.jspx and I can view 
the page. I had put a breakpoint in one of the spring security classes and I 
could see the old URL which got successfully mapped against pattern 
/**/secure/** which should not have happened.

If I have a normal JSP application where there is no JSF then it works fine. I 
meant the navigation is not handled by JSF.

Regards,
Madhav

Reply via email to