c# - Share user session data between domains (not subdomain) -
we have web application hosted on iis. application can reached on multiple domains (different domains - same application). have implemented shared session between domains use of shared id stored inside database. works fine - once user requests url passing request auth domain (session server) - in response whether user authorized or not. thats basic information user login state.
now we're facing problem how share session data? each domain session object maintained separately. means when session object initialized in request domain a, domain b not able access data.
we considering implementing "application wide" static collection of user session objects accessible in each domain context. smells trouble when comes maintain object live cycle , overall performance application.
do have opinion on above solution? can point other solution problem?
best regads man
Comments
Post a Comment