There are two apps running on differnet servers, both of them in local intranet.
Both use the same model for something, making use of Session["variable"] to store some stuff.
What I want is to enable keeping the same session data between two apps, e.g. I browse app1, session variables change and if I go to app2 from app1, session data is taken from app1's session.
Is there any way to do that apart from passing the variables in query string in the links between apps, etc?
I wonder if there's some pre-made framework to achieve that or something?..
Both use the same model for something, making use of Session["variable"] to store some stuff.
What I want is to enable keeping the same session data between two apps, e.g. I browse app1, session variables change and if I go to app2 from app1, session data is taken from app1's session.
Is there any way to do that apart from passing the variables in query string in the links between apps, etc?
I wonder if there's some pre-made framework to achieve that or something?..