Hello, My problems with WebSessionStore have been well documented:
1. http://tinyurl.com/jf2o3 2. http://tinyurl.com/ejjte Basically HttpContext is set to null somewhere along the way inside IBatis. So since there is no solution in sight to this problem, I though of writing a simpler session storage facility which does not rely on HttpContext but instead stores the sessions in static space. Luckily, the IBatis source code is written nicely enough to isolate session storage so it can be pluggable. I came across the ISessionStore interface which I'd like to implement by extending AbstractSessionStore. So my new class StaticSessionStore extends ISessionStore and is ready to be used. The question is how do I make IBatis use StaticSessionStore instead of WebSessionStore without building IBatis from the source code? Thanks. Zarar Siddiqi

