Reputation: 15940
I am building a web application and I need to know whether I can share the Same session or not between http or https?
Upvotes: 4
Views: 648
Reputation: 43207
Yes, Sessions are shared across Http and Https requests.
Upvotes: 3
Reputation: 19114
Of course you can. Most website login mechanisms do it. They transfer password in cleartext over secure HTTPS, and after authenticated, they redirect you back to fast HTTP.
Upvotes: 3