I know there is "login.jsp
" page for JBoss portal, which is located at
\jboss-portal\server\default\deploy\jboss-portal.sar\portal-server.war\
This login.jsp page posts user name and password to the following location.
action="<%= response.encodeURL("j_security_check") %>"
What I want to do is, instead of above, I want the login page to post the user name and password to another JSP page (e.g. login2.jsp
). I want to do something with user name and password in login2.jsp
.
So the basic workflow would be
login.jsp > login2.jsp > login!!
I tried creating login2.jsp
in the same location as where login.jsp
is, but after submitting the form, it's not taking me to login2.jsp
. I'm guessing this is happening because login2.jsp
page is not a non-secure page.
What configuration do I have to set in order for this task to be completed?