Author |
Message |
Topic: MQRC 2080 and gibberish data when using MQ Explorer |
sumithar
Replies: 2 Views: 10868
|
Forum: Mainframe, CICS, TXSeries Posted: Thu Dec 10, 2020 8:05 am Subject: MQRC 2080 and gibberish data when using MQ Explorer |
Thanks for that explanation of CCSID and encoding!
So the crux of the matter is, if the RC of MQGET is not 0, then the retrieved message has no "sanctity". That makes a lot of sense.
In s ... |
Topic: MQRC 2080 and gibberish data when using MQ Explorer |
sumithar
Replies: 2 Views: 10868
|
Forum: Mainframe, CICS, TXSeries Posted: Wed Dec 09, 2020 1:48 pm Subject: MQRC 2080 and gibberish data when using MQ Explorer |
Hi
I am working with a Cobol batch program on zOS. I am testing what happens if the message length exceeds the buffer specified, i.e. if I get a RC 2080.
The queue is also on zOS.
In setting up ... |
Topic: Messages look different between MQ Explorer and on Mainframe |
sumithar
Replies: 8 Views: 24810
|
Forum: Mainframe, CICS, TXSeries Posted: Fri Apr 03, 2020 12:26 pm Subject: Messages look different between MQ Explorer and on Mainframe |
Hi everybody who responded thank you very much. After that Java developer made the fix as suggested by adding this line to the yaml script
queue: ‘queue: ///AUDIT_QUEUE?targetClient=1’
the mess ... |
Topic: Messages look different between MQ Explorer and on Mainframe |
sumithar
Replies: 8 Views: 24810
|
Forum: Mainframe, CICS, TXSeries Posted: Fri Apr 03, 2020 5:33 am Subject: Re: Messages look different between MQ Explorer and on Mainf |
Hi,
Firstly I am a Cobol dev on mainframe, so beg pardon if I don't sound knowledgeable.
No need to apologize. I got my start on big and reliable iron back when dinosaurs roamed the Earth.
Rece ... |
Topic: Messages look different between MQ Explorer and on Mainframe |
sumithar
Replies: 8 Views: 24810
|
Forum: Mainframe, CICS, TXSeries Posted: Fri Apr 03, 2020 4:59 am Subject: Messages look different between MQ Explorer and on Mainframe |
You could alter the queue definition to have PSPROP(NONE) so that any RFH2 header that the Java application adds, will not be delivered to any application that doesn't know how to handle it.
With r ... |
Topic: Messages look different between MQ Explorer and on Mainframe |
sumithar
Replies: 8 Views: 24810
|
Forum: Mainframe, CICS, TXSeries Posted: Fri Apr 03, 2020 4:50 am Subject: Messages look different between MQ Explorer and on Mainframe |
It seems that the Java application might be JMS and is sending an RFH header
The queue should be defined via the URN like
queue:///QNAME?client=1
Don't remember if it is client or clienttype... ... |
Topic: Messages look different between MQ Explorer and on Mainframe |
sumithar
Replies: 8 Views: 24810
|
Forum: Mainframe, CICS, TXSeries Posted: Thu Apr 02, 2020 10:08 am Subject: Messages look different between MQ Explorer and on Mainframe |
Hi,
Firstly I am a Cobol dev on mainframe, so beg pardon if I don't sound knowledgeable.
We have an auditing process where a number of different apps running on various platforms write to an MQ on ... |
Topic: Report on contents of a queue |
sumithar
Replies: 9 Views: 25792
|
Forum: Mainframe, CICS, TXSeries Posted: Mon Apr 15, 2019 12:41 pm Subject: Report on contents of a queue |
Hi Vitor. Thanks for the response. This is our application. A number of different processes running on various platforms drop audit messages during the course of the working day. An hourly batch progr ... |
Topic: Report on contents of a queue |
sumithar
Replies: 9 Views: 25792
|
Forum: Mainframe, CICS, TXSeries Posted: Fri Apr 12, 2019 2:52 pm Subject: Report on contents of a queue |
What DB2 load utility?
The IBM supplied load utility for DB2 on zOS. DSNUTILB |
Topic: Report on contents of a queue |
sumithar
Replies: 9 Views: 25792
|
Forum: Mainframe, CICS, TXSeries Posted: Fri Apr 12, 2019 2:50 pm Subject: Report on contents of a queue |
A number of different processes running on various platforms drop audit messages during the course of the working day. An hourly batch program gets the messages from the queue and loads them into a D ... |
Topic: Report on contents of a queue |
sumithar
Replies: 9 Views: 25792
|
Forum: Mainframe, CICS, TXSeries Posted: Fri Apr 12, 2019 11:02 am Subject: Report on contents of a queue |
We ran into a problem where some of the messages weren't able to be loaded due to some data type error
And the error message from the application didn't give any clues? Like the contents of the fai ... |
Topic: Report on contents of a queue |
sumithar
Replies: 9 Views: 25792
|
Forum: Mainframe, CICS, TXSeries Posted: Fri Apr 12, 2019 10:46 am Subject: Report on contents of a queue |
Hi Vitor. Thanks for the response. This is our application. A number of different processes running on various platforms drop audit messages during the course of the working day. An hourly batch progr ... |
Topic: Report on contents of a queue |
sumithar
Replies: 9 Views: 25792
|
Forum: Mainframe, CICS, TXSeries Posted: Fri Apr 12, 2019 7:28 am Subject: Report on contents of a queue |
Hi
Can I "export" or "report" on the contents of a queue on zOS before its contents are processed by my batch program?
I use the File Manager MQ feature to browse the contents o ... |
Topic: Where to specify server and port in amqsput from shell scrip |
sumithar
Replies: 4 Views: 16018
|
Forum: IBM MQ API Support Posted: Tue Apr 18, 2017 6:16 pm Subject: Where to specify server and port in amqsput from shell scrip |
You missed the fact where you have to use amqsputc for the client version.
Most client versions of the sample programs finish with the letter c.
Have fun
Oh really? I didn't know th ... |
Topic: Where to specify server and port in amqsput from shell scrip |
sumithar
Replies: 4 Views: 16018
|
Forum: IBM MQ API Support Posted: Tue Apr 18, 2017 12:34 pm Subject: Where to specify server and port in amqsput from shell scrip |
Hi- Am forced to get my feet with both shell scripting and mq at the same time.
I researched and found I could use amqsput command from the terminal or shell script to put a message on a queue.
This ... |