I have one ASP.NET web application running at the web server root which provides multiple (similar) web sites by using URL redirection. To give a real world example:
http://webshopserver/company1/ProductList.aspx -> http://webshopserver/ProductList.aspx?showProductsFrom=company1
http://webshopserver/company2/ProductList.aspx -> http://webshopserver/ProductList.aspx?showProductsFrom=company2
...
This works very fine; the only problem is that, obviously, all of these different shops share the same session object (since the InProc session manager stores the session object in the AppDomain). I would like the shops of company1 and company2 to have different session objects, so that, for example, if a user opens the shops of company1 and company2 in different tabs of the same browser window, the items put in the shopping cart of company1 won't show up in the cart of company2.
There are a few obvious approaches to solve this problem that I don't like:
- Create my own Session object which encapsulates everything into a HashMap<CompanyName, whatever> and then stores it in the "real" session: That breaks all existing code that uses the session object.
- Use URLs like http://company1.webshopserver/ and a wildcard DNS record, because the session ID cookie is tied to the domain: That's ugly (because the real-world equivalent of "webshopserver" is already long enough).
- Write my own custom Session Provider: That would be kind of like reinventing the wheel.
- Create a separate IIS application for every company: Won't work, because creating new companies should be possible through something like http://webshopserver/CreateYourOwnWebshop.aspx without any human (server admin) intervention afterwards.
I'm thinking more of a solution along the lines of:
- restricting the path of the session cookie to http://webshopserver/<companyName>/ or
- telling ASP.NET to use different AppDomains depending on the URL.
So, any information on how to achieve one of these points (or maybe a different solution altogether) would be helpful.