I am facing very weird problem, i made an web application for my client, he is from usa,
I deployed application to “xyz.co.uk”, at my local system, the project function proper. But what is happening that at main server the session is destroying automatically, before the idle time. I have been figuring out this problem for long but could not solved it.
Please list me out what may be the reason behind this session out. I am using in process session.
I am facing very weird problem, i made an web application for my client,
Share
If your IIS is set to use a web farm (i.e. more than one process) then you may find your requests are being diverted to different processes, and the session data isn’t being copied across. To solve this, you change it back to one process, or use a session state server process on the machine.