Questions tagged [jms-queue]

A distribution mechanism for sending messages that are delivered to single consumer.

The use case for JMS Queue includes these considerations:

  1. A staging area that contains messages that have been sent and are waiting to be read. As the name queue suggests, the messages are delivered in the order sent. A message is removed from the queue once it has been read.
  2. Point-to-point solution based on Publisher/ Subscriber model.
  3. Only one consumer will get the message.
  4. The producer does not have to be running at the time the consumer consumes the message, nor does the consumer need to be running at the time the message is sent,
  5. Every message successfully processed is acknowledged by the consumer(you can configure it)
24 questions
0
votes
0 answers

Access Queue Problem from Weblogic to MQ via JMS. Completion Code '2', Reason '2085'

This is a very unusual problem that I am facing. I have an application running in Weblogic 12c. JMS foreign server and destinations are all created in weblogic. Also all the queues are defined in the Queue Manager. .Bindings file is also in place…
Som
  • 1,522
  • 1
  • 15
  • 48
0
votes
1 answer

Is it possible to configure a jmsTemplate Topic publisher and also a Queue message producer in the same springboot application

My application is using a Queue Originally, So I need to also Implement a Topic for the same application. I'm having difficulties setting up the configurations. please help guys
0
votes
1 answer

Exception in program to read JMS messages

I am using a Java code in Eclipse which is supposed to read JMS messages continuously from JMS queue on Jboss EAP 6.4. However, I am getting exception when I am running this program. I tried to do some troubleshooting but I am stuck now The code I…
Sourabh
  • 65
  • 1
  • 4
  • 11
0
votes
1 answer

Deferred consumption of message queue

Sorry this might sound naive to JMS gurus, but still. I have a requirement where a Spring based application is not able to connect synchronously to a SAP back-end (via their web-service interface) because the response from SAP is way too slow. We…
Dchucks
  • 1,189
  • 5
  • 22
  • 48
0
votes
1 answer

queue jms [wso2] message broker. callback service

Good morning, I am currently managing a queue jms [wso2] message broker. I have a java client who sends a message in the queue and a java ServletContextListener which activates every time a message is being delivered. And everything works ok. My…
Robertone
  • 7
  • 1
  • 4
0
votes
0 answers

ActiveMQ with subscriber JMS selector

I am trying to port a current RabbitMQ implementation over to ActiveMQ (for several reasons beyond my control). I'm trying to design the same flow of data as our current RabbitMQ design. In our current design we create a topic in RabbitMQ, then…
user313551
  • 355
  • 4
  • 15
0
votes
0 answers

SoapUI teststep or groovy can't consume big messages from Weblogic JMS queues through hermes

I have a testCase that has a mockresponse test step and the endpoint is reading from a weblogic jms queue jms://WLS::-::queue_SouthboundOutboundQueue . When the message from weblogic reaches '10000000' bytes this test step stops consuming the…
0
votes
0 answers

Benchmarking end - end architecture JMS queue to Hbase table

An End to End architecture is defined as follows: JMS queue->Kakfa cluster->spark streaming->Hbase table For Performance testing whole architecture, i can produce xmls through tools like Jmeter to JMS queue(will give response times of sending data…
-2
votes
2 answers

Can not create jms-queue in wildfly using jboss-cli

I started wildfly 24 server with standalone-full.xml profile, when i run following command in jboss-cli to create jms-queue i get following error [standalone@localhost:9990 /] jms-queue --profile=full add --queue-address=foo…
ram4sof
  • 365
  • 1
  • 4
  • 14
1
2