Tagged Questions
Please use websphere-mq tag instead
8
votes
1answer
194 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 ...
4
votes
5answers
481 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
426 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
657 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
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
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
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
577 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
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
5k 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 ...
2
votes
1answer
490 views
WebSphere MQ: How to issue MQSC Commands using the Java API?
I'm trying to write a small application which connects to a Queue Manager and issues some commands on it, in Java.
From what I have read in the documentation, I understand that one must issue ...
2
votes
2answers
168 views
IBM MQSeries ActiveX Write Message Error
I've a VB6 application with MQSeries Automation Classes for ActiveX. The problem is when i'm writing the message con the queue. I use this code :
This is how I open the connection and the relative ...
2
votes
1answer
231 views
WMQ special consideration for WAS clients?
We have a WMQ - WAS/JMS client setup through server connection channels where we are trying to put in security through user Ids.
Now, we set up a local user id on the MQ box, mquserid, and left the ...
2
votes
1answer
130 views
How to convert a MQseries reason code to string?
How do i convert/lookup a reason code of IBM Websphere MQseries to its explanation (for logging etc)?
2
votes
1answer
501 views
How do I move messages between queues in Websphere MQ 6
Is there a (Linux) command to move all messages from one queue in Websphere MQ 6 to another queue?
I have a queue that has a defined backout queue, but I want to know how to transfer all the messages ...
2
votes
2answers
435 views
How to monitor an existing queue from WebSphere MQ?
I have a .NET application that needs to monitor a queue in WebSphere MQ. I need to react to each message without impacting the current process. The client application can't explicity send me the same ...
2
votes
1answer
3k views
Getting error reason code 2059 on MQ client (C#) when reconnecting to QueueManager after awhile
I can't reconnect to MQQueueManager after a while as an exception (reason code 2059 - MQRC_Q_MGR_NOT_AVAILABLE) is thrown when I'm constructing new object of MQQueueManager. My client app is written ...
2
votes
3answers
3k views
WebSphere MQ .NET API
All,
Is there a WebSphere MQ .NET API I can download ?
I am basically trying to write a C# app that listens for messages in an MQ queue.
Thanks,
Marios
2
votes
1answer
484 views
Websphere MQ Authentication and Key Certificates
I would like to authenticate the user against the MQ Series before user places the Queue message in Queue manager. I am using the IBM MQ Series V7. I would like to know how does the authentication and ...
2
votes
1answer
1k views
SSIS and IBM MQ Series integration
I am in the process of exploring integration between SSIS and IBM MQ Series. Can some point me to some artical for integration.
2
votes
4answers
2k views
What are the minimum requirements for writing a Java client for MQSeries?
I need to write a simple MQSeries client in Java.
The client just has to connect to the queue and pull off the next message.
I have done this before a number of years ago and have all the sample ...
2
votes
2answers
964 views
JMS equivalent in .Net
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 ...
2
votes
3answers
2k views
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
2
votes
3answers
3k views
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 ...
1
vote
1answer
45 views
com.ibm.mq.MQException: MQJE001: Completion Code '2', Reason '2035'
I am building a Java application that should be able to connect to an IBM WebSphere MQ queue manager and I cannot understand why I keep getting this error.
I already gave administration privileges ...
1
vote
2answers
79 views
Is it possible to use built-in correlation when publishing message to MQ Topic?
I'm just little bit lost in usage of topics in WebSphere MQ 7. Suppose simple scenario:
I have a process publishing messages to a topic.
I have zero or more subscribers receiving the message.
Any ...
1
vote
0answers
107 views
Connecting to MQ using PHP/Linux
Is there anyone out there who successfully is using PHP/Linux to connect to MQ? For days I have desperately been trying to get this to work but to no avail. IF there's anyone out there who is doing ...
1
vote
1answer
97 views
Message Broker Node output terminal with multiple connections
What happens when you connect multiple connections to a single output terminal on a node.
I cannot find any IBM documentation on this but the toolkit does not stop me from doing it.
This is just ...
1
vote
1answer
55 views
What is a purpose of PutReplyMessage and PutReportMessage in MQQueue?
MQQueue class in both .NET and Java API for WebSphere MQ contains three similar methods:
PutForwardMessage
PutReplyMessage
PutReportMessage
I understand purpose of the first one because it takes ...
1
vote
2answers
384 views
Websphere MQ Client installation
I am working on a project where MQ client (Support PAC 7) is installed on one 64-bit Linux machine and it sends messages to server.
On client machine we are using 64-bit linux JDK 1.6.25
java ...
1
vote
1answer
180 views
Multiple web apps in tomcat connecting Websphere MQ
I am running two grails web applications in single instance of tomcat 7, both trying to connect to websphere MQ publishing and receiving messages. First one that gets loaded works well but second one ...
1
vote
1answer
167 views
IBM WebSphere MQ JMS Jar Files
I am using SAP PI to connect with IBM MQseries (v 5.3).
Whenever there is a n/w problem or any outage on WebSphere MQs, the SAP interfaces error out with the message "Completion Code 2, Reason 2161, ...
1
vote
2answers
673 views
MQ With WLS Foreign Server
I am facing two issues when i try to connect to MQ which is deployed on a Remote Server from Weblogic Server(WLS) by creating a Foreign Server.
1. When I try to connect to MQ Queuemanager in Bindings ...
1
vote
1answer
121 views
PutApplicationName versus PutApplName
Just wanted to know what is the difference between the two fields putApplicationName field which is a part of the MQMessage class and putApplName which is a part of MQMD class. When to choose what?
1
vote
2answers
913 views
get 2035 on connecting to the base queue
I am running a simple Java client to connect to a remote MQ queue.
When I run the Java code to read write messages with Alias queue name, it works fine.
When i try to run the code on the same queue ...
1
vote
2answers
736 views
jms message not moving of the queue in websphere
I have a message driven bean that throws exception under certain conditions. When it throws an exception the message is not processed and put back on the queue. From what I understand with MQ and WAS ...
1
vote
2answers
644 views
Creating IBM MQ queues from C# code
Is is possable to create and delete queues using the amqdnet wrapper, or some other API from c# code?
I'ld like to be able to create some queues as part of an automated test suite if required.
...
1
vote
4answers
5k views
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.
1
vote
4answers
5k views
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 ...
1
vote
2answers
2k views
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 ...
1
vote
1answer
642 views
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 ...
1
vote
2answers
1k views
QueueConnectionFactory for WebSphere MQ
Does anyone know if there is an implementation of javax.jms.QueueConnectionFactory for WebSphere MQ and where to get it? I Googled it and searched IBM website but couldn't find anything. I don't want ...
1
vote
2answers
775 views
Counting items of each priority level in an IBM MQ Series Queue
I have an IBM WebSphere MQ 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 ...
0
votes
1answer
86 views
How to use SetBytesProperty and GetBytesProperty in WebSphere MQ?
I have a problem with SetBytesProperty / GetBytesProperty methods pair on MQMessage class (I'm using WebSphere MQ Client 7.0.1.6). I can successfully send sbyte array in property to queue but once I ...
0
votes
2answers
221 views
How to set CCSID for MQQueueManager from code?
I have some strange problem. I think I followed documentation correctly but my code doesn't work. I have this very simple hard coded test (NUnit):
[TestFixture]
public class MQQueueTests {
...
0
votes
1answer
94 views
configure jndi.xml in serviceMix to work with MQseries
My j2EE app is currently running on ServiceMix. Now i want to add JMS to my app. The application should able to send/receive the JMS message to/from the queue that stays on MQSeries.
...
0
votes
1answer
292 views
WebSphere MQ message reader (from file)
I have a message dump (binary file) from the WebSphere MQ Broker. Is there any tool I can use to open it and read message metadata (Message Descriptor, Message Header) i.e. Version, Message ID, ...
0
votes
1answer
453 views
How to mock MQ-Series object MQQueueManager with MOQ for .NET?
I am trying to unit test the MQ-Series implementation of my project, and need to mock the connection to the MQ-Series server to test my implementation isolated and avoid sending messages/retrieving ...