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
5
votes
1 answer

How do I detect a connection break using MessageQueue

My application written in C# makes use of the MessageQueue class in .NET for communicating messages with another remote application and the MessageQueue should always be "connected" (heartbeat present) with the remote messageQueue under all…
Lopper
  • 3,499
  • 7
  • 38
  • 57
5
votes
2 answers

Multiple processes servicing a single subscription causes MQRC_SUBSCRIPTION_IN_USE

I have a TIBCO BusinessWorks process that is publishing to a JMS topic -- lets call it TOPIC.A -- there is one process that is subscribing to that topic with a name SUBSCRIBE.A. The problem I have is that the first server that starts listening to…
Joe Zitzelberger
  • 4,238
  • 2
  • 28
  • 42
5
votes
1 answer

Concern on the concept of syncpoint from WMQ

I'm kind of confused about the syncpoint from WebSphere MQ. According to the reference from the WMQ Infocenter, the syncpoint is defined as below: The decision to commit or back out the changes is taken, in the simplest case, at the end of a task.…
wing2ofsky
  • 926
  • 4
  • 27
  • 48
5
votes
1 answer

Connecting to a queue without specifying the queue manager name

I am new to MQ.. I have a requirement. Can I connect to a particular queue, using java, on a server without specifying the queue manager name? I have all the details like host name, port number, request, response queue name etc., Thanks
Ishu Gupta
  • 1,071
  • 1
  • 19
  • 43
5
votes
3 answers

when to use client connection channel in MQ?

i kind of don't understand when to use the MQ client connection channel. From my understanding, when client trying to connect MQ server, it can be completed by defining the channel object with server connection channel value directly in application…
wing2ofsky
  • 926
  • 4
  • 27
  • 48
4
votes
1 answer

What is MQSecurityExit in WebSphere MQ Java classes?

I am trying to find some documentation on what is MQSecurityExit and how do we actually implement it in Java. I just have a very little idea on this - like I believe it's for authenticating MQ client to MQ provider. But don't know how this fits in…
Rohit
  • 63
  • 1
  • 2
  • 4
4
votes
1 answer

Message Queues over asynchronous web services

I have used web services(WCF with asynchronous callback). Now I am learning Messaging Queues. When we can prefer a Message Queue over Web service For Example: If I implemented an Asynchronous web service(WCF with Async callback or Asynchronous REST…
Santosh
  • 41
  • 4
4
votes
1 answer

How to specify WebSphere MQ channel table location for .net web application using web.config

I've been going around in circles for a while on this one now. I'm trying to connect to a distributed queue manager using a supplied channel table file. I can get this to work if I specify the environmental variable MQCHLLIB and MQCHLTAB on my…
Matt
  • 51
  • 5
4
votes
2 answers

Mercurial Queues: Merging Patches from Multiple Repositories

I am using Mercurial Queues on a repository, and have placed those patches in a patch repository. Another contributor has cloned my patch queue and made changes of their own. I would now like to merge their changes in my local patch repository. …
J. Ryan Stinnett
  • 801
  • 8
  • 13
4
votes
1 answer

Websphere MQ Topic and SSL

I'm trying to understand how common is the usage of MQ Topics in the industry. And MQ with SSL? Thanks, Guy
Guy
  • 915
  • 2
  • 14
  • 27
4
votes
1 answer

How to set the username/password on Websphere MQ connection string from .Net / C#?

How to I specify the username and password in a wmq connection string? This is the sample connection string I'm working with. Uri sampleAddress = new Uri("wmq://localhost:1414/msg/queue/Q1?connectQueueManager=QM1&replyTo=Q2"); How do I put…
Paul Fryer
  • 9,268
  • 14
  • 61
  • 93
4
votes
1 answer

Procedure to migrate from IBM MQ to ActiveMQ

I just need to know some basic information or the procedure that is followed when migrating from IBM MQ server to ActiveMQ. We are planning to migrate our messaging systems from IBM MQ to Active MQ. To be specific the migration is from MQ V7.0 to…
Ganesh G
  • 93
  • 1
  • 9
4
votes
1 answer

Oracle table acting like a queue

We have a very high concurrent application in which some keys to be processed are constantly written into an Oracle 11g table together with their processing priority. There is a primary key (ID field) on that table coming from a sequence. There is a…
Julian
  • 3,678
  • 7
  • 40
  • 72
4
votes
1 answer

Starting multiple threads in a for loop as no effect

I'm trying to read off messages from a websphere mq queue and dump it in another queue. Below is the code i have to do it private void transferMessages() { MQQueueManager sqmgr = connectToQueueManager(S_SERVER_NAME, S_QMGR_NAME, S_PORT_NUMBER,…
4
votes
1 answer

GCM XMPP CCS vs MQTT

We have a requirement forMachine to Machine communication via our servers. We initially planned to use MQTT+Rabbit MQ adapter to queue up published messages from clients, process the messages in server and publish it back to other set of…
Thiyaga B
  • 971
  • 1
  • 9
  • 26
1 2
3
42 43