[jboss-user] [Messaging, JMS & JBossMQ] - Dead letter queues

2006-12-29 Thread tobinibot
I am using JBoss 4.0.5 with ActiveMQ 4.1.0 as my JMS provider. I have an MDB set up, reading from an ActiveMQ queue, and am using normal container managed transactions (with XA). When the transaction fails, the message is correctly put back on the queue. From the logs, I can tell that my mess

[jboss-user] [JBossWS] - Re: java.lang.UnsupportedOperationException when connecting

2006-12-04 Thread tobinibot
Couple more details. I'm working with 2 other guys on a project. I wrote a basic web service and deploying on my machine. All 3 of us can successfully hit my web service. I then checked the web service into source control, and had the other 2 guys check it out. On one of these guy's compute

[jboss-user] [JBossWS] - Re: java.lang.UnsupportedOperationException when connecting

2006-12-04 Thread tobinibot
Steven, I don't know about sklerche, but I am using 1.5. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990985#3990985 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3990985 __

[jboss-user] [JBossWS] - Re: java.lang.UnsupportedOperationException when connecting

2006-12-01 Thread tobinibot
Hi sklerche. I am having the same problem. Were you able to find a solution? Tobin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990568#3990568 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3990568 _

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-30 Thread tobinibot
It looks like ActiveMQ is able to construct destinations on the fly through the resource adapter. I changed my destination to "queue/randomQueue" (which does not exists anywhere in any system). My bean deployed successfully, and when I sent a message to that queue (using a small JMS client out

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-30 Thread tobinibot
THAT WORKED!!! Thank you so much for your help, you have no idea how desperate we were getting. If anyone else is still reading along, here is what my final MDB looks like: package ejb; | | import javax.ejb.ActivationConfigProperty; | import javax.ejb.MessageDriven; | import javax.jms.M

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-30 Thread tobinibot
Ok, well I was able to get the sample project (EJB2) up and running successfully. Now to try and get it running with EJB3. Using the same JBoss setup, I created a new EJB3 project and one MDB: package ejb; | | import javax.ejb.ActivationConfigProperty; | import javax.ejb.MessageDriven;

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
One thing I noticed was that the examples all seem to be using EJB2. We're using EJB3, so I'll have to convert the examples, but I'm hoping that's a fairly trivial process. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989908#3989908 Reply to the post : h

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Yes, it deployed. anonymous wrote : 21:38:11,781 INFO [testQueue] Bound to JNDI name: queue/testQueue | 21:38:11,968 INFO [UILServerILService] JBossMQ UIL service available at : /0.0.0.0:8093 | 21:38:12,015 INFO [DLQ] Bound to JNDI name: queue/DLQ | 21:38:12,359 INFO [ConnectionFactory

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Got it. | | | activemq/QueueConnectionFactory | | | activemq-ra-4.0.2.rar | javax.jms.QueueConnectionFactory | JmsXARealm | | | | activemq/TopicConnectionFactory | | | activemq-ra-4.0.2

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Yes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989895#3989895 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3989895 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Yep, it's there. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989887#3989887 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3989887 ___ jboss-user mailing list jboss-user@lis

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Yep, it's there. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989885#3989885 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3989885 ___ jboss-user mailing list jboss-user@lis

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Ok, done (sorry it took a little while). The only thing that concerns me a little with this fresh install are the following log messages anonymous wrote : 20:08:01,109 INFO [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=.../deploy/management/console-mgr.sar/web-console.war/ | 20:08:0

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Whew, thank you. :) Yes, you are correct. Right now, I have a simple MDB that is called when a message hits a queue. It is working using the queues built in to JBoss, but now that my bean is working, I would like to migrate to ActiveMQ as my queue provider. View the original post : http://w

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Ok, I'm new to all this, so some of your questions went over my head. I mapped queuehost to 127.0.0.1 in my hosts file, so the host is certainly up. I'm using ActiveMQ as my JMS provider, and it is up and running (on port 61616, jmx on port 1199). I'm not sure what you mean by JNDIView. How do

[jboss-user] [Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Thanks for the quick reply. I have already tried that, and it was giving me troubles, but maybe I did something wrong. I had added this to the jms-ds.xml | QueuehostJMSProvider | org.jboss.jms.jndi.JNDIProviderAdapter | UIL2XAConnectionFactory | UIL2XAConnectionFactory

[jboss-user] [Messaging, JMS & JBossMQ] - connectionFactoryJndiName config property

2006-11-29 Thread tobinibot
Does JBoss support the ActivationConfigProperty connectionFactoryJndiName? @MessageDriven( | mappedName = "jms/NewMessage", | activationConfig = { | @ActivationConfigProperty(propertyName = "connectionFactoryJndiName", propertyValue = "activemq/QueueConnectionFactory"), | @Act

[jboss-user] [JBoss and NetBeans] - Re: JBOSS 4.0.5 GA and netbeans problem starting server

2006-11-22 Thread tobinibot
Here is a workaround, from that ticket. It worked for me. anonymous wrote : I was experiencing what may be the same problem. I compared the two installers | and found that the old installer leaves all four checkboxes on the JMX Security | screen unchecked by default. The new web installer