Re: Assembler courses

2022-09-20 Thread David Crayford
On 20/09/2022 10:56 pm, Michael Stein wrote: I have been coding in C++ and Java for so long OOP is second nature to me now. Well, in C++ I prefer the interfaces using templates. Java has morphed into into a hybrid OO/FP language since the introduction of the Streams API in Java 8. It's common

Re: Racf userid - CICS started as a job

2022-09-20 Thread Shaffer, Terri
Thanks, that's probably the simplest way.. Awesome Ms Terri E Shaffer Senior Systems Engineer, z/OS Support: ACIWorldwide - Telecommuter H(412-766-2697) C(412-519-2592) terri.shaf...@aciworldwide.com -Original Message- From: IBM Mainframe Discussion List On Behalf Of Lennie

Re: Racf userid - CICS started as a job

2022-09-20 Thread Lennie Dymoke-Bradshaw
Why not code the userid on the Jobcard and then give the users who submit the job READ access to the SURROGAT profile for the userid? https://www.ibm.com/docs/en/zos/2.5.0?topic=submitted-allowing-surrogate-job-submission Lennie Dymoke-Bradshaw https://rsclweb.com ‘Dance like no one is

Re: Racf userid - CICS started as a job

2022-09-20 Thread Tom Brennan
Maybe surrogate job submission? I do like the USER= on this sample: https://www.ibm.com/docs/en/zos/2.3.0?topic=submitted-allowing-surrogate-job-submission On 9/20/2022 4:26 PM, Shaffer, Terri wrote: Hi, I am asking this in the main forum hopefully it will be a simple answer, that I just

Racf userid - CICS started as a job

2022-09-20 Thread Shaffer, Terri
Hi, I am asking this in the main forum hopefully it will be a simple answer, that I just don’t see. So I have lots of experience setting up RACF STARTED class with STDATA so that started tasks run under a certain userid. Here we run our CICS's as jobs, since we are a development company, the

Re: Assembler courses

2022-09-20 Thread Paul Gilmartin
On Tue, 20 Sep 2022 14:31:55 -0700, Tom Brennan wrote: >... >in assembler. So years ago I wrote some code to somewhat mimic printf, >and never looked back. Invoked by macros something like this: > > #PRINTF SYSPRINT,'THIS IS LINE %D OF %D',VAR1,VAR2 > We once did something similar but

Re: Assembler courses

2022-09-20 Thread Tom Brennan
Spitting out messages with formatted values was always a hassle for me in assembler. So years ago I wrote some code to somewhat mimic printf, and never looked back. Invoked by macros something like this: #PRINTF SYSPRINT,'THIS IS LINE %D OF %D',VAR1,VAR2 #PRINTF SYSPRINT,'THIS IS STRING %S

Re: z/OSMF and Health Checker butting heads

2022-09-20 Thread Peter Relson
I'm glad that you were able to figure things out at least enough to get by. Now, a little more from our side. To be very specific, the window we are discussing does not let you "check" "use SAF setup" (for the whole window, let alone for each of auth, routcode, mscope, storage, and auto). But

Re: Broadcom´s COPYCAT equivalent

2022-09-20 Thread Albertus de Wet
Innovation (now Compuware, now BMC)'s FDR FatsCopy. On Tue, Sep 20, 2022 at 1:19 PM Bodra - Pessoal < 02eda2bc565a-dmarc-requ...@listserv.ua.edu> wrote: > Hello, > > > > Can anyone give me options to Broadcom´s software COPYCAT? > > > > Main job for this software will be migrate data stored

Broadcom´s COPYCAT equivalent

2022-09-20 Thread Bodra - Pessoal
Hello, Can anyone give me options to Broadcom´s software COPYCAT? Main job for this software will be migrate data stored in Oracle SL8500 cartridge (9840D) to a new virtual cartridge keeping Tape Manager data intact (same volser, save expiration date, etc…) Thanks Carlos Bodra IBM

Some free encryption, security and certificate education

2022-09-20 Thread Charles Mills
X-Posted RACF-L and IBM-MAIN. If you would like some free education next week in the areas of the subject line above, I will be teaching a slightly-expanded version of my "how certificates work" class, which has been well-received in the past. In addition there is an encryption class from the

Re: Assembler courses

2022-09-20 Thread Michael Stein
> I have been coding in C++ and Java for so long OOP is second nature to me > now. Well, in C++ I prefer the interfaces using templates. Java has morphed > into into a hybrid OO/FP language since the introduction of the Streams API > in Java 8. It's common now not to code imperative loop

Re: What is the preferred way of starting PAGENT

2022-09-20 Thread Claude Richbourg
That would be one way to use automation to start / stop PAGENT as needed. But, the easiest way for us is to let TCP/IP start it as it comes up. We add the PAGENT name to the AUTOLOG part of the PROFILE member. That way TCP/IP can start is as needed. If it ever goes down, TCP/IP can restart it

Re: Assembler courses

2022-09-20 Thread Seymour J Metz
I worked on a project in Assembler H that was influenced by OO ideas and used "late bound calls" (function tables). -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of

Re: Assembler courses

2022-09-20 Thread Peter Sylvester
Hi, 49 years ago I 'stumbled' over Simula 67 (see video 1), well, at the university "informatik 1" course. I had gotten an Algol60 book given to me by my math teacher 2 years earlier. The student a year older learned PL/1. WE had an /168 and the Simula 67 system from the NCC (you can find it

Assembler courses

2022-09-20 Thread Colin Paice
For me, the challenge with learning assembler is how do you input and output. I would have an assembler program called from a C program - and teach them how to use the C "printf" function from assembler to output data. The class can then focus on the assembler code, and get it working. I

Re: Assembler courses

2022-09-20 Thread David Crayford
On 19/09/2022 7:59 am, Charles Mills wrote: I've never had occasion to try write OO programs on the mainframe. to me it seems that the chief value of classes and class methods is a way of organizing my subroutines and functions and limiting their scope to particular uses which seems to me would

Re: Strange FTP behavior

2022-09-20 Thread Jake Anderson
Finally it was a problem from the windows share where the Linux path was mounted There were some permission issues from windows and it took lot of time for the windows technicians to acknowledge On Sun, Sep 18, 2022, 1:17 PM Jake Anderson wrote: > Hi > > Something I didn't include in my

Re: Assembler courses

2022-09-20 Thread Mike Schwab
Yes. A 4K difference between registers would be USING label,R12,R11,R10 etc. On Tue, Sep 20, 2022 at 12:22 AM Brian Westerman wrote: > > Can you do that and use multiple base regs? > > Brian > > On Mon, 19 Sep 2022 07:32:07 -0500, Paul Gilmartin > wrote: > > >On Sun, 18 Sep 2022 22:03:34