I am trying to write a web service in ASP.NET that allows an external application to access session variables, such as the users who are currently logged in.
I thought the right way to do this is to pass the cookie with the SessionID to the web service (or SessionID itself) and return the web service settings of the Session object.
However, after a lengthy search, I could not find a way to access the session variables using only the SessionID. It's true? If so, is there an alternative way for me to write a service that will access session variables?
Thank,
source
share