Re: SCHEDIRB

2023-09-29 Thread Binyamin Dissen
On Thu, 28 Sep 2023 20:37:02 -0500 Jon Perryman wrote: :>Another problem with your code dawned on me. Your IRB routine and passed storage could be freed while the IRB is still executing. The IRB routine only does a LOAD but the I/O time could be long enough for the originating program to end a

Re: Can anyone explain this OCSP error?

2023-09-29 Thread Colin Paice
Charles, What AIA info does your certificate have, for example authorityInfoAccess = OCSP;URI:http://10.1.0.2:2000 Is your OCSP server running with the URL in the AIA info? Colin On Fri, 29 Sept 2023 at 00:34, Charles Mills wrote: > X-Posted IBM-MAIN and RACF-L. It’s not really a RACF issue,

Re: CA-1 Withdrawl from z/OS 2.5

2023-09-29 Thread Allan Staller
Classification: Confidential 1) start TMSINIT and reply with the "shutdown" password. 2) dynamically remove the TMS subsystem. (update parmlib,. as needed) 3) namoicall remove TMS load libraries from lnklst, apf, the TMS loadlibs are typically in lnklst. 4) rename TMC and audit files HT

Re: TCP/IP to JES3

2023-09-29 Thread Bfishing
All the links from our main NJE/IP Bridge site should be accessible once again. https://www.sinenomine.net/offerings/zVM&VSE/Products/NJE They were still behind our private network after our website upgrade, making this a pretty quick fix. Looking forward to hearing about your thoughts on the prod

Re: SCHEDIRB

2023-09-29 Thread Seymour J Metz
TSO/E added, e.g. authorized commands, and ATTACH RSAPF=YES tests for AC(1). From: IBM Mainframe Discussion List on behalf of Michael Stein Sent: Friday, September 29, 2023 1:07 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: SCHEDIRB On Thu, Sep 28, 2023

Re: CA-1 Withdrawl from z/OS 2.5

2023-09-29 Thread Scott Barry
On Thu, 28 Sep 2023 16:22:24 -0500, Paul Gorlinsky wrote: >We are investigating what is necessary to remove CA-1 from the system after >turning on RMM in protect mode. > >My original plan was to us TMSINIT to remove CA-1 and disable the PROC >(TMSINIT) prior to starting DFRMM... > >Or do I ne

Utility to Read from JES2 spool

2023-09-29 Thread Roberto Halais
Listers: Is there an z/os utility that will allow the reading of a spool file (in some class) and copy it to a sequential dataset? We need to read a report from spool and copy it o a sequential dataset. Just a z/os utility or a CBT tape utility. Thank you for any pointers. --

Re: Utility to Read from JES2 spool

2023-09-29 Thread Mark Jacobs
The JES2 external writer will do just that. Proc XWTR in SYS1.PROCLIB. Mark Jacobs Sent from ProtonMail, Swiss-based encrypted email. GPG Public Key - https://api.protonmail.ch/pks/lookup?op=get&search=markjac...@protonmail.com --- Original Message --- On Friday, September 29th, 202

Re: Utility to Read from JES2 spool

2023-09-29 Thread Mike Schwab
https://groups.google.com/g/bit.listserv.ibm-main/c/vj_iGeqFm2o/m/B0wZHzbNNv8J On Fri, Sep 29, 2023 at 9:10 AM Roberto Halais wrote: > > Listers: > > Is there an z/os utility that will allow the reading of a spool file (in > some class) and copy it to a sequential dataset? > > We need to read a r

Re: Utility to Read from JES2 spool

2023-09-29 Thread Roberto Halais
Thank you,Mark. I’ll check it out. On Fri, Sep 29, 2023 at 10:13 AM Mark Jacobs < 0224d287a4b1-dmarc-requ...@listserv.ua.edu> wrote: > The JES2 external writer will do just that. Proc XWTR in SYS1.PROCLIB. > > Mark Jacobs > > > Sent from ProtonMail, Swiss-based encrypted email. > > GPG Public

Re: Can anyone explain this OCSP error?

2023-09-29 Thread Charles Mills
It's not "my" certificate exactly -- it's IBM's. I will paste it below. I don't have an OCSP server; I would guess that System SSL is querying DigiCert's from the AIA: http://ocsp.digicert.com. I am not sure which DigiCert certificate signs the OCSP response but the DigiCert intermediate refere

Re: Utility to Read from JES2 spool

2023-09-29 Thread Lionel B. Dyck
You can also use the SDSF REXX interface to easily do this. If you have access to GitHub you can try my generalized tool that uses SDSF REXX at https://github.com/lbdyck/sdsfxdd Lionel B. Dyck <>< Website: https://www.lbdsoftware.com Github: https://github.com/lbdyck “Worry more about your ch

Re: SCHEDIRB Jon Perryman is correct re-linked as AC=1 no ABEND ON SVC 8

2023-09-29 Thread Peter Relson
> even Peter Relson wasn't sure if this correct As this related to a purported need to link with AC=1, I was perfectly sure that that was not correct. And I remain so. Joe R: you've mentioned multiple times that you abended after the load. But did you ever share what abend code and abend reason

Re: Utility to Read from JES2 spool

2023-09-29 Thread Lennie Dymoke-Bradshaw
I think you could do this using the SDSF REXX facilities. Lennie -Original Message- From: IBM Mainframe Discussion List On Behalf Of Roberto Halais Sent: 29 September 2023 15:10 To: IBM-MAIN@LISTSERV.UA.EDU Subject: Utility to Read from JES2 spool Listers: Is there an z/os utility that

Re: SCHEDIRB Jon Perryman is correct re-linked as AC=1 no ABEND ON SVC 8

2023-09-29 Thread Joseph Reichman
Looking into it now > On Sep 29, 2023, at 10:36 AM, Peter Relson wrote: > >  >> >> even Peter Relson wasn't sure if this correct > > As this related to a purported need to link with AC=1, I was perfectly sure > that that was not correct. And I remain so. > > Joe R: you've mentioned multipl

Re: Utility to Read from JES2 spool

2023-09-29 Thread Michael Babcock
Programmatically or manually? Manually, in SDSF, you can always put a question mark next to the output and put an XDC next to the output you want. Or skip the question mark and XDC the entire job. See the SDSF help for XDC. On Fri, Sep 29, 2023 at 9:10 AM Roberto Halais wrote: > Listers: > >

Re: Utility to Read from JES2 spool

2023-09-29 Thread Roberto Halais
Thank you all. You have given me many options. Back to the drawing board. On Fri, Sep 29, 2023 at 11:09 AM Michael Babcock wrote: > Programmatically or manually? Manually, in SDSF, you can always put a > question mark next to the output and put an XDC next to the output you > want. Or skip the

Re: Utility to Read from JES2 spool

2023-09-29 Thread Rob Scott
To generate sample SDSF REXX - issue the "RGEN X" command and choose an example from the list - there are the following including : Browse job output with EXECIO Browse job output with ISFBROWSE Browse job output with ISFBROWSE - groups of lines Rob Scott Rocket Software -Original Message--

z/OS 3.1 documentation

2023-09-29 Thread Lennie Dymoke-Bradshaw
Having seen the announcement of z/OS 3.1 today I have tried to obtain the usual PDF collection of documentation. I found it can be downloaded in zip form here, by selecting "IBM z/OS Indexed PDF/PDX Collection". This has given me the set of pdf files. https://www.ibm.com/docs/en/zos/3.1.0 Howev

Re: Utility to Read from JES2 spool

2023-09-29 Thread Denis
How about IBM Z Open Automation Utilities, there is a free version without subscription and support. jls to find the job id https://www.ibm.com/docs/en/zoau/1.2.x?topic=reference-jls ddls to list ddnames for a given job id https://www.ibm.com/docs/en/zoau/1.2.x?topic=reference-ddls then pjdd to p

Re: z/OS 3.1 documentation

2023-09-29 Thread Bobbie Jo Justice
https://www.ibm.com/docs/en/zos/3.1.0?topic=documentation-pdf-files-zos-310-library -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: z/OS 3.1 documentation

2023-09-29 Thread Lionel B. Dyck
You found the problem with the download collection. See this IBM Idea (and please vote if you agree) https://ibm-z-hardware-and-operating-systems.ideas.ibm.com/ideas/ZOS-I-3848 In summary I'm requesting that IBM add a READ_ME_FIRST_ZOS_V3R1_TOC.HTM as they had in previous z/OS download collection

Re: z/OS 3.1 documentation

2023-09-29 Thread william janulin
I agree...a READ ME FIRST document would be nice. Seems to me that used to do that years ago. Sent from Yahoo Mail on Android On Fri, Sep 29, 2023 at 11:42, Lionel B. Dyck wrote: You found the problem with the download collection. See this IBM Idea (and please vote if you agree) https://

Re: z/OS 3.1 documentation

2023-09-29 Thread Lennie Dymoke-Bradshaw
Voted. Lennie -Original Message- From: IBM Mainframe Discussion List On Behalf Of Lionel B. Dyck Sent: 29 September 2023 16:42 To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: z/OS 3.1 documentation You found the problem with the download collection. See this IBM Idea (and please vote if you a

Re: PL/X

2023-09-29 Thread Peter Relson
Regarding PL/X documentation, wouldn't sharing such information outside of IBM, in the absence of having some sort of license agreement, be "bad form" (or worse)? Peter Relson z/OS Core Technology Design -- For IBM-MAIN subscr

Re: PL/X

2023-09-29 Thread Seymour J Metz
AFAIK, PL/S II was the last version for which IBM issued unrestricted documentation; I would assume that manuals for, e.g., PL/8, PL/AS, PL/X, are proprietary. From: IBM Mainframe Discussion List on behalf of Peter Relson Sent: Friday, September 29, 2

Re: Any recommendations for a 3270 emulator for Android

2023-09-29 Thread Charles Mills
Most of the recommendations here were for the Mocha product. I downloaded it an tried it. I have to say I am not crazy about it, but I guess I am never going to be crazy about 3270-on-a-tablet. I am also testing https://www.web.gar.no/glink-for-android. I think I am liking it a little better. A

Re: z/OS 3.1 documentation

2023-09-29 Thread Tom Marchant
I downloaded it to /downloads/zos 3.1 docs, then extracted it into the same folder. You can put it wherever it makes sense to you. Having downloaded it, open zOS310-GA-Indexed-PDF-package-(2023-09-29).pdx with Adobe reader. It is the only .pdx file in the collection. -- Tom Marchant On Fri,

Re: Utility to Read from JES2 spool

2023-09-29 Thread Paul Gilmartin
On Fri, 29 Sep 2023 15:27:37 +, Rob Scott wrote: >To generate sample SDSF REXX - issue the "RGEN X" command and choose an >example from the list - there are the following including : > >Browse job output with EXECIO >Browse job output with ISFBROWSE >Browse job output with ISFBROWSE - groups

Re: PL/X

2023-09-29 Thread David Spiegel
Hi Peter, There is another solution ... make PL/ available especially to students/enthusiasts/hobbyists. While doing that, provide an "amateur" version of z/OS for the same crowd and allow *anyone* to run it on Hercules (or equivalent) on Intel/AMD hardware. It's not yet (but almost) too la

Re: Utility to Read from JES2 spool

2023-09-29 Thread Kirk Wolf
FWIW, Co:Z SFTP has full support for JES spool files, but there are also Co:Z shell commands for using JES2/3. example: *> todsn //intrdr < lsjes *JobidJobname OwnerStatus Class Completion JOB00853 BR14 KIRK OUTPUT A RC= JOB00852 KIRKTKIRK OUTPUT A RC=0

Re: PL/X

2023-09-29 Thread Paul Gilmartin
On Fri, 29 Sep 2023 16:01:52 -0400, David Spiegel wrote: >Hi Peter, >There is another solution ... make PL/ available especially to >students/enthusiasts/hobbyists. > does z Xplore achieve any of that? >While doing that, provide an "amateur" version of z/OS for the same >crowd and allow *any

Re: PL/X

2023-09-29 Thread Farley, Peter
> From: IBM Mainframe Discussion List On Behalf Of > Paul Gilmartin > Sent: Friday, September 29, 2023 4:26 PM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: PL/X > > On Fri, 29 Sep 2023 16:01:52 -0400, David Spiegel wrote: > > >Hi Peter, > >There is another solution ... make PL/ available es

Re: z/OS 3.1 documentation

2023-09-29 Thread Lennie Dymoke-Bradshaw
Tom, When I do as you suggest it simply opens an Adobe page which allows me to search across the entire set of PDFs. It does not give me a list of the manual titles and links to open the appropriate books. Lennie -Original Message- From: IBM Mainframe Discussion List On Behalf Of Tom

Re: z/OS 3.1 documentation

2023-09-29 Thread Tom Brennan
Same as Lennie for me. I can't figure out what I'm supposed to do with the pdx/idx files. And I'm not just looking for manual titles. I'm also looking for the product grouping that used to be in the html file. On 9/29/2023 2:52 PM, Lennie Dymoke-Bradshaw wrote: Tom, When I do as you sugges

Re: z/OS 3.1 documentation

2023-09-29 Thread Paul Gilmartin
On Fri, 29 Sep 2023 16:27:51 +0100, Lennie Dymoke-Bradshaw wrote: >Having seen the announcement of z/OS 3.1 today I have tried to obtain the >usual PDF collection of documentation. > >I found it can be downloaded in zip form here, by selecting "IBM z/OS >Indexed PDF/PDX Collection". This has give

Re: I have an Idea for ISPF...

2023-09-29 Thread Ed Jaffe
On 9/18/2023 1:22 PM, Tom Marchant wrote: I have been unable to convince my site to increase the maximum number of split screens, so I created my own ISPCFIGU that allows 32 and placed it in ISPLLIB. I've shown a few other people how to do it. I often use more than 8, and sometimes more than 1

Re: I have an Idea for ISPF...

2023-09-29 Thread Paul Gilmartin
On Fri, 29 Sep 2023 16:16:32 -0700, Ed Jaffe wrote: >On 9/18/2023 1:22 PM, Tom Marchant wrote: >> I have been unable to convince my site to increase the maximum number of >> split screens, so I created my own ISPCFIGU that allows 32 and placed it in >> ISPLLIB. I've shown a few other people how

Re: z/OS 3.1 documentation

2023-09-29 Thread Roger Lowe
On Fri, 29 Sep 2023 16:27:51 +0100, Lennie Dymoke-Bradshaw wrote: >Having seen the announcement of z/OS 3.1 today I have tried to obtain the >usual PDF collection of documentation. > >I found it can be downloaded in zip form here, by selecting "IBM z/OS >Indexed PDF/PDX Collection". This has giv

Re: z/OS 3.1 documentation

2023-09-29 Thread Bob Bridges
CA has taken to combining all their various TSS manuals into one gigantic PDF; no more individual manuals for installation, the admins, the CFILE, reporting and trouble-shooting, messages and so on, they're all just chapters in one PDF. I dislike it, but I don't see that I have any option but t

Re: z/OS 3.1 documentation

2023-09-29 Thread Paul Gilmartin
On Fri, 29 Sep 2023 22:07:33 -0400, Bob Bridges wrote: >CA has taken to combining all their various TSS manuals into one gigantic PDF; >no more individual manuals for installation, the admins, the CFILE, reporting >and trouble-shooting, messages and so on, they're all just chapters in one >PDF.