Well, I have pages that allow to edit some database data, so I have easy 
solution to start transaction at 
public void pageBeginRender(PageEvent event)
{
if (event.getRequestCycle().isRewinding())

// start transaction here
}

and at 
public void pageEndRender(PageEvent event)
{
if (event.getRequestCycle().isRewinding())
{
// Commit or rollback if errors found

}
}

Hmm, it WORKS fine but, hmmm, page render and transactions..., agrrr sure 
there's some other place to handle things.So the question is what is the 
right place to start/end transaction in Tap4
TYA

Reply via email to