I am having issues with conversation propagation in version 2.1.2.GA (this problem doesn't happen in 2.1.1.GA). After a lot of debugging I have concluded that this code doesn't propagate conversation:
@Override
@Begin(flushMode=FlushModeType.MANUAL)
protected void onSubmit() {
setResponsePage(CreateLugar.class);
}
and replacing it with this it propagates correctly:
@Override
@Begin(flushMode=FlushModeType.MANUAL)
protected void onSubmit() {
setResponsePage(new CreateLugar());
}
From a wicket point of view they should be identical. I am inclined to think this is a new bug in the new conversation propagation schema (metadata, etc).