Custom ISerializer being used during serialization but _not_ during deserialization

2011-11-10 Thread Peter GardfjÀll
Hi all, in my application I register a custom ISerializer implementation in the WebApplication.init() method as follows: @Override protected void init() { super.init(); getFrameworkSettings().setSerializer(new MySerializer(getApplicationKey())); ... This works

Re: Custom ISerializer being used during serialization but _not_ during deserialization

2011-11-10 Thread Martin Grigorov
Hi, That's all you need to do to configure your custom ISerializer. DefaultPageStore uses the same instance for serialization and deserialization. Each user session has its own instance of IPageManager that keeps an instance of IPageStore. See