How does j_security_check know which page to redirect to?
843811Sep 4 2007 — edited Sep 14 2007Hi All,
I have implemented j_security_check in our weblogic web app successfully.
What I would like to know is following the authentication and authorization via the container, how does it know to redirect the user to index.jsp?
For example, we have login.jsp which contains the j_username and j_password fields, and the action is j_security_check. After the user hits submit and the container authenticates them, how does it know to then direct them to index.jsp? Is it because the welcome tag in web.xml is set up to direct them to index.jsp?
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
Thats the only thing i can think of!
Thanks in advance.