Link to home
Start Free TrialLog in
Avatar of byte1
byte1Flag for United States of America

asked on

Sharing session information across two web applications

We have two ASP.net web applications AppA and AppB under the same domain, is it possible to preserve session information from App A to App B ?  Users from AppA are redirected to AppB with information (login and other crtitical data) being transfered by query string to AppB. Now is it possible to maintain reliable distinct session for each user being transfered between the two applications ?

I noticed some user information was being mixed up with the others, is a query string not a good solution for this purpose ?
Avatar of Obadiah Christopher
Obadiah Christopher
Flag of India image

You could have a look @ storing the Session in a sql server d/b.
Avatar of byte1

ASKER

Yes, I am aware of that option, but would using the query string transfer method not create a unique session ?
How are u sending the session information currently?

Response.Redirect("url"+SessionInfo) ?? something like this?
Avatar of byte1

ASKER

yes, thats how i send information over to AppB.

What i am interested in knowing is under the same domain, is every call to AppB unique with a unique session id.
If I'm not mistaken, if u r redirecting from appa to appb then the session id should remain the same
ASKER CERTIFIED SOLUTION
Avatar of Ramuncikas
Ramuncikas
Flag of Lithuania image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial