0

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?

Community
  • 1
  • 1
Jaggu
  • 6,298
  • 16
  • 58
  • 96
  • Check this answer : http://stackoverflow.com/questions/273732/how-can-i-share-a-session-across-multiple-subdomains-in-asp-net – Pranay Rana Nov 16 '11 at 04:45
  • This link uses Sql server itself. I want to see if it is possible without that. – Jaggu Nov 16 '11 at 06:14

1 Answers1

1

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

Razor
  • 17,271
  • 25
  • 91
  • 138