Reputation: 1
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?
Upvotes: 0
Views: 943
Reputation: 597106
Serve your page over HTTPS, and have
<form action="https://yoursite/yourctx/yourServlet">
You'd have to enable SSL/TLS on your server.
Upvotes: 1