Question

I have a JSF 2 + Spring 3 application that's currently being deployed to a clustered WebSphere 7 environment. The servers are configured for memory-to-memory replication for session handling. While running tests on the application, a common exception that's being generated is the following:

[1/3/12 20:34:48:784 EST] 0000003c WASSession    E MTMBuffWrapper storeObject SESN0200E: Caught Exception while trying to serialize.
[1/3/12 20:34:48:785 EST] 0000003c WASSession    E MTMHashMap handlePropertyHits SESN0202E: Failed to replicate attribute com.sun.faces.renderkit.ServerSideStateHelper.LogicalViewMap

Any idea as to what this means and how to resolve it? Thanks.

Was it helpful?

Solution

All objects on the session have to be Serializable for memory-to-memory replication (or database persistence) to work. Apparently the specified one is not.

(Hint, you can usually Google on the specific error code, which usually will send you to one of the official WebSphere InfoCenter pages.)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top