from http to https
- by Chez
I have got a simple web app.
A web page with a form to submit.
A servlet on the serverside.
It works.
I am now asked to change it so that the address of the form changes from
http://www.example.com/myForm.html
to
https://www.example.com/myForm.html
What are the steps to do this ?
do I have to change my servlet ? my deployment ? my web page ?
all of them ?
Thanks