Thanks for the reply...
I have been through this link.
But my query is still unanswered
Session replication will happen when my web app is placed inside the all/deploy folder, but no load balance or failover is provided (we have to use an external loadbalancer for this).
Is there any specific reason why only session replication is provided in the -all config?
So the conclusion I draw is only session replication cannot be tested, always an external loadbalancer has to be used.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4083258#4083258
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4083258
Hello,
I migrated to seam 2.0 my project that was using 1.2.1 GA.
On the seam 1.2.1GA I had a custom TransactionalSeamPhaseListener on the faces-config.xml
| <!-- Seam transaction management -->
| <lifecycle>
| <phase-listener>br.com.projeta.util.MySeamPhaseListener</phase-listener>
| </lifecycle>
|
| public class MySeamPhaseListener extends TransactionalSeamPhaseListener {
|
| public MySeamPhaseListener() {
| super();
| }
|
| @Override
| public void handleTransactionsBeforePhase(PhaseEvent e) {
| super.handleTransactionsBeforePhase(e);
|
| // "my code"
|
| }
| }
|
Seam 2.0 doesn't have a Transactional Mannagement on the faces-config.xml.
What can I do to run "my code" on handleTransactionBeforePhase?
Thanks,
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4083250#4083250
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4083250