Tagged Questions
Please use the websphere-mq tag instead
4
votes
2answers
586 views
WebSphere MQ Low Latency Messaging - Does it have a JMS (or JMS like) API?
We are currently using IBM MQ via JMS, but seem to be pushing through more messages than it can handle - strangely, the problem seems to be intermittent.
The messages are prices and thus dont need to ...
3
votes
3answers
460 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
641 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
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
394 views
IBM WebSphere MQ V7 MQQueue setTargetClient MQJMS_CLIENT_NONJMS_MQ deprecated
Trying to migrate from IBM WebSphere MQ V6 to V7.
One of the line that we have is
((com.ibm.mq.jms.MQQueue) queue).setTargetClient(JMSC.MQJMS_CLIENT_NONJMS_MQ);
JMSC.MQJMS_CLIENT_NONJMS_MQ shows ...
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
3answers
2k views
.NET client connecting to IBM MQ over SSL
I got key files from our client where I need to use them to connect to MQ over SSL. The files we have got from client are:
xxx.crl
xxx.kdb
xxx.rdb
xxx.sth
xxx.tab
They said client channel ...
2
votes
3answers
2k views
Using JMS to connect to IBM MQ
I want to use JMS to connect to IBM MQ.
How do i specify the queuemanager, the channel and other properties ?
2
votes
1answer
414 views
How to connect to a queue manager with ssl enabled server connection channel when authentication is required
I am trying to write a java application connecting to server connection channel with SSL enabled.
So far, I have been successfully connected to the channel by setting authentication to 'optional'. ...
2
votes
2answers
198 views
Creating TemporaryQueues
I have tried to create and use a TemporaryQueue in JMS. My producer succeeds but my consumer fails at this like, with the following error. I understand that this question may require the full code, ...
1
vote
3answers
55 views
How to make an MQ app exe to run continously?
I have wrote an MQ app, which is exe, but it only runs for a single instance and terminates itself. The desired functionality is to have it running continuously and keep processing the data and once ...
1
vote
1answer
442 views
closing MQ connection
Good afternoon, I wrote a project to Get Park Queue Info from the IBM MQ, it has producing an error when attempting to close the connection though. It is written in java.
Under application in Event ...
1
vote
1answer
314 views
IBM MQ transmission queue exclusive lock
I have a WebSphere MQ Queue Manager with transmission queue defined and I'm using API to get some information about the queue. When trying to inquire the queue (using .NET interface, but I believe ...
1
vote
1answer
279 views
We use IBM MQ6.1. Can we send messages to Queue using multi threading?
We use IBM MQ6.1. And use IBM API to send Messages to Queue.
As we need to send huge number of messages, was wondering if we can use multithreading and send messages to the same Queue.
Any ...
1
vote
1answer
374 views
new MQConnectionFactory throwing null pointer in jboss?
I am trying to execute the following command
MQConnectionFactory connFactory = new MQConnectionFactory();
and i get a null pointer that i can't seem to track down, i have attached the stack trace, ...
1
vote
1answer
280 views
Load balancing the Client connections
We have 5000+ clients, 10 gateway servers and 6 backend servers. Both gateway and backend Servers are in same cluster. If v7.0.1 is used on clients and gaetway servers, is round robin load balancing ...
1
vote
1answer
581 views
JbossESB jmsProvider cannot convert IBMMQ JMS Message JMSTextMessage
I am trying to integrate IBMMQ v6.0.2 with jbossESB.
we have local Queue available on IBMMQ on one of our QA QUEUEMANAGER.
I am able to listen to the QUEUE using JMSprovider of jboss ESB. As soon as ...
1
vote
1answer
704 views
MQ Connection - 2009 error
am connectting the MQ with below code. I am able connected to MQ successfully. My case is i place the messages to MQ every 1 min once. After disconnecting the cable i get a ResonCode error but ...
1
vote
1answer
117 views
MQ window to Unix special chars
I am using .net client to post mesages to MQ server which is hosted on Unix. It is added some control character before the messages. Like below
**^CD**<request>
The Queue connection is ...
1
vote
2answers
4k views
Websphere MQ 7.0 + jars compatible with 5.3 and 6.0 MQSeries servers?
I tried connecting jms client with 5.3 / 6.0 MQseries client jars to 7.0+ server, but it threw follwoing exception
com.ibm.mq.MQException: MQJE001: Completion Code 2, Reason 2423
at ...
1
vote
2answers
991 views
how to check if there is any consumer to the queue on Ibm Mq
How can I check from IBM MQ UI that to a specific queue if there is any consumer present
1
vote
3answers
147 views
Calling same function until it connect to server
I am in the process of designing a system where i need to keep on trying to connect to MQ server unitl i get a connection.
By default if the MQ is not availlble it will thorugh exception. How can ...
1
vote
1answer
216 views
How to make multiple instances of RCVR, RQSTR and CLUSRCVR channels in WMQ?
This is a follow up on the question below, but it deserves another question.
...
1
vote
1answer
731 views
How can I read a IBM WebSphere MQ message of format type MQEVENT in c#
I can get the event messages from the queue. I get the message properties. I am pretty sure the MQEVENT type is in PCF format but I cannot seem to find any good documentation on how to take that ...
1
vote
1answer
735 views
IBM MQ JMS Message Listener
I want to use javax.jms.QueueConnectionFactory to connect to IBM MQ
Is it possible to specify the queue manager and channel manager while connecting ?
I want to avoid using ...
1
vote
3answers
4k views
Connect to ibm mq with jms . Specify the channel and queue manager
How do i specify which queue manager to connect to in my system properties.
Here is the code:
Properties properties = new Properties();
properties.setProperty("java.naming.factory.initial", ...
1
vote
1answer
198 views
Are server-conn and client-conn channels the only channels that could have more than one instances?
I cannot figure out a way to get other channel types, e.g. sender channel, to be multiple instances. There is nothing documented against this. I am assuming only the connection channels could have ...
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
1answer
781 views
Is IBM MQ V6.0 setting JMSXDeliveryCount property?
I need to implement handling of redelivery of JMS messages in the application that is deployed on the IBM-backed environment, so JMS provider is standalone MQ V6.0.
Do you know if it is setting ...
0
votes
1answer
26 views
IBM MQ - Moving messages between queues using Java MQ APIs
Is there a IBM MQ JAVA API to move messages from one queue to another?
I am able to browse messages from the queue and put messages as well using Java APis. But I want to move a message from one ...
0
votes
1answer
59 views
IBM MQ with JMS and .Net
Are the WCF / .Net demos provided with IBM MQ still applicable if you use JMS with IBM MQ? Or do I need to write directly to JMS from .Net? (Very ignorant here if you couldn't tell). If I have to ...
0
votes
1answer
54 views
How to fill ApplIdentityData in MQ message
I have a message queue and use it from java code via MQQueueConnectionFactory.
I have a userid/password and need to set ApplIdentityData field, how to do it correctly (via properties, something ...
0
votes
1answer
263 views
Why am I Recieving a JMSBytesMessage when im sending and OBject message using spring and MQ Queue
So I'm sending and object using spring and IBM MQ Queue:
public void sendObjectMessage(final Object message) {
// jmsTemplate.convertAndSend(message);
jmsTemplate.send(new MessageCreator()
...
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
0answers
313 views
Transaction Support JmsTemplate Springframework
I'm trying to implement Transaction Support to my program. I have a working code where that I read and write to queues of IBM MQ WebSphere. But every time I read the whole queue I change the Put Date ...
0
votes
1answer
196 views
Reusing IBM.WMQ.MQQueue object
We are using the .NET API to IBM's WebSphere MQ.
Creating the MQQueueManager object is clearly an expensive operation, and so we cache and reuse a pool of these objects.
Currently, for each ...