Author |
Message |
Topic: Multiple certificates in client JKS - Java |
zbyszanna
Replies: 2 Views: 7223
|
Forum: General Discussion Posted: Tue Nov 13, 2018 9:30 am Subject: Multiple certificates in client JKS - Java |
Hi,
we have a testing application that allows us to impersonate other applications. Our applications connect to various qmgrs using dedicated channels (with dedicated SSL certificates) and so this te ... |
Topic: Pub/Sub - Pub set new MsgId |
zbyszanna
Replies: 19 Views: 27151
|
Forum: General IBM MQ Support Posted: Wed Dec 20, 2017 5:19 am Subject: Pub/Sub - Pub set new MsgId |
Why don't you have a look at . Its whole purpose is to clone a message which includes MsgId.
We have our in house solution for this case, but it requires an active element to exist, and so we we ... |
Topic: Pub/Sub - Pub set new MsgId |
zbyszanna
Replies: 19 Views: 27151
|
Forum: General IBM MQ Support Posted: Thu Sep 28, 2017 3:50 am Subject: Pub/Sub - Pub set new MsgId |
Yes, it can be guaranteed. As I said before, this is by design. Only one application will reply, the other will just receive the copy of the message flow.
We don't want to use different methods of ... |
Topic: Pub/Sub - Pub set new MsgId |
zbyszanna
Replies: 19 Views: 27151
|
Forum: General IBM MQ Support Posted: Wed Sep 27, 2017 4:34 am Subject: Pub/Sub - Pub set new MsgId |
I don't see why we would have to use admin subs for the reply message. Could you please elaborate? How would it solve our problem?
Multiple replies are not a problem for us, as only one application ... |
Topic: Pub/Sub - Pub set new MsgId |
zbyszanna
Replies: 19 Views: 27151
|
Forum: General IBM MQ Support Posted: Wed Sep 27, 2017 2:22 am Subject: Pub/Sub - Pub set new MsgId |
PeterPotkay provided an excellent example of why this could be useful. This is exactly a scenario we are having. We have an existing queue setup and message flow and we want to duplicate this message ... |
Topic: Pub/Sub - Pub set new MsgId |
zbyszanna
Replies: 19 Views: 27151
|
Forum: General IBM MQ Support Posted: Tue Sep 26, 2017 8:21 am Subject: Pub/Sub - Pub set new MsgId |
Sorry for digging up such an old topic, but has anything change in this regard? |
Topic: RFH + MQCCSI_INHERIT + TOPIC = 2111 |
zbyszanna
Replies: 0 Views: 3505
|
Forum: General IBM MQ Support Posted: Fri Sep 01, 2017 3:50 am Subject: RFH + MQCCSI_INHERIT + TOPIC = 2111 |
Hi,
we have a setup where we send messages with RFH (1) and we use MQCCSID set to MQCCSI_INHERIT on RFH (CCS in MQMD is MQCCSI_Q_MGR). We send those messages via alias queue to a regular queue and we ... |
Topic: JMS_IBM_MQMD_PERSISTENCE doesn't work under XMS |
zbyszanna
Replies: 3 Views: 5801
|
Forum: General IBM MQ Support Posted: Tue Apr 19, 2016 1:28 am Subject: JMS_IBM_MQMD_PERSISTENCE doesn't work under XMS |
Thank you for the reply.
This is a pattern we use in the whole enterprise. We set persistence on the alias queue and it works in Java and C++, it just doesn't work under .NET XMS, so I don't think ... |
Topic: JMS_IBM_MQMD_PERSISTENCE doesn't work under XMS |
zbyszanna
Replies: 3 Views: 5801
|
Forum: General IBM MQ Support Posted: Mon Apr 18, 2016 5:08 am Subject: JMS_IBM_MQMD_PERSISTENCE doesn't work under XMS |
Hello,
I've got a simple windows XMS application sending messages with persistence set to queue default.
msg.SetIntProperty(XMSC.JMS_IBM_MQMD_PERSISTENCE, MQC.MQPER_PERSISTENCE_AS_Q_DEF);
usi ... |
Topic: DELIVERY_MODE_NONE as default in XMS 7.5.0.5 |
zbyszanna
Replies: 0 Views: 3110
|
Forum: General IBM MQ Support Posted: Wed Apr 13, 2016 8:00 am Subject: DELIVERY_MODE_NONE as default in XMS 7.5.0.5 |
Hi,
I have a simple app that creates a bytes message and then prints it's delivery mode.
AFAIR JMS specifies that default delivery mode is DELIVERY_MODE_PERSISTENT
and here it prints DELIVERY_MODE_ ... |
Topic: Updating entire EAR using JACL fails? |
zbyszanna
Replies: 1 Views: 36771
|
Forum: WebSphere Process Server (WID/WPS/WAS+) Posted: Mon Dec 28, 2015 4:15 am Subject: Updating entire EAR using JACL fails? |
Use \$ instead of $. The dollar sign is interpreted by your shell and $AdminApp is replaced with an empty string. |
Topic: Concurrent XMS listeners don't pick up messages |
zbyszanna
Replies: 10 Views: 10568
|
Forum: General IBM MQ Support Posted: Wed Apr 22, 2015 6:37 am Subject: Concurrent XMS listeners don't pick up messages |
We have this problem in a more complex scenario and I created this sample for the sake of finding the problem.
I posted the MQ and XMS versions in the first message. For your convenience my first t ... |
Topic: Concurrent XMS listeners don't pick up messages |
zbyszanna
Replies: 10 Views: 10568
|
Forum: General IBM MQ Support Posted: Wed Apr 22, 2015 1:21 am Subject: Concurrent XMS listeners don't pick up messages |
dis chs(...) gives 20 instances of the channel now.
Example channel status:
CHANNEL(CHANNEL1) CHLTYPE(SVRCONN)
BUFSRCVD(8) ... |
Topic: Concurrent XMS listeners don't pick up messages |
zbyszanna
Replies: 10 Views: 10568
|
Forum: General IBM MQ Support Posted: Wed Apr 22, 2015 12:52 am Subject: Concurrent XMS listeners don't pick up messages |
Thank you for your answer.
Why not have a single factory spawn a single connection per listener thread... ?
I just wanted to avoid any possible bottle neck. It's just for this example. Could ... |
Topic: Concurrent XMS listeners don't pick up messages |
zbyszanna
Replies: 10 Views: 10568
|
Forum: General IBM MQ Support Posted: Tue Apr 21, 2015 5:57 am Subject: Concurrent XMS listeners don't pick up messages |
I've created a simple test which aims to create 10 concurrent XMS listeners that will process 10 messages at once.
I create 10 connections and one session for each connection. Then on each session I ... |