On Wed, Nov 5, 2008 at 4:22 AM, kranthi kumar
<[EMAIL PROTECTED]> wrote:
>   I am trying to make out the flow of execution of roller4 login. I worked
> on struts 1.2 but i am new to struts 2. So i am facing problem in
> understanding the code. Now in Login.jsp there is
> <form method="post" id="loginForm"
>      action="<c:url value="/roller_j_security_check"/>"
>      onsubmit="saveUsername(this)">
>
> To which action class does "roller_j_security_check" .Please advice me.

Roller uses Spring Security (aka "Aceigi") to handle authentication,
so you'll have to read up on that (the configuration file is
WEB-INF/classes/security.xml). I believe that a Spring security filter
intercepts the form POST to /roller_j_security check and does the
right thing (validates username/password, sets session attribute,
forwards to originally requested page, etc.).

Hope that helps,
- Dave

Reply via email to