Tagged Questions
The jbossmq tag has no wiki summary.
8
votes
4answers
4k views
Reconnecting JMS listener to JBossMQ
We have a Java listener that reads text messages off of a queue in JBossMQ. If we have to reboot JBoss, the listener will not reconnect and start reading messages again. We just get messages in the ...
3
votes
1answer
1k views
How to connect JMS queues from JBOSS 4 and 5?
I have a server on which a Jboss 4.2.2 and a Jboss 5.1.0 runs. The problem is that a 3rd party is not able to upgrade its application to Jboss 5.1.0 in the near future, for us it is a simple matter. ...
2
votes
1answer
55 views
How to know if JBoss with preinstalled jboss MQ?
I have already configured jboss 4.2.3, but i need to use jboss-mq. Looked at the deplot dir of my default server instance and i didn't find jms dir in it. How can i know if this jboss comes with ...
2
votes
4answers
794 views
Can I use JBoss MQ on JBoss 5? If so, how?
I have an application that was written on JBoss 3.2.5 and I am tasked with migrating it to JBoss 5.
I am unable to deploy the application because it relies on JBoss MQ, which I read has been replaced ...
1
vote
0answers
54 views
Unable to proxy a JBossMQ queue in Spring
Spring JMS going against a JBoss 4.x JBossMQ queue (I know, old JBoss, JBossMQ superseded by JBoss Messaging, but I can't change the stack). Everything works when the Spring JMS configuration is ...
1
vote
1answer
96 views
JMS message to redelivery to queue
I am using Jboss MQ in my application.
I am trying to handle redelivered message to the JMS Queue.
Is there a way I can set some values in the original message I received in the consumer(First time I ...
1
vote
4answers
1k views
Using JMS or ThreadPool to send email messages
I will like to know:
I have a scenario. If a user adds a product to the system (I'm developing), there's a listener that sends a notification to the user's client base notifying of a new product ...
1
vote
3answers
1k views
clear jBoss DLQ
Does anyone know how to clear DeadLetterQueue from jBoss?
When i start jBoss, it is waiting 4 minutes at:
12:09:06,281 INFO [ConnectionFactoryBindingService] Bound ConnectionManager ...
1
vote
2answers
6k views
How to initialize ConnectionFactory for remote JMS queue when remote machine is not running?
Using JBoss 4.0.5, JBossMQ, and Spring 2.0.8, I am trying to configure Spring to instantiate beans which depend on a remote JMS Queue resource. All of the examples I've come across depend on using ...
0
votes
1answer
38 views
How do I increase the value of 'InProcessMessageCount' for jms queue in jboss?
I am using JMS based on Jboss 4.2.3 and jdk1.5.0_14. however the MDB pool is configured to maximum size 20, the maximum value of InProcessMessageCount is 15 only.
I did many reties to utilize the ...
0
votes
2answers
708 views
JMS message to remote server
I need to send a message to a remote server's queue (running "JBoss MQ") so that it can process the message and act on it.
Properties properties = new Properties();
...
0
votes
1answer
1k views
How can I test a JBossMQ JMS Queue with JMeter
I'd like to use JMeter test that I can send a message to a JBossMQ (JBoss 4.2.3 JMS Queue). If I get that far then I will be able to build some load and other tests.
JBoss is pretty much straight out ...
0
votes
2answers
2k views
How to resend a message from the JBoss 4.2.2 message queue after retry expired
Is there a way to resend expired messages in a JBoss 4.2.2 message queue? The issue is they exceeded their retry amounts, but now the problem is fixed, so is there a way to resend them?
In JBoss 3 ...
0
votes
3answers
2k views
How to configure startup sequence of JBoss services (JmsActivation)
When I deploy my application on JBoss 5 the EJBs are created before the QueueService is started. Creation of Message Driven beans now fails miserably because the queues are not yet available:
...
0
votes
1answer
610 views
JBoss 4.0.5 MDB Configuration
This one is beating me, and I have not been able to figure it out ... So here it goes.
I want to add a Message Drive Bean to my app which is packaged as a .ear file
Following the documentation I've ...