[jboss-user] [Messaging, JMS & JBossMQ] - Re: Multiple Destination Mgr and Pesistence Managers

2007-04-11 Thread Vincent Tran
I am having some difficulties regarding this as well. Basically now that I have my own Invoker, I need to add a new InvocationLayer to jvm-il-service.xml to call my Invoker. I believe this means I need to create my own ConnectionFactory and XAConnectionFactory that the new InvocationLayer is bo

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Multiple persistence strategies in jbossMQ

2007-04-16 Thread Vincent Tran
Is it possible to store each queue's persistence in a separate database? That is what I am having trouble trying to figure out for a long time. Eg. I have QueueA, and QueueB, and I want QueueA's messages to be persisted to DatabaseA on Oracle, and I want QueueB's messages to be persisted to Data

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Multiple Destination Mgr and Pesistence Managers

2007-04-16 Thread Vincent Tran
I figured it out. I was right, you do need to create your own ConnectionFactory. Example on how: UserTopicConnectionFactory UserConnectionFactory java:/UserJmsXA jboss:service=Naming After ward, you should look in jms-ds.xml and copy the mbeans in

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Multiple Destination Mgr and Pesistence Managers

2007-04-16 Thread Vincent Tran
Here is the code, before the sample code didn't show properly. | |UserTopicConnectionFactory |UserConnectionFactory |java:/UserJmsXA |jboss:service=Naming | View the original post : http://www.jboss.com/index.html?module=bb&op=view

[jboss-user] [Messaging, JMS & JBossMQ] - extract sql statements (sqlproperties) to a class file?

2007-04-20 Thread Vincent Tran
I was wondering how (if it is possible) to extract the sql statements (INSERTS UPDATES DELETES ETC) from the *jdbc2-services.xml files to a class file. Thanks, Vincent View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039318#4039318 Reply to the post : http://

[jboss-user] [Messaging, JMS & JBossMQ] - confirming that referential integrity is not possible.

2007-04-20 Thread Vincent Tran
The DBA asked me to put referential integrity onto the JBossMQ tables. >From what I have learned it is not possible because: JBossMQ inserts/updates/etc to the database Asynchronously. It would involve knowing the implementation of JBossMQ, and the order it puts data into the tables/etc. I'm tr

[jboss-user] [Messaging, JMS & JBossMQ] - Re: confirming that referential integrity is not possible.

2007-04-20 Thread Vincent Tran
Second reason is that it adds overhead and decreases performance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039347#4039347 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039347 _

[jboss-user] [Messaging, JMS & JBossMQ] - p2p queue client without JNDI lookup

2007-04-26 Thread Vincent Tran
Is it possible to write to a queue without a JNDI lookup? Currently I have a UIL2 invocation layer service. Using this I can use SpyConnectionFactory to get the QueueConnectionFactory, and the QueueConnection object. However I don't have InitialContext to get the Queue object. Without the Queue

[jboss-user] [Messaging, JMS & JBossMQ] - Re: p2p queue client without JNDI lookup

2007-04-27 Thread Vincent Tran
I figured it out. You can call QueueSession's createQueue object, however you have to pass just the queue name, not prefixed with queue/... ie queueSession.createQueue("blahqueue"); not queueSession.createQueue("queue/blahqueue"); View the original post : http://www.jboss.com/index.html?mod