Vadim Gritsenko wrote:
Problem is that currently Flow session scope is not serializable. WebLogic requires session attributes to be serializable (required for clustering).
I mean, is flow unusable on WebLogic ?
Flow requires session scope only when you use "global" variables in the flow:
var thisisglobal;
function a() {
var thisislocal;
}So no, not completely unusable.
> Or just one has to switch the > clustering off for the Cocoon webapp ?
You'll have to hit weblogic docs to answer this one. Alternatively, you can provide a patch to make scope serializable :)
Vadim
