Lets say that i have a web service model in which a customer can choose a product, add it into their shopping cart, browse other products on the web site, return to the shopping cart and buy some of the items, redirected to the ssl session, pay the amount and then return back to the shopping cart to buy/delete more items from it.
My question is how do web servers implement the shopping carts. My guess is for each user, the server side can cache the shopping cart details and later send it back to the browser. But when the user is redirected to the ssl session, how to servers maintain the identity of the user (and their shopping cart) without actually having the user to create an account on the website.
Thanks in Advance!!!