from http to https
Posted
by Chez
on Stack Overflow
See other posts from Stack Overflow
or by Chez
Published on 2010-04-20T15:10:55Z
Indexed on
2010/04/20
15:13 UTC
Read the original article
Hit count: 390
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
© Stack Overflow or respective owner