Tagged Questions

WebSphere MQ is a message oriented middleware product from IBM. It provides a proprietary API as well as implementing the Java Message Service (JMS) API. WebSphere MQ was previously known as MQSeries prior to being re-branded into the WebSphere family of products.

learn more… | top users | synonyms

8
votes
1answer
195 views

Trying to connect to MQ using PHP; almost there

So I've spent the past few days trying to solve this that seems to have been forgotten since none of the two PECL extensions available (SAM and mqseries) have been updated for a long time. I've tried ...
6
votes
1answer
248 views

Renaming Queue in Websphere MQ

Can we rename a Queue without deleting and recreating it?
5
votes
2answers
111 views

How to implement Message Queuing Solution

I have a scenario where about 10 different messages will need to be enqueued and then dequeued / processed. One subscriber will need all 10 messages, but another will only need 8 of the 10 messages. ...
5
votes
3answers
733 views

JMS transport v/s MQ transport

I am using Oracle Service Bus(OSB) as the MOM, and the destination URI is a IBM MQ queue. I just want to know which would be the preferred transport. OSB provides 2 adapters for the same, JMS adapter ...
5
votes
1answer
658 views

C++ Client connecting to IBM MQ over SSL

I need to change the C++ code to connect with WebSphere MQ using Client Channel defnition table. There are about 5000+ MQ clients and 10 MQ Servers on Windows 2003 with v6.0. Please help me if any one ...
5
votes
4answers
908 views

Using Websphere MQ with JMS from a .NET application

I'm trying to send a message to a java server over a Websphere MQ which uses JMS as the transport protocol. I can happily drop messages on the MQ using the IBM supplied libraries, but the server ...
4
votes
5answers
493 views

How to use Java JMS with MQseries

I am trying to develop a JMS standalone application to read and write to a Queue on MQSeries. My boss asked me to use pure java JMS (not ibm.mq lib) to do that. Here is the information that need to ...
4
votes
3answers
649 views

java.lang.UnsatisfiedLinkError

i am trying to access MQ queues using JMS. i am getting the below java.lang.UnsatisfiedLinkError: no mqjbnd05 in java.library.path i am passing -Djava.library.path="C:\Program Files\IBM\WebSphere ...
4
votes
3answers
427 views

MQSeries and Delphi

Are there any (preferable free and open) components or examples out there for integrating to IBM MQSeries from Delphi? Edit Looks like IBM provide a unit ...
4
votes
3answers
1k views

Configuring a 'retry delay' in MQ Series

I'm hoping someone can help me - I'm using JBoss 5.1 and MQ Series 7 in an EJB / JMS based application. I have several message driven beans in my application, each listening on an MQ Series message ...
3
votes
1answer
164 views

IBM.XMS ExceptionListener not firing

I am using IBM.XMS 2.0.0.5 and MQ Client 7.0.1.5 and have created a connection, set the exception listener, started the connection and started listening for messages using a message listener. This ...
3
votes
2answers
335 views

Sending a message to SWIFT via WebSphere MQ using ASCII encoding

I'm trying to fix a problem with an application that sends a message to the SWIFT network. The application is a .NET application and it uses IBM's amdqmdnet.dll assembly to communicate with the ...
3
votes
1answer
204 views

JMS Topic vs Selector

JMS Topic and JMS Selector are quite different concept, yet they both can be used by a consumer to get only a subset of the messages. in a PubSub scenario, what are the pro’s and con`s of filtering ...
3
votes
3answers
463 views

.net using IBM MQ without full MQ client install

All documemtation and information shows that we have to have an MQ Series client installed on the machine where we want to use it. Does anyone know of a DLL (or whatever) that allows us to include MQ ...
3
votes
1answer
663 views

How do I create a TopicConnectionFactory for MQSeries in Spring?

I have read the article http://techtots.blogspot.com/2010/01/connecting-to-mq-using-spring-without.html about configuring QueueConnectionFactories and have that side of things working nicely. # MQ ...
3
votes
1answer
712 views

MQRC Resource problem in WebSphere MQ

This is in Cluster Environment. Queue Manager lost its identity in cluster and it is unable to connect to other servers. All channels to repository and others were retrying state. CPU usage is ...
3
votes
1answer
152 views

Where is a message under syncpoint control stored prior to COMMIT?

With WebSphere MQ, where is a message addressed to a remote queue manager and PUT under syncpoint control stored until MQCMIT is issued?
3
votes
2answers
1k views

Connecting to remote queue manager using C# and .Net

I wrote an application that connected to local queue manager using this function call: MQQueueManager mqQMgr = new MQQueueManager("QM_QueueManagerName"); Now I need to connect to remote queue ...
3
votes
1answer
645 views

Send to MQ from java always uses default installed mqm userid for IBM MQ version 6.0

Our code runs in weblogic and we MQ 6.0. No matter if I use the default createQueueConnection() or createQueueConnection("myuserid","mypassword") it always seems to use userid mqm. See code below. ...
3
votes
1answer
2k views

Accessing MQ with JMS

i am using MQ7 and trying to access a queue with JMS api's. Getting this error. Has anyone seen it before? How do i resolve this? TIA Exception in thread "main" ...
3
votes
2answers
1k views

IBM Mq Message Header

I am sending messages to a remote queue, to which I have no control. I send a xml file as message but when the application reads the message it gets a message header like ...
3
votes
1answer
262 views

Can I open a clustered MQ queue for writing in Perl?

If I have a Websphere MQ queue defined on another queue manager in the cluster, is there a way I can open it for writing using the Perl interface? The code below brings back mqrc 2085. $messageQ = ...
3
votes
2answers
3k views

Connecting to a Websphere MQ in Java with SSL/Keystore

I'd like to connect to a Websphere 6.0 MQ via Java. I have already working code for a "normal" queue, but now I need to access a new queue which is SSL encrypted (keystore). I have been sent a file ...
3
votes
3answers
1k views

How to connect to local MQseries queue using Python?

I am new to mqseries and I started with IBM WebSphere MQ curses. There are examples with MQ_APPLE and MQ_ORANGE queue managers. I have no problem with sending messages to local or remote queue with MQ ...
3
votes
1answer
578 views

IBM MQSeries Problem: remote host closes connection when writing message (error 10054)

I am trying to write to an IBM MQSeries host with: public void WriteMessage(string message) { queueMessage = new MQMessage(); queueMessage.WriteString(message); queueMessage.Format = ...
3
votes
1answer
481 views

How can I get an existing JMS queue?

I feel like this is probably a pretty simple question, but this is my first foray into JMS, so I am a little unsure. I am trying to write to an existing JMS queue (and then read from another queue), ...
3
votes
2answers
2k views

How can an IBM WebSphere MQ's Queue Manager's local queues be enumerated?

I'm trying to write a simple tool for monitoring the state of a Queue Manager. One of the things I'd like to monitor is the current queue depth of each queue. I haven't been able to find a way to ...
3
votes
4answers
6k views

How do I browse a Websphere MQ message without removing it?

I'm writing a .NET Windows Forms application that will post a message to a Websphere MQ queue and then poll a different queue for a response. If a response is returned, the application will partially ...
3
votes
2answers
1k views

WebSphere MQ/MQSeries - Possible to send a message to multiple queues with single call?

I'm queuing messages to a WebSphere MQ queue (NB: A point-to-point queue -- not a topic) using a stored procedure in my Oracle database. Is there a way to publish each message to multiple queues with ...
3
votes
3answers
2k views

What happens if a message is rolled back in MQ?

I receive a message from a WebSPhere MQ queue. I try to process and if i receive some exceptions i want to rollback the message to the MQ Queue. I have no problems in doing the same. What happens to ...
3
votes
5answers
3k views

IBM MQ for file transfer

We are facing a choice to use IBM MQ over SFTP for file transfer. I've heard advantages of such approach, but I've never see anyone actually using it for a large files. So main question: how well ...
2
votes
1answer
31 views

WebSphere Message Broker MQMD Report

When I set MQMD.Expiry and MQM.Report (= MQRO_EXPIRATION_WITH_FULL_DATA) in Message Broker, where do messages go if they expire? Should I catch them in the MQInput node? If so, how do I ...
2
votes
4answers
70 views

How well does WebSphere MQ / Message Broker perform under Linux?

My company is considering moving from Solaris to Linux, but some FUD has been raised concerning how well WebSphere MQ and Message Broker perform on RHEL. There are also concerns about support from ...
2
votes
1answer
32 views

Defining WebSphere MQ administrative subscriptions

We are using IBM's WebSphere MQ, and having issues creating administrative subscriptions via scripts. One of the params expects an existing model queue but for some reason it is missing from our ...
2
votes
2answers
133 views

Get queues depth from java code

Can anyone help in doing the code in java of getting the depth of the queues. We are having 4 queues in IBM WebSphere MQ and inside them there are messages. I want to write a jsp to read the queue ...
2
votes
1answer
34 views

How to set MQGetOptions if I do not want any conversion

I am using IBM Websphere MQ v6 and I am connecting to it using a Java EE program. I want to know how to set the MQ Get Options so that no conversion is done. Can I use the field MQFMT_NONE for ...
2
votes
2answers
103 views

Put message async on WebSphere MQ queue

I am trying to put persistent messages onto a WebSphere MQ queue, however these need to be async puts. The only way that I seem to be able to get async working is if the messages are non persistent ...
2
votes
1answer
82 views

The best way to check IBM WebSphere MQ 7.0 queue on incoming messages

I am novice in IBM WebSphere MQ and I would like to ask you about the best approach to solve the following task. I use WebSphere MQ 7.0 and I have implemented an java app to check MQ queue on ...
2
votes
1answer
86 views

is IBM MQ Message Segmentation possible using JMS?

Is it possible to implement message segmentation using JMS as it is in using Native IBM API as shown here. One posible solution I have read is message grouping for JMS. is anyone using this an ...
2
votes
1answer
216 views

alternative to HermesJMS tool for WebSphere MQ

I have been facing issues in pasting an XML message to a IBM WebSphere MQ queue via HermesJMS. During my search, I had also thought of finding out an alternative if any, which could help me out in ...
2
votes
1answer
53 views

Could not find SYSTEM.BROKER service with WebSphere MQ v7.0

I'm new trying to configure MQ service following this tutorial but when I tried to alter the service SYSTEM.BROKER it says that it cannot be found. What possibly am I doing wrong? I'm using Version ...
2
votes
1answer
91 views

WebSphere SIB vs MQ ? what is the best option to go for asynchronous messaging from within a J2EE application running on WebSphere?

Requirement :Need to Handle web service request asynchronously. My application is a EJB 3.0 Stateless Session Bean exposed as web service developed using RAD and deployed on a load balanced WebSphere ...
2
votes
1answer
179 views

Websphere MQ 7.0.1 C# XMS connection causing 10054 (X'2746') tcp Error

I have a simple program connecting to a remote queue manager which seems to work fine and I can send and receive messages. However I have noticed that with every connection I am getting errors in the ...
2
votes
1answer
154 views

Not seeing message properties that I set explicitly (Spring/JMS/MQ)

Two separate processes are communicating via JMS over MQ. The writer sets a string property: new MessageAction() { public void actOn(Message message) throws JMSException { ...
2
votes
2answers
103 views

Do selectively dequeued messages stay in FIFO order (MQ)?

Using JMS & WebSphere MQ, if I use a message selector to selectively dequeue, and there are several messages with the same selection criteria, am I guaranteed to dequeue the first message that ...
2
votes
2answers
329 views

What's the difference between ActivationSpec and ConnectionFactory?

My understanding is that: MDBs (Message Driven Beans) connect via Activation Specification. MDPs (Message Driven POJO) connect via Connection Factory. This diagram from IBM is helpful: To me, ...
2
votes
1answer
145 views

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 ...
2
votes
1answer
80 views

Websphre MQ identifying connected clients

I am using websphere mq and JMS API to connect to MQ.I am using message selector for connecting and grouping the messages. Actually my problem is that there are some cases where JMS client can ...
2
votes
2answers
133 views

What is Command level in MQ Series?

In Websphere MQ series , command level for a queue manager is 701. What does it actually specify ?
2
votes
1answer
310 views

An illegal attempt to commit a one phase capable resource with existing two phase capable resources

I have an MDB in WebSphere 6. The MessageListener is linked to a Tibco EMS queue. In the MDB I'm trying to write to a WebSphere MQ queue. I get the following error: WMSG0042I: MDB Listener LoanIQ ...

1 2 3 4 5 7