An application we're developing on WebWare recently gave us an exception report that I can't seem to make much of; it looks like it was trying to get a session out of the memory store and couldn't find it, but there doesn't appear to be any of our code in the traceback, so I'm uncertain as to how it might have been caused. This hasn't been a common problem, we're been through almost 2 months of testing before we saw it; but I'd like to run it by you experts to see if you have any input as to what I should be looking for. The user was attempting to log out at the time.
Thanks!
Chris Backas
Traceback (most recent call last):
File "./WebKit/Application.py", line 395, in dispatchRequest
elif self.isSessionIdProblematic(request):
File "./WebKit/Application.py", line 494, in isSessionIdProblematic
if (time()-request.session().lastAccessTime()) >=
request.session().timeout():
File "./WebKit/HTTPRequest.py", line 221, in session
return self._transaction.session()
File "./WebKit/Transaction.py", line 67, in session
self._session = self._application.createSessionForTransaction(self)
File "./WebKit/Application.py", line 963, in createSessionForTransaction
session = self.session(sessId)
File "./WebKit/Application.py", line 789, in session
return self._sessions[sessionId]
File "./WebKit/SessionDynamicStore.py", line 74, in __getitem__
return self._memoryStore[key]
File "./WebKit/SessionMemoryStore.py", line 33, in __getitem__
return self._store[key]
KeyError: 20030714130214-a17c9a51ec3c1aa183a9591ad279c846
------------------------------------------------------- This SF.Net email sponsored by: Parasoft Error proof Web apps, automate testing & more. Download & eval WebKing and get a free book. www.parasoft.com/bulletproofapps1 _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
