Re: Hex error code interpreter?

2024-04-29 Thread Charles Mills
l Message- >From: IBM Mainframe Discussion List On Behalf Of >Ramsey Hallman >Sent: Sunday, April 28, 2024 5:52 PM >To: IBM-MAIN@LISTSERV.UA.EDU >Subject: Re: Hex error code interpreter? > >Colin, MVS/Quickref definitely has the IBM z/OS Cryptographic Services System >SSL me

Re: Hex error code interpreter?

2024-04-28 Thread Phil Smith III
ave led me to the solution; Charles, however, did! What we really need is BPXMILLS, I guess... -Original Message- From: IBM Mainframe Discussion List On Behalf Of Ramsey Hallman Sent: Sunday, April 28, 2024 5:52 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Hex error code interpreter?

Re: Hex error code interpreter?

2024-04-28 Thread Ramsey Hallman
Colin, MVS/Quickref definitely has the IBM z/OS Cryptographic Services System SSL messages. If you have access to Quickref, simply leave the "0x" off of the message (as the codes are presented within the IBM documentation) and search for an item of 03353084: --

Re: Hex error code interpreter?

2024-04-27 Thread Phil Smith III
Thanks to all; BPXMTEXT is what I was looking for, though it didn't help in this case. -Original Message- From: Phil Smith III Sent: Friday, April 26, 2024 6:16 PM To: 'IBM Mainframe Discussion List' ; 'mvs...@vm.marist.edu' Subject: Hex error code interpreter? Did I dream it, or is

Re: Hex error code interpreter?

2024-04-27 Thread Colin Paice
See gsk_strerror() On Fri, 26 Apr 2024 at 23:16, Phil Smith III wrote: > Did I dream it, or is there some utility that can take an error such as > gsk_encrypt_tls13_record(): AES GCM Encryption failed: Error 0x03353084 > and in

Re: Hex error code interpreter?

2024-04-27 Thread David Geib
Here is the link (3,1) https://www.ibm.com/docs/en/zos/3.1.0?topic=errnojrs-description-location-information Reason codes are sometimes referred to as errnojrs or as errno2 values. The reason code is made up of 4 bytes in the following format: rrr is a halfword reason co

Re: Hex error code interpreter?

2024-04-26 Thread Eric Rossman
BPXMTEXT is for errno. The return value from gskit calls are not errno s. From: IBM Mainframe Discussion List on behalf of Sri Hari Kolusu Sent: Friday, April 26, 2024 8:38:28 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: [EXTERNAL] Re: Hex error code interpreter

Re: Hex error code interpreter?

2024-04-26 Thread Sri Hari Kolusu
Phil, You can use the command TSO EXEC 'SYS1.SBPXEXEC(BPXMTEXT)' 'your 8 digit hex code' or $ bpxmtext hexcode from shell to get the description of the errnox . TSO EXEC 'SYS1.SBPXEXEC(BPXMTEXT)' '0594003D' results in BPXFVLKP 09/23/23 JRDirNotFound: A directory in the pathname was not found A

Re: Hex error code interpreter?

2024-04-26 Thread Charles Mills
Well, any UNIX error code interpreter is perforce going to be somewhat UNIX-centric. strerror() I believe interprets errno values. This command interprets errnojr values, kind of analogous to reason codes for errno error codes. My V2R4 system does not have LOOKAT on it so I can't try it. I do

Re: Hex error code interpreter?

2024-04-26 Thread Paul Gilmartin
On Fri, 26 Apr 2024 18:09:50 -0500, Charles Mills wrote: >https://www.ibm.com/docs/en/zos-basic-skills?topic=messages-bpxmtext-zos-unix-reason-codes > UNIX-centric? As is SYSCALL STRERROR Is the network service LOOKAT current? Otherwise, there's ChicagoSoft. -- gil

Re: Hex error code interpreter?

2024-04-26 Thread Charles Mills
https://www.ibm.com/docs/en/zos-basic-skills?topic=messages-bpxmtext-zos-unix-reason-codes Although it is coming up with nonsense for your error code on my V2R4 system. I can try it on a V3R1 system if you really need. I also have code somewhere for calling the underlying service (not the shell