I am making a series of calls to my web application (IIS7 in classic mode). The first two calls create objects and place them in a Session object.
By the time I make the third call, the session is missing an object. I expect that there will be two of my keys in the session, but there is only 1.
This is like creating multiple sessions. It should be noted that this happens a lot, it is not 100% repeatable, i.e. Sometimes everything works fine.
The objects are significant, but not huge (about 100 small lines), so it seems unlikely that I will maximize the size of the session. I do not put any other objects there.
source
share