> > Ok, I'll try this just to see if it can at least solve immediately > the problem, then go for some refactoring. My question is: but if I > don't need (and don't want) page versioning, and I disable it, is > serialization still necessary? >
it is with the 1.3 default page store you have to do this: class MyApplication extends WebApplication { ISessionStore newSessionStore() { return new HttpSessionStore();}} But its way better to make everything serializeable the right way johan