Questions tagged [jboss-messaging]

JBoss Messaging is the default JMS provider in JBoss Enterprise Application Platform and JBoss SOA Platform and JBoss Application Server version.

29 questions
6
votes
3 answers

What is the difference between jboss.jms and jboss.mq ?

What is the difference between the classes org.jboss.jms.server.destination.QueueService and org.jboss.mq.server.jmx.Queue?
IAdapter
  • 62,595
  • 73
  • 179
  • 242
5
votes
1 answer

How to order deployment of EJBs and JMS queue config in JBoss 5?

I'm using JBoss [EAP] 5.0.0.GA and I have an EAR which contains an EJB jar that contains some MDBs which depend on the existence of the JMS queues that they use. When I configured the queues in .../server/all/deploy/messaging/myqueues-service.xml…
mluisbrown
  • 14,448
  • 7
  • 58
  • 86
4
votes
1 answer

JMS bridge between HornetQ (Jboss EAP 6.3) and Jboss messaging (Jboss 4.2.2)

I try to setup JMS bridge between HornetQ built in Jboss EAP 6.3 and Jboss Messaging topic hosted on Jboss 4.2.2. The bridge is configured on the Jboss EAP 6.3 side - in standalone.xml and the aim is to listen to local HornetQ topic and publish to…
Vit Ias
  • 725
  • 4
  • 16
3
votes
2 answers

How many messages can be queued up in a JMS topic?

For my web app, I have a JMS topic which is receiving many messages at any given time. I have a MDB that processes the messages and updates the database based on the message data. I had been getting org.hibernate.exception.LockAcquisitionException…
BennyMcBenBen
  • 1,438
  • 2
  • 20
  • 37
3
votes
1 answer

Is it possible to use HornetQ as beans without JNDI (even if it is behind some abstraction)...?

My original problem is an attempt to discover and embed HornetQ with a bare minimum of dependencies. One item i would like to avoid is the need for JNDI. I believe it should be possible locate all the objects directly rather than doing the jndi…
mP.
  • 18,002
  • 10
  • 71
  • 105
3
votes
1 answer

Does JMS receiveNoWait() guarantee message delivery when messages are available?

Hello I am writing some kind of simple testing scenario where I execute the following source code: Here is my send() method: public void send() throws JMSException { Session session = null; MessageProducer producer = null; try { …
Altair
  • 168
  • 1
  • 9
3
votes
2 answers

JBoss 5.1.0 Adding Queues

How do I add custom queues to JBoss 5.1.0? I found a way to do it via the Admin Console however for some reason it keeps failing, also I need to be able to quickly and easily move my queues from one JBoss Server to another. So basically I was…
rafal
  • 31
  • 1
  • 3
3
votes
1 answer

JBoss 5 cluster as JMS server durable problem

I have an pair of JBoss 5.1 servers clustered together to act as an fault-tolerant JMS server. I configured them to use MySQL datastore (with clustering setting enabled in mysql-persistence-service.xml), I created an topic mbean in…
Chris
  • 830
  • 2
  • 9
  • 20
2
votes
1 answer

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 jboss-mq, and where i can find all needed files for my…
user253202
2
votes
2 answers

JBoss ESB Message is received by the wrong Service

I have several services configured in jboss-esb.xml, when I send message to one of the service, my message will be received by one of the configured services (even though the message is not meant for that service)! If I send the same message again,…
Rosdi Kasim
  • 24,267
  • 23
  • 130
  • 154
2
votes
2 answers

Jboss Messaging WorkerThread# what are these threads?

I am load testing a jboss messaging install with 5 producers producing 100,000 100k messages. I am seeing significant bottlenecking. When I monitor the profiler, I see there are 15 threads named WorkerThread#. These threads are allocated 100% with…
nsfyn55
  • 14,875
  • 8
  • 50
  • 77
2
votes
4 answers

Jboss Messaging JMS

I successfully managed to send the message to queue name ReceiverQueue on my localhost Jboss server, how can I retrieve message I sent to it or how do I check if there is any messages in the queue if any retrieve them. or can I get an explanation of…
Gandalf StormCrow
  • 25,788
  • 70
  • 174
  • 263
2
votes
0 answers

JBoss Messaging 1.4.3 Deadlock

I am running a JBoss 5.1.0.GA clustered setup with 4 nodes. This makes use of JBoss Messaging 1.4.3 to receive messages from other applications and process within deployed applications in these JBoss instances. I've run into an issue where the JBoss…
Justin Sweeney
  • 133
  • 1
  • 1
  • 7
1
vote
2 answers

Does JBoss Messaging support non-Java clients?

For enterprise integration projects, a non-Java access to message brokers like JJBoss Messaging can be very helpful. For the Apache ActiveMQ and the GlassFish Open Message Queue products there are many different client implementations available,…
mjn
  • 36,362
  • 28
  • 176
  • 378
1
vote
1 answer

JMS Connection/ConnectionFactory references with HornetQ

I'm working on an older application and upgrade it's JMS system from JBoss Messaging to HornetQ, in the process I've run into a few gotchas that seem to be related to how this application uses and manages JMS connections. This is my first large…
Michael
  • 3,498
  • 5
  • 27
  • 32
1
2