[jboss-user] [JBoss Messaging] - Re: Opening a new JMS session for an already existing transa

2009-03-26 Thread olimo
The client is a webapp running on the server hosting JBM. We tried to add the aop libs inside the /lib of our server folder. Nothing better... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4221188#4221188 Reply to the post : http://www.jboss.org/index.h

[jboss-user] [JBoss Messaging] - Re: Opening a new JMS session for an already existing transa

2009-03-25 Thread olimo
May you please elaborate on the classpath error? It seems that the state of the connectionState of the clientConnectionDelegate of the XAConnection is null. connectionState does not appear to be serializable. Does that mean that the same XAConnection cannot be shared between the nodes? If it

[jboss-user] [JBoss Messaging] - Re: Opening a new JMS session for an already existing transa

2009-03-24 Thread olimo
Hello, thx for your answer, we finally had time to try a version using XA. We tried to share in cluster the XAConnection so that when a node fails the transaction can continue on the other nodes using this shared connection: | XASession session = mySharedXAConnection.createXASession(); |

[jboss-user] [JBoss Messaging] - Re: Making a Filtering Bridge in a JBM Cluster

2009-03-16 Thread olimo
ok thanks a lot for the hint View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4218214#4218214 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4218214 ___ jboss-user mailing list jb

[jboss-user] [JBoss Messaging] - Re: Making a Filtering Bridge in a JBM Cluster

2009-03-16 Thread olimo
Thanks but in fact I need a hook to process the messages (like a transformation for instance) - sorry if the term "filter" does not suit the need ... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4218147#4218147 Reply to the post : http://www.jboss.org/index

[jboss-user] [JBoss Messaging] - Re: Making a Filtering Bridge in a JBM Cluster

2009-03-13 Thread olimo
OK, in fact I have some specific questions that should help me to begin : I could not find if the JBM bridges can process some filters on the forwarded messages. Is it possible? If not I will certainly do the bridge job with an MDB and XA. In all cases, I worry about the failover management :

[jboss-user] [JBoss Messaging] - Making a Filtering Bridge in a JBM Cluster

2009-03-12 Thread olimo
Hello, I would like to forward messages on-the-fly from a local clustered queue A to another local clustered queue B after applying a set of filters. This process should occur on all the nodes of a JBM cluster. If filtering+forward does not complete, the message should be back on the queue

[jboss-user] [JBoss Messaging] - Opening a new JMS session for an already existing transactio

2009-03-04 Thread olimo
Hi, Is it possible to open a new JMS session for an existing transaction with JBM 1.4? I imagine that it is what happens when a connection generated by a ClusteredConnectionFactory manages the failover of a JBM cluster node, does it? Let me introduce the context of my question: We have a c