I have to share session data between two different Asp.Net Application. The deployment of web apps are as shown below.
WebSite
--WebApp1
--WebApp2
I have to use same Session data between WebApp1 and WebApp2. Also WebApp1 and WebApp2 both share the same Domain(www.WebSite.com) and AppPool
What is the easiest way to make these two WebSite share the Session State data?
Can I use Asp.Net State Server to share the Session data between the above two WebApps?