Reputation: 6428
Is it possible to share sessions across subdomains which are different applications without using Sql Server Session mode? I've implemented this concept with help from this link:
What options are there for sharing data across subdomains?
However is it possible without Sql Server mode may be using in proc etc?
Upvotes: 0
Views: 689
Reputation: 17498
You won't be able to do this using InProc, each application will have its own memory space.
You could set up a web service to get around the issue, although I find this solution to be more of a hack.
You could alternatively use a key/value store database or some flavour of NoSQL.
A custom session state provider would be a more elegant solution.
MongoDB ASP.NET Session State Store Provider
Upvotes: 1