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.
2
votes
0answers
42 views
Is UTF to EBCDIC Conversion lossless?
We have a process which communicates with an external via MQ. The external system runs on a mainframe maching (IBM z/OS), while we run our process on a CentOS Linux platform. So far we never had any ...
0
votes
1answer
23 views
What is format of websphere MQ messages
After checking out mq series docs and white paper I have got the architecture for MQ messages ie Message descriptor (Message header)
Application data (Message body) and its details here
But I want to ...
0
votes
2answers
35 views
In MQ v6 api - how to stop MQQueue get() method?
I'm writing a simple Java application using MQ v6 API classes
Right now I'm able to browse a remote queue in while cycle. This program runs as windows service, and must be interrupted then the ...
0
votes
0answers
14 views
MDB on tomEE not picking information from tomee.xml to connect to websphere MQ
I have followed the steps in http://tomee.apache.org/tomee-and-webspheremq.html to integrate tomEE with websphere MQ. Now my problem is - if I specify the activation spec with all the queue connection ...
0
votes
3answers
29 views
Turning MQ log messages off in standalone application
SOLVED
Hej
I find the answer from IBM page:
IBM Page that solve the problem.
Hope it helps others with same problem.
Cheers
I wrote a simple method to a read messages from a MQ-Queue.
In a loop, I ...
0
votes
1answer
49 views
MQ Channel restart from code giving error
I have written a java code to start and stop an MQ channel. I have created a Server-connection channel on MQ for testing this code. But while executing the java code, both start and stop of the ...
0
votes
0answers
38 views
Configure SSL between Websphere App Server and Websphere MQ
I try connect to WMQ from a simple web service launched on WebSphere app server.
On WMQ I have channel with SSL. I use self-signed certificates for now.
In the case of glassfish I just add this cert ...
0
votes
0answers
28 views
Transaction mq +hibernate +oracle
we are developing an application with following characteristics:
standalone java application
Hibernate 4
WebSphere MQ v6.2
Oracle 11gR2
Interaction with MQ - only native mq api.
We need to ...
0
votes
2answers
25 views
LASTMOVE loop is not working
my xml looks like
- <ItemMaster>
- <ItemMasterHeader>
+ <ItemID>
+ <ItemStatus>
+ <UserArea>
- <Classification ...
0
votes
1answer
15 views
extract the xml values in loop
I have an xml like
<NS5:CAIAssembly>
<NS5:CAIComponent >
<NS5:CAICode>033144</NS5:CAICode>
<NS5:Quantity>1</NS5:Quantity>
...
-5
votes
0answers
35 views
IBM MQ .NET client [closed]
My C# client get an 2652 error:
Dequeued failed message. Propagating a message to the failure
terminalat
when it sends the message at the first times, but at second times everything is OK.
...
0
votes
0answers
22 views
Trouble connecting to IBM MQ on SSL
I'm having a problem setting SSL properties when connecting to an MQ.
This piece of code gives me the problem:
sslContext = SSLContext.getInstance("SSLv3");
trustMgrFactory = ...
0
votes
1answer
46 views
Can only connect to local MQ but not remote MQ
My problem is that I have two servers, one running MQ Server and one running service which will get MQ messages from the former. However easily it sounds, I cannot make the latter to connect to the ...
0
votes
1answer
18 views
Saving and restoring Queue Manager
I need to install a fresh copy of Websphere MQ Server on a Windows machine.However,the queue manager and other details need to be migrated from the Websphere MQ Server which is in place on another ...
0
votes
0answers
30 views
Disable errors when MQ server is down
When the IBM MQ server is down, the IBM MQ client throws lot of errors/exception in event log viewer.
How do i disable and not to write/throw errors in event log when MQ server is down?
It is thrown ...
-2
votes
1answer
30 views
How can I create procedure in ESQL for select data from database
I want enter BankID into XML file and if record is exist then have integer result and if doesn't found any record display another result
all of my code are in IBM web sphere message broker toolkit
...
0
votes
2answers
26 views
MQ Administration - Organizational Positioning
This is a discussion point I'd like to raise, regarding how folks position the administration of MQ. Is it seen as a resource/utility function, like networks, databases, or servers, or is it rather ...
0
votes
0answers
38 views
Unequal load on WebSphere clustered nodes
Our Java EE application runs in a clustered Websphere environment.
It picks message from MQ queue and processes it.
MQ on Node 1
Node 1 processed 10000 Transactions. Time per req was 30 millisec.
...
0
votes
2answers
49 views
How can implement a procedure in ESQL (an internal procedure) from Oracle database
I create a store procedure in Oracle db that insert Customer to my Table
this is my code :
CREATE OR REPLACE PROCEDURE THP.INSERT_CUSTOMER(
P_CUSTNAME IN VARCHAR2,
...
0
votes
1answer
38 views
Websphere MQ channel instance limit reached
I have been working on a Websphere MQ client application for a long time now and have had real problems throughout. The current - hopefully remaining - issue, is that we reach a channel limit set by ...
0
votes
3answers
51 views
How to reset a queue in IBM MQ?
How do i reset a queue? I want to clear all the messages in the queue, before i start to write a message into a queue. Is there any way i can reset without doing a get call?
MQQueueManager mqQMgr = ...
0
votes
0answers
30 views
Mocking IBM MQ methods and classes
How can i mock Get and Put methods of MQGetMessageOptions and MQPutMessageOptions for my unit testing ? Instead of hitting the actual queue, i want to mock those. I am using MQ.NET classes.
...
-1
votes
0answers
29 views
weblogic 12c + websphere mq 6
I'm can't find instruction for integration websphere mq 6 + weblogic 12 c by websphere native protocol (no jms!). It possible? Goal - deploy mdb in weblogic for getting message from websphere mq ...
0
votes
1answer
44 views
use nested Query in ESQL on Message Broker
I use this query to find my information in Oracle and it's correctly worked : SELECT A.ACTIONID,A.ACTIONNAME,A.ALLOWWRITE,A.ALLOWREAD FROM THP.TBACTION A WHERE A.ACTIONID IN ( SELECT AP.ACTIONID ...
0
votes
1answer
72 views
Validating message(s) in IBM MQ in import and export queues
I am trying to write 2 methods to test whether the sent message in one queue is received in another queue.
Send method - Sends message, for example - "Message 123" - to export queue with unique ...
0
votes
1answer
72 views
IBM MQ issue with 32-bit operating system(not able to connect)
There is an issue i am facing with 32-bit windows OS(windows xp) when connected with IBM MQ 7.1 client.
I am using 7.1.0.0 amqmdnet.dll (referenced from IBM\websphere\bin folder)
<Reference ...
1
vote
2answers
39 views
MQ Statistics Monitoring from C#/.NET
One of the vendors that we trade MQ data with has a monitor that shows the following:
I've written a C# monitor of my own that takes a snap shot of the queue depth every x minutes, but I would like ...
0
votes
1answer
23 views
MQPUT while using MQCB : MQRC_HCONN_ASYNC_ACTIVE
Our process needs to read messages from a topic on the local Q manager and also write to a different topic on the same local Q manager.
To read messages we have used MQCB. The messages reach the ...
0
votes
0answers
35 views
How do I name a permanent dynamic queue via JMS?
The documentation for Dynamic and Model queues describes "permanent dynamic queues", which can be created automatically based on a model queue, and need to be deleted explicitly (unlike temporary ...
0
votes
1answer
58 views
Messages getting overwritten on IBM MQ
I am sending 3 messages
Message1 - correlation id:5000
empty message (no body/message)-correlation id:5001
Message2 - correlation id:5002
My outbound queue processes like this
Message1 - ...
0
votes
1answer
101 views
Issue with debugging app using MQ-Websphere : amqmdnet.dll due to Version conflict
I have an App that references the IBM-WebSphereMQ dll "amqmdnet.dll".
I'm trying to debug this Console Application locally, for which I got the 64 bit dll from our OP's team.The server that the ...
1
vote
2answers
63 views
When should I reset my MQ channels?
I've been studying the vagaries of channel statuses, how they get to those states and what to do to get them stopped or started. I've got a pretty solid understanding now, but a colleague brought up ...
1
vote
1answer
62 views
IBM MQ client backward compatibility
I am using 7.5.0.0 amqmdnet.dll and building my .net app using MQ.NET classes, however after deployment, if the target machine has 7.1.0.0 MQ client installed, the app throws can't find assembly
...
1
vote
1answer
83 views
Two consumers on same Websphere MQ JMS Queue, both receiving same message
I am working with someone who is trying to achieve a load-balancing behavior using JMS Queues with IBM Websphere MQ. As such, they have multiple Camel JMS consumers configured to read from the same ...
0
votes
2answers
54 views
Connecting back automatically when there is a loss of connection
We have a request to connect automatically when there is a connection failure(so that messages are not lost/neither its correlation ids).
Automatic reconnect to messages/MQ Manager via IBM MQ 7x ...
0
votes
0answers
41 views
Transaction management with Springs+MQ+Oracle
I need to use Spring with WebSphere MQ and oracle Database.
My Application will be deployed in a server.My application has to insert to the database and put a message to the Queue.It should follow 2 ...
0
votes
1answer
68 views
Handling connections in IBM MQ client/server
I am new to IBM MQ,my queue manager uses tcp channel connection and the tcp connections go up extensively, this is the piece of code am using. How to handle connections within the channel in a ...
0
votes
1answer
71 views
Error when running .NET app from AutoSys
I have a .NET console application that runs on a Windows Server 2008 where AutoSys and WebSphere MQ are installed (The application is used to send messages to WebSphere MQ).
I'm trying to set up an ...
2
votes
2answers
121 views
MQRC_NOT_AUTHORIZED error while connecting to Websphere MQ 7.1
I am "very" new to IBM Websphere Mq, I'll try to give as much details as possible.
I've got Websphere MQ 7.1 installed on Windows server 2003 running on Vmware Workstation. The Host is running ...
0
votes
0answers
39 views
Mdb Glasswish Websphere MQ
I'm new in MDB and EE. Please tell me there is i'm wrong.
My app must interaction with Websphere MQ (wait a messaege in queue, do something and reply).
I'm using NetBeans 7.3 ,GlassFish 3.1, Websphere ...
0
votes
0answers
46 views
How send message to Websphere mq in DIME format
Hiello!
I'm writing a simple standalone application on java for sending message (large XML) in Websphere MQ v6.2. I'm using MQConnectionFactory from com.ibm.mq.jms package, javax.jms.Session, ...
0
votes
0answers
31 views
XML message passing from Hermes to WebsphereMQ
I am new to performance testing and quite frustrated as i tried a lot but I am nowhere near my target .
Please help me how to publish XML message from hermesJMS to WMQ.
I already configured herems ...
1
vote
1answer
100 views
Doesn't continuously read messages from IBM MQ Queue
When i have 2000 messages in an import queue, when i read it through get like this
MQQueue mqQueue = null;
MQQueueManager mqQMgr=null;
try
{
//Create connection to queue manager
mqQMgr = new ...
-1
votes
1answer
78 views
How can i change JMS_IBM_MQMD_Format: MQHRF2 to JMS_IBM_MQMD_Format: MQSTR?
How can i change JMS_IBM_MQMD_Format: MQHRF2 to JMS_IBM_MQMD_Format: MQSTR in WebsphereMQ Message?
I need JMS_IBM_MQMD_Format: MQSTR
i got output like:
JMSMessage class: jms_text
JMSType: ...
1
vote
2answers
65 views
How can i set MQMD message context in client WebsphereMQ?
Where can i set MQMD message context in client WebsphereMQ?
MQQueueConnectionFactory mqConnectionFactory = new MQQueueConnectionFactory();
...
0
votes
0answers
40 views
Coded character set id in MQ.(gettting the default value from queue manager)
My queue manager is showing coded character set id as 819 when i look via IBM MQ explorer(via properties), however when i send a message, it comes back as 437(thro' MQ.NET).
How do i get the value ...
0
votes
1answer
42 views
compiling amqsput0.c [MQ]
I'm new to MQ. I'm trying to compile amqsget0.c file for testing purpose with slight modification.
But whenever it try to connect to the Queue, it returns with an error
<02:17:16>Successfully ...
0
votes
1answer
73 views
Accessing remote MQ server from MQ.NET
How do i access the remote server of queue manager from my MQ.NET?
i.e. If the queue manager is IBM MQ 7x, i would like to enable auto reconnect, if not no auto reconnect. Like, is there any ...
0
votes
1answer
25 views
Updating deprecated WAS-MQ code
I am working on migration of a WAS 6.1 based application to WAS 7.0
I found below two statements
com.ibm.mq.MQEnvironment.securityExit = null; // 1
and
MQQueueConnectionFactory factory = new ...
2
votes
1answer
81 views
Websphere MQ server configuration
somebody can help me in configuring Websphere MQ Server in WAS 8.5?I got the below error while creating the WAS MQ Server.
Error: WebSphere MQ server MQSERVER connection test failed for WebSphere ...
