Re: Creating a qr code using OGL

2023-06-20 Thread Gadi Ben-Avi
Hi Everyone, With the help of IBM, I was shows more up to date documentation of the BARCODE keywords the control the creation of QRCODEs. I ended up with this code, that creates a correct QRCODE: DEFINE QR BARCODE QRCODE 2 HEIGHT 15 MM RATIO 1.01; POSITION 1 IN 1 IN; PLACE

Re: z/OSMF

2023-06-20 Thread Brian Westerman
After a couple years of use, I feel I'm pretty safe saying that, to me, z/OSMF appears to be a poorly designed and very badly programmed product. Most vendors would have ditched the product and stopped promoting it by now, but IBM probably has grand "plans" that won't really come into fruition

Re: GRS setup for MONOPLEX to SYSPLEX

2023-06-20 Thread Brian Westerman
Yes, from the z13 up you are supposed to be able to create the connections. I have not tried it, but it seems to be outlined int he manuals. Brian -- For IBM-MAIN subscribe / signoff / archive access instructions, send email

Re: Datacom/Ad upgrade 15.1

2023-06-20 Thread Wayne Bickerdike
It is shipped with z/os serverpac. Depends on your installation. Perhaps CPAC prefix library contains it if it wasn't copied to your active linklist. On Wed, Jun 21, 2023, 03:24 Sathish Kumar wrote: > Hi, > > Am upgrading Datacom/AD 15.1 while running the installation job Axcus00 > it's amended

Re: Checkpoint/restart in COBOL applications?

2023-06-20 Thread Adam Johanson
Tbh, I never even knew that z/OS itself had the facility, until its demise was announced. More commonly used seemed to be the GSAM checkpoint/restart capability in IMS. === Adam Johanson Broadcom Mainframe Software Division

Re: Question on the SLIP command

2023-06-20 Thread Charles Hardee
Hi Eric, I have a macro that generates a code sequence like this: J*+4+6 DCC'$SL$,Y(x,y) x and y are "footprint" type fields. The x represents the module identifier, 1, 2, 3, etc and y represents the specific macro expansion, 1, 2, 3, etc. The idea being when

Re: Question on the SLIP command

2023-06-20 Thread Eric D Rossman
Normally, you would use the RANGE= option to have the SLIP hit on certain PSWs. Are you trying to see if a particular instruction is present at the PSW? Eric Rossman -Original Message- From: IBM Mainframe Discussion List On Behalf Of Charles Hardee Sent: Tuesday, June 20, 2023 1:40 PM

Question on the SLIP command

2023-06-20 Thread Charles Hardee
Hello All, I have a question regarding the SLIP command. In my DA= parameter I have used things like 2r? to reference register 2, etc. Is there a symbol for the PSW? I have tried DA=(PSW?+0,EQ,*myvalue*) and it tells me the DA parm is bad. Thanks, Chuck

Datacom/Ad upgrade 15.1

2023-06-20 Thread Sathish Kumar
Hi, Am upgrading Datacom/AD 15.1 while running the installation job Axcus00 it's amended due to the IPOUPDTE module not being found. I have checked the link list dataset I don't see that module. I checked the CPPUPDTE program it's not found. IPOUPDTE is an alias of CPPUPDTE. Any idea how we

Re: The new requirement for Certificates to communicate with IBM -- A Journey

2023-06-20 Thread Michael Babcock
SMOE has a Debug parm too. On Tue, Jun 20, 2023 at 11:22 AM Phil Smith III wrote: > Tom Longfellow wrote, in part: > > >GIM44336S ** AN UNUSUAL CONDITION OCCURRED. GIMJVREQ - > java.net.SocketException: Write failed > > > > WRITE failed? That doesn't sound like a cert issue to me. Anyone know

Re: The new requirement for Certificates to communicate with IBM -- A Journey

2023-06-20 Thread Phil Smith III
Tom Longfellow wrote, in part: >GIM44336S ** AN UNUSUAL CONDITION OCCURRED. GIMJVREQ - >java.net.SocketException: Write failed WRITE failed? That doesn't sound like a cert issue to me. Anyone know if gsktrace can be enabled for this? (Doubtful but it would sure help.) >As ugly as a Java

Re: The new requirement for Certificates to communicate with IBM -- A Journey

2023-06-20 Thread Charles Mills
1. >A new Client Certificate is in place I know TLS pretty well but I don't know RECEIVE ORDER at all. Client Certificates are relatively unusual. Does anyone know for sure: does RECEIVE ORDER require a client certificate? If not, then this is a red herring. 2. > Write failed That *sounds*

Re: The new requirement for Certificates to communicate with IBM -- A Journey

2023-06-20 Thread Tom Longfellow
Thanks to all so far. Still on my journey. I have confirmed that my Firewall staff has not blocked me. (ports 80 and 443 found at IBM) I have confirmed that my DNS world can find the new host names. And even confirmed that the old names are working DNS aliases. My HTTPS references were

Re: GRS setup for MONOPLEX to SYSPLEX

2023-06-20 Thread Paul Gorlinsky
Can we use the back plain of the z/14 to do the CTC thing? -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: GRS setup for MONOPLEX to SYSPLEX

2023-06-20 Thread Allan Staller
Classification: Confidential Not my dog, but I would not do that, except under extreme duress. -Original Message- From: IBM Mainframe Discussion List On Behalf Of Gibney, Dave Sent: Monday, June 19, 2023 4:09 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: GRS setup for MONOPLEX to

Re: z/OSMF

2023-06-20 Thread Colin Paice
Would a documented curl interface into z/OSMF be a good compromise? I could write scripts to do most of the end user work and use the z/OSMF backend? Im currently using a couple of 3270 ISPF sessions, and a Linux command window to do some stuff. Colin On Tue, 20 Jun 2023 at 12:30, David

Re: z/OSMF

2023-06-20 Thread David Crayford
I share Gord's perspective. While I appreciate your preference for using a 14" laptop for all your work, it should be noted that this is an exceptional case. Many employers, including mine, provide suitable equipment for remote work, such as 32" external monitors (I personally have two) in

Re: After installing z/OS 2.5 , we are not able to connect IP.

2023-06-20 Thread Manoj Bandi
Thank you, Brian. -Original Message- From: IBM Mainframe Discussion List On Behalf Of Brian Westerman Sent: Saturday, June 17, 2023 12:19 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: After installing z/OS 2.5 , we are not able to connect IP. Sent by an external sender. Please be

Re: Creating a qr code using OGL

2023-06-20 Thread Gadi Ben-Avi
Hi Attila, I managed to create a QR code using OGL with the following code: DEFINE QR BARCODE QRCODE HEIGHT 15 MM RATIO 1.01; POSITION 1 IN 1 IN; PLACE BARCODE QR CHAR 'HTTP://WWW.YNET.CO.IL'; The current problem is that when I scan the code, it does

Re: Creating a qr code using OGL

2023-06-20 Thread Attila Fogarasi
I doubt OGL has changed in past 20 years. It does fully support barcodes (which is what I used OGL for) but I would be astonished if it has been extended to QR codes. OGL can embed graphics from PDS members, but I don't know how to create the graphic (it won't be jpeg). Finally OGL allows