Hi,
My post relates to https://jira.jboss.org/jira/browse/JBAS-5645
I request a secured URL via a form with a post. Something like this:
<form method="POST" action="userHome" name="userHomeForm"> <input type="hidden" name="mydata" value="MYDATA"/> <input type="submit" value="Enter Here"/> </form>
<% String mydata = request.getParameter( "mydata" ); out.println("<p>My Data: " + mydata + "</p>"); %> <form method="POST" action="j_security_check"> <td><strong>User ID: </strong></div></td> <td><input type="text" name="j_username" /></td> <td><div align="right"><strong>Password:</strong></div></td> <td><input type="password" name="j_password"/></td> <td><input type="submit" name="Submit" value="Submit" /></td> </form>