I want to pass encrypted parameters via a JSP form to frmservlet.I want to pass userid by encrypting it.But it is not decrypt by the frmsrvlet,How can I do this?
views:
22answers:
1
A:
Serve your page over HTTPS, and have
<form action="https://yoursite/yourctx/yourServlet">
You'd have to enable SSL/TLS on your server.
Bozho
2010-10-27 13:37:38