uda
uda

Reputation: 1

Passing JSP encrypted parameters to a servlet

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

Answers (1)

Bozho
Bozho

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

Related Questions