mqseries

Does IBM WebSphere MQ support a 64 bit client on windows?

Title says it all :) No, seriously, I'm porting a C++ 32 bit application to 64 bit on windows. The application is a client of IBM WebSphere MQ. It uses the MQ client API. Now, as the port progresses, I'm trying to find a 64 bit client. So far, no luck. Does anyone here happen to know if where I can find one, or, god forbid, confirm th...

Counting items of each priority level in an IBM MQ Series Queue

I have an IBM MQ series queue (running on Windows) containing many items of varying priority. I currently get a total depth count using mqQueue.CurrentDepth but I'd like to get a count of the number of items of each priority level within the queue. Any idea how to achieve this? ...

Websphere MQ message history

My application communicate with other system via IBM Websphere MQ. Sometime no message income to my queue but other system said They already sent to me. So I want to know how to keep history for all messages that income to my queue. ...

QueueConnectionFactory for MQSeries

Does anyone know if there is an implementation of javax.jms.QueueConnectionFactory for MQSeries and where to get it? I Googled it and searched IBM website but couldn't find anything. I don't want to retrieve the connection or factory from Websphere MQ via jndi, I need my own connection factory. ...

How to generate Websphere MQ script?

Many times I use 'mqsc' for create MQ queue manager from script files but I don't know how to generate script files. Thanks ...

Using LoadRunner to Test Server Processes

We currently use LoadRunner for performance testing our web apps, but we also have some server side processes we need to test. Background: We call these processes our "engines". One engine receives messages by polling an IBM WebSpere MQ queue for messages. It takes a message off the queue, processes it, and puts the result on an outbou...

How to set MQMD ApplicationID field via JMS API?

Hello, I'm using the JMS API to send messages to a Websphere MQ server. The application that pulls the messages i create want's me to set up the ApplicationID field in the MQMD structure to constant value. I could not find a way in the JMS API to access the MQMD structure The question: Is there a way doing this? if yes then how? If no, ...

How to write to MQMessage: multiple Write calls, or StringBuilder?

I'm brand new to WebSphere MQ. I'm using IBM's .NET classes (IBM.WMQ) to put a request message and then get a response message. The MQMessage object has a number of Writexxx methods for various data types. I need to write a variety of different data elements to the request message. My question is, should I call the appropriate Write meth...

On Windows - where is a mqji.properties for me to use?

My application is a stand alone Java app, that customers download, install and run. It uses MQ to communicate with a host, which has been working for years. Neither myself nor customers have anything MQ installed on their Windows machines; we include and use com.ibm.mq.jar to do the work. Apparently though, MQ needs a mqji.properties fi...

mqjbnd05 error when deploying app on websphere

I have a fresh install of Wesphere 6.1 Fixpack 23. I have an app deployed that requires an MQSeries JMS Queue. I set up an MQSeries provider-based request and reply queue and an MQSeries provider-based queue connection factory. When the deployed app tries to access the queue, I receive the following error. Any assistance would be appre...

Platform independent streams

We have two systems, one based on JMS and another based on MQ series. There is client A which send a message to a Topic configured in JMS. Another client B which receives this message through the Topic configured in MQ series. How can I make this communication happen? What are the considerations while building this bridge? If bridge is ...

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 a single call? What I would like is to find a solution that would incur zero additional latency on my database compared to sending the mess...

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 process the response in real time. But the response needs to stay in the queue so that a daily batch job, which also reads from the respons...

MQSeries API/Channel Exits

I am looking for sample code that will encrypt/decrypt the message while in the store. I will be using SSL for the transport. ...

Strange problem in SQL job and stored procedure

I have a stored procedure which will pick MQ files from receive location, process it and drop it in save location. Currently, this stored procedure is not working when I execute it manually. But files are picked up and saved in the save location automatically at a particular time of day daily. I don't know which stored procedure is cal...

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 queue. When an error is encountered during the processing of a message, I need to be able to configure a 'retry delay', so that mq series w...

How to find long running transactions in Websphere MQ Series?

In a J2EE environment the MQ server log shows the following: Process(954584.5) User(mqm) Program(amqzmuc0) AMQ7469: Transactions rolled back to release log space. .... While increasing the logfile size/space might be a temporary solution, the definitive solution must be to identify the culprit process/queue that causes this long transa...

IBM MQ Message Listener

Hi does anyone know how to create a message listener using IBM MQ? I know how to do it using the JMS spec but I am not sure how to do it for IBM MQ. Any links or pointers are greatly appreciated. ...

JMS equivalent in .Net

Hi All, I am trying to make an common abstract interface over the messaging infrastructure in our company. The design goal is to 2 fold. 1 is to hide the complexity of programming from the developers (i know its not very complex but still simplify it further) and 2 is to make the developers independent of the vendor specific messaging i...

IBM MQ series C++ to C# translation (transport type, heartbeat interval)

I have ported a few bits of code from C++ to C# - everything seems to be working, though I am not satisfied with my work since I have skipped over a few things which were in a C++ version - but I am not sure how to do that in a C# version. Basically the difference is that C++ and C# wrappers for IBM MQ series has a slightly different o...