Forum Moderators: open
I have a web app. All of my credit card transaction are handled by outside secure site. I want to start to process all transactions on my server.
I am pretty new with https protocol and I need some pointers, like,
how do I switch between http and https?
Will I loose my session?
Any pointers appreciated
thanks
It just parsed the https, decided use a secure socket, encrypted the data, and kept right on running the pages and the session without worrying about anything else.
ray
You get a security certificate for your server and install it. The pages you want to be secure, you just make sure that all the links to it say https instead of http. So you have, for example, a shopping cart getting filled up all on http pages.
The when it's time to check out and collect personal info, the forms are requested with https in the header. It's always worked for me. I'd appreciate any comment from an expert, though.