Questions tagged [jbossmq]

26 questions
0
votes
3 answers

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 they were just text files that you could move…
Yishai
  • 90,445
  • 31
  • 189
  • 263
0
votes
2 answers

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: 17:11:29,151 INFO [EJBContainer] STARTED EJB:…
Kees de Kooter
  • 7,078
  • 5
  • 38
  • 45
0
votes
1 answer

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 created a jboss.xml and a ejb-jar.xml, which I…
webclimber
  • 2,630
  • 4
  • 26
  • 36
0
votes
1 answer

java.lang.ClassNotFoundException: No ClassLoaders found for: > org.jboss.jms.client.JBossConnectionFactory

I am trying to configure jms setup between two servers. The sender is on (server A)jboss 5 and the receiver is on (server B)jboss 4(which is using remote queue from server A. When i try to run both on jboss 5 or jboss 4, it works. But when the…
Ashok
  • 1
  • 3
0
votes
0 answers

Spring Integration: jms.Connection.setExceptionListener()

i have only one jms listner but multiple queues.this is the right way of implementing jms JBOSS4.2 MQ? System.out.println("Lookup queue"); Queue queueForResponse = (Queue) context.lookup("/queue/ResponseProcessingQueue"); Queue queueForExcelDownload…
0
votes
1 answer

JBoss JMS storing queue files

I use both JBoss AS 4 (JBoss MQ) and JBoss AS 7 (Hornet Q). I would like to configure the place of storing the queue. In destination of JBoss AS 4 /jboss/server/default/deploy I have default-ds.xml which I believe is configuration of storing queue…
user3160441
  • 153
  • 2
  • 10
0
votes
2 answers

How to add new queues to JBoss A-MQ using the command line console interface?

I'm trying to add queues to a running JBoss A-MQ service. Currently I can do it manually via the Web interface, as shown below: But, I would like to use the A-MQ Command Console to do it: What would be the JBoss A-MQ Console command equivalent to…
E.Z.
  • 6,393
  • 11
  • 42
  • 69
0
votes
1 answer

Spring Batch partitioning -Queue configuration

We are trying to implement spring batch partitioning.I did an initial study and end up with following questions. What is the configuration difference between Master and slave nodes i.e difference in configuration xml of master and slave jobs ? How…
Dobby
  • 215
  • 8
  • 15
0
votes
2 answers

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(); properties.put(Context.INITIAL_CONTEXT_FACTORY,…
Attilah
  • 17,632
  • 38
  • 139
  • 202
0
votes
1 answer

How to get the underlying object from a SpyMessage in JBossMQ

I am trying to write a simple Java program that reads from JBossMQ's jms_messages table using JDBC. I am using JBoss 4.0.4.GA. I can get the as far as getting a SpyMessage, but how can I get the actual message content (which is an Object in the…
user265330
  • 2,533
  • 6
  • 31
  • 42
0
votes
1 answer

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 of the box and is a server called servername.…
user132262
  • 1,837
  • 4
  • 16
  • 17
1
2