Questions tagged [mq]

The term 'mq' refers either to the general topic of message queuing or any of several implementations of messaging middleware with "MQ" in the name. For purposes of Stack Overflow, use the product-specific tags when appropriate. When the question does not refer to a specific product, it is probably better to use the tag [message-queue] or [jms] because of the association of the term 'mq' with specific well-known products.

The term 'mq' refers either to the general topic of message queuing or any of several implementations of messaging middleware with "MQ" in the name. For the purposes of Stack Overflow, use the product-specific tags when appropriate. When the question does not refer to a specific product, it is probably better to use the tag or because of the association of the term 'mq' with specific well-known products.

See also:






645 questions
3
votes
1 answer

Multi-tenancy in JMS

I have been looking for a multi-tenant JMS provider that supports complete isolation of clients and integrates with WSO2. I have scratched around with Apache activeMQ for the last couple of weeks and realized that there may not be any support for…
Sujith Babu
  • 339
  • 6
  • 19
3
votes
2 answers

Message peek in IBM MQ

In MSMQ there is a functionality that lets users to peek at a message without actually consuming it. i.e. I peek at the next message in a Queue based on MessageID. If I am not interested in the message I can put the message back into the Queue (i.e.…
user2595169
  • 147
  • 1
  • 14
3
votes
1 answer

Checking MQ authorities and MCAUSER in Linux

I want to check all the authorities and access levels of queues and channels in my MQ-manager and check if there is a client queue or channel with administrative access. In order to do that I used ./dmpmqaut command and I successfully dumped all the…
A23149577
  • 2,045
  • 2
  • 40
  • 74
3
votes
2 answers

Create a topic in IBM MQ in java program

I want to create a topic with name "manipulation" in my Java application, but I get this error: Exception in thread "main" com.ibm.mq.MQException: MQJE001: Completion Code '2', Reason '2085' My code is: MQTopic subscriber = new…
Arman
  • 1,019
  • 2
  • 14
  • 33
3
votes
3 answers

How do I achieve availability when processing events in-order?

Goal I want to implement resilient processing of events and still process them in the order in which they arrived. Description A listener task listens to events of many clients, wraps them in a message and puts them in a queue. Event handler tasks…
ytoledano
  • 3,003
  • 2
  • 24
  • 39
3
votes
1 answer

Connecting to IBM MQ over SSL via .net client

I am trying to connect to a MQ server queue via a .NET client. I need to use the certificate for secured communication. Here is the code that I have: MQEnvironment.SSLKeyRepository = "*SYSTEM"; MQEnvironment.ConnectionName =…
Kunal Nair
  • 93
  • 2
  • 8
3
votes
1 answer

Installing MQ Messenger

I have zero experience with Websphere MQ Messenger. I need to build a .NET application that will read from an 7.1 MQ Series queue, manipulate the message and write it to another queue. I want to try and build a POC to do this. Is it possible to…
Greg
  • 2,654
  • 3
  • 36
  • 59
3
votes
2 answers

JMS Set Reply To Queue Manager

I want to set the required queue manager when sending a JMS message. Currently I am able to set the destination queue in the JMSReplyTO method, but I don't know how to also specify the queue manager. TextMessage message =…
Shankar
  • 175
  • 2
  • 7
  • 17
3
votes
2 answers

Synchronous request-reply pattern in a Java EE container

I am looking to implement an synchronous request-reply pattern using JMS inside a Java EE container. The sequence would be something like this Browser makes a request to web application for data. This is a blocking request (say on thread T1). The…
Rocky
  • 365
  • 1
  • 5
  • 15
3
votes
2 answers

Message queue abstraction for Python?

There are many discussions on SO about database abstraction. I'm a bit surprised there aren't similar discussions about message queue abstraction. Rather than designing to a specific MQ implementation (RabbitMQ, IBM MQ Series, IronMQ etc.), we…
Chris Johnson
  • 20,650
  • 6
  • 81
  • 80
3
votes
2 answers

Migrating from IBM MQ to javax.jms.* (Weblogic)

I've been looking for days about how one could migrate from using IBM Websphere MQ to rather only using the QueueManager within Weblogic 10.3.x server. This would save cost of licenses for IBM MQ. The closest I came was finiding an external link…
HelpNeeded
  • 51
  • 4
3
votes
1 answer

Unable To Create More Than 5 Mqueues

I'm having a problem with creating mqueues, namely my system appears to block me from creating more than 5 mqueues, even though /proc/sys/fs/mqueue/queues_max is set to 256. I'm running Ubuntu 13.04 server on an a Q7 module system with a Atom E680T,…
Skid
  • 95
  • 6
3
votes
2 answers

MQ Cache? good or bad idea?

I am wondering if MQ can be used as a state cache for monitoring? And is this a good idea or not? In theory you can have many sources (monitoring agents) that detect problem states and distribute them to subscribers via an MQ system such as…
Peter Moore
  • 1,632
  • 1
  • 17
  • 31
3
votes
1 answer

Two consumers on same Websphere MQ JMS Queue, both receiving same message

I am working with someone who is trying to achieve a load-balancing behavior using JMS Queues with IBM Websphere MQ. As such, they have multiple Camel JMS consumers configured to read from the same Queue. Despite that this behavior is undefined…
mindcrime
  • 657
  • 8
  • 23
3
votes
1 answer

Java client can't receive message from Mosquitto on Android

My Os is Windows 7,32bit. I install mosquitto-1.1.2-install-win32.exe. I don't change the mosquitto.conf file,so no topic prefix setting. Use Mosquitto to subscribe topic like(the subscription window): mosquitto_sub.exe -q 2 -t mytopic OR…
cumtkml
  • 33
  • 6