Author |
Message |
Topic: How to connect to two QMs which support different ccsid? |
Jerry789
Replies: 2 Views: 17911
|
Forum: IBM MQ API Support Posted: Wed Feb 12, 2020 6:24 am Subject: How to connect to two QMs which support different ccsid? |
Hello,
For .NET apps I've been always specifying the CCSID using environmental variable
Environment.SetEnvironmentVariable("MQCCSID", "437")
However now I need to conn ... |
Topic: PowerShell error |
Jerry789
Replies: 3 Views: 4969
|
Forum: General IBM MQ Support Posted: Tue Jan 09, 2018 7:17 am Subject: PowerShell error |
Getting this Index and count must refer to a location within the buffer
The only reason I re-open'd this thread was that I came to this by chance when googling for it. |
Topic: Powershell for IBM MQ |
Jerry789
Replies: 9 Views: 14536
|
Forum: General IBM MQ Support Posted: Tue Jan 09, 2018 5:48 am Subject: Powershell for IBM MQ |
I'm getting the same error using these commands
$qmconndef = New-WMQQmgrConnDef -Name foo -Hostname bar -Port 1414 -Channel baz
$qm = Get-WMQQueueManager -Connections $qmconndef
Get-WMQQueue -Q ... |
Topic: User API exit alternative for z/OS? |
Jerry789
Replies: 15 Views: 47210
|
Forum: User Exits Posted: Sat Dec 17, 2016 10:49 am Subject: User API exit alternative for z/OS? |
ok, couldn't an channel exit or api crossing exit be used for this task? These are probably supported on z/OS....
I don't have any experience with these, just thinking loud. |
Topic: User API exit alternative for z/OS? |
Jerry789
Replies: 15 Views: 47210
|
Forum: User Exits Posted: Sat Dec 17, 2016 9:59 am Subject: User API exit alternative for z/OS? |
re: distributed queue manager, if I take it, this would mean running another queue manager on a supported platform, right?
Well, that looks like a last resort workaround. Thanks for the idea, I was ... |
Topic: User API exit alternative for z/OS? |
Jerry789
Replies: 15 Views: 47210
|
Forum: User Exits Posted: Sat Dec 17, 2016 5:30 am Subject: User API exit alternative for z/OS? |
well, there are 3 parties, existing producer (app A), existing consumer (app B) both A and B could not be altered. The task is (based on some other external condition) to alter the message the B gets. ... |
Topic: User API exit alternative for z/OS? |
Jerry789
Replies: 15 Views: 47210
|
Forum: User Exits Posted: Fri Dec 16, 2016 3:34 pm Subject: User API exit alternative for z/OS? |
Per documentation
API exits let you write code that changes the behavior of IBM® MQ API calls, such as MQPUT and MQGET, and then insert that code immediately before or immediately after those calls. ... |
Topic: User API exit alternative for z/OS? |
Jerry789
Replies: 15 Views: 47210
|
Forum: User Exits Posted: Fri Dec 16, 2016 1:50 pm Subject: User API exit alternative for z/OS? |
You're correct the exit is looking at the payload. I forgot to mention that... |
Topic: User API exit alternative for z/OS? |
Jerry789
Replies: 15 Views: 47210
|
Forum: User Exits Posted: Fri Dec 16, 2016 12:03 pm Subject: User API exit alternative for z/OS? |
well disabling the queue is not an option (in our case) since the external app is putting another message into the queue (instead the original one). Anyway I'm aware that the productivity of developin ... |
Topic: User API exit alternative for z/OS? |
Jerry789
Replies: 15 Views: 47210
|
Forum: User Exits Posted: Fri Dec 16, 2016 11:06 am Subject: User API exit alternative for z/OS? |
Well, I understand your point and the reason for writing such (existing) user api exit were really carefully evaluated. We wanted to dynamically change the behavior (hence the tcp communication to som ... |
Topic: User API exit alternative for z/OS? |
Jerry789
Replies: 15 Views: 47210
|
Forum: User Exits Posted: Fri Dec 16, 2016 8:54 am Subject: User API exit alternative for z/OS? |
Hello,
I had succussfully created a User API exit to intercept MQPUT calls. Everything worked like a charm until I got a new requirment to support the same functionality on z/OS. The docs made me ner ... |