Re: General Query --- Any comments on thin clients as mainframe consoles.

2022-04-27 Thread Brian Westerman
There are advantages to Windows and Linux based PC's because they will be able 
to use the extra capabilities of the emulators they use to emulate the 3270's.  
But you are completely correct that you probably don't want very large PC's 
because most operators would likely use them to play call of duty.  Some site 
use the little micro PC's (very underpowered mini PC's made by companies like 
BEELINK and INTEL and some others), but still others use thin clients,

All they really need is that ability to load the emulator and provide the 
operators with a big screen.  I have found that the bigger the better and also 
I have found that using automation products (like the one Syzygy makes 
SyzMPF/z) to change the attributes of the "important" messages to be Bright red 
or reverse video works well.  

When a job starts, it changes the started message to reverse video green, then 
when the jobs end, if it ends with code zero, it's again reverse video green, 
if it's between zero and 4, it used reverse blue, between 5 and 8 gets reverse 
yellow for some things and reverse Pink for production stuff, and anything 
above that (or an abend) gets reverse video RED.  The operators can then "see" 
without thinking about it if something went wrong.  The same is done to 
important messages, but those are mostly just highlighted.  Also, if it's 
really important, we alter the mode of the console that they are using from 
roll mode (which no matter what we tell them they use anyway at almost all 
sites), to RD mode.  We also (when something important happens), send them 
email and text messages, which they tend to like because they don't have to 
"stare at the screen".

The idea is to make them more productive if you can.  

Brian

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Checksum of "legacy" load module?

2022-04-27 Thread Mike Schwab
A load module consists of some txt records, where the entry points and
external variables are deifined, then a short record followed by a
block of binary instruction in a multiple of 1K.  During copy /
compress / restore of a module, the binary machine code is regrouped
into different sized blocks that are multiple of 1K to fit into the
space available on that track (which is highly variable based on the
earlier contents of that load module library, and between the multiple
of 1K machine code blocks is a short block.  So if you ignore the
small blocks, and ignore the record boundaries of the big blocks, that
portion should be identical.  Then you might see some differences in
the TXT records at the start or in the binary machine code.  (order of
TXT item, time stamps, PTF levels),

On Thu, Apr 28, 2022 at 12:15 AM Seymour J Metz  wrote:
>
> Is the output of an IEBCOPY COPYMOD equal to the input? The results of 
> loading them into storage are the same, but the won't have the same hash.
>
>
> --
> Shmuel (Seymour J.) Metz
> http://mason.gmu.edu/~smetz3
>
> 
> From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
> Paul Gilmartin [000433f07816-dmarc-requ...@listserv.ua.edu]
> Sent: Tuesday, April 26, 2022 6:54 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Checksum of "legacy" load module?
>
> On Tue, 26 Apr 2022 15:30:29 -0700, Charles Mills  wrote:
> >
> >Specifically what I am trying to do is answer the question "is load module X
> >in PDS Y.Z on box A binary equal to load module X in PDS Y.Z on box B?"
> >without copying and comparing. I suspect the BLKSIZEs are the same so that
> >may make the task easier (or prevent false negatives).
> >
> I once suggested that a co-worker with a similar requirement compare
> AMBLIST outputs.  AMBLIST?  She had a rapid "Aha!' moment"
> displacements differed -- macro level inconsistecy.
>
> Checksum of TSO TRANSMIT output?  Bind into zFS program objects
> and cksum?
>
> Regardless, timestamps and headers are apt to bite you.
>
> Nostalgia:  I recall a Mac OS (ISV?) utility that compared two
> APPLs and generated a patch file.
>
> --
> gil
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN



-- 
Mike A Schwab, Springfield IL USA
Where do Forest Rangers go to get away from it all?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: CIBXUTOK fetch protected

2022-04-27 Thread Seymour J Metz
It is better to describe the raw data rather than your interpretation of them. 
Show, e.g., the code, ABEND code, reason code, registers.


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Ituriel do Neto [03427ec2837d-dmarc-requ...@listserv.ua.edu]
Sent: Wednesday, April 27, 2022 8:35 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: CIBXUTOK fetch protected

Hi all,

I'm trying to reach CIBXTOKN field under CIBX control block, and if the program 
is executed as a
batch job, this field is fetch protected, but if it runs as an STC, the access 
is granted.

What is the difference?

Best Regards

Ituriel do Nascimento Neto
z/OS System Programmer

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Seymour J Metz
That's because you are not attaching the zip file. You need something like 
(empty lines are significant):

MIME-Version: 1.0
Content-type: multipart/mixed; boundary="simple boundary"
Content-Transfer-Encoding: binary
...

arbitrary text

simple boundary
Content-type:  APPLICATION/ZIP
CONTENT-DISPOSITION: ATTACHMENT; FILENAME=TEST.ZIP
Content-Transfer-Encoding: binary

zipped file

--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Sasso, Len [039db7f8412a-dmarc-requ...@listserv.ua.edu]
Sent: Wednesday, April 27, 2022 12:28 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Send an email with a Zip file as an attachment?

If I specify either:

CONTENT-TYPE: APPLICATION/ZIP; BOUNDARY="SIMPLE BOUNDARY"
CONTENT-DISPOSITION: ATTACHMENT; FILENAME=TEST.ZIP
CONTENT-TRANSFER-ENCODING: BINARY

or

CONTENT-TYPE: APPLICATION/OCTET-STREAM; BOUNDARY="SIMPLE BOUNDARY"
CONTENT-DISPOSITION: ATTACHMENT; FILENAME=TEST.ZIP
CONTENT-TRANSFER-ENCODING: BINARY


I receive the message below from 7-Zip, when I attempt to extract the file:


Can not open file "TEST.ZIP" as archive.



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: 
https://nam11.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.gdit.com%2Fdata=05%7C01%7Csmetz3%40gmu.edu%7C4698218f41ca408f9d7408da286b067e%7C9e857255df574c47a0c00546460380cb%7C0%7C0%7C637866737375460987%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7Csdata=Xxrt1GOJdVxJ7OInTuiNyY29ESkE2JAsWxjNhTrLsFg%3Dreserved=0





From: IBM Mainframe Discussion List  on behalf of 
Paul Gilmartin <000433f07816-dmarc-requ...@listserv.ua.edu>
Sent: Wednesday, April 27, 2022 12:21 PM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Send an email with a Zip file as an attachment?



 [External: Use caution with links & attachments]

On Wed, 27 Apr 2022 15:48:04 +, Sasso, Len  wrote:

>When I tried to open it with 7-Zip I received the following message:
>
>   Can not open file "abc.zip" as archive.
>
Is EBCDIC the problem?

On Wed, 27 Apr 2022 10:14:52 -0500, Carmen Vitullo wrote:

>I have an example, not attaching a zip file - do you have a product like
>PKZIP on the mainframe?
>

"jar"

Protect the .zip file with "uuencode -m", or (not SYSIN-safe) TSO TRANSMIT.

#! /bin/sh -x
# Run thsi script or paste into uudecode.
# Safest to extract in an empty directory.
uudecode -i <<{endmime}

( Comments hardly matter. )

begin-base64 644 makesea.zip
UEsDBBQIAKyVKlRzne3JKwEAAKoBAAAHABwAbWFrZXNlYVVUCQADNOHcYaer3WF1eAsAAQT1
AQAABABFj8FOwzAQRO/+iiEJSkuVVL2WIqQWlRM9UHHj4jibxmpiR/YGGlX5dxwB6nX1ZmZf
fIdloc3S11hcRIwXq9Z4k2eCp6bK6MJOKtZGnyCdqrX+ItgKySoP8Pbj9TjRAwpH8gxrYKzJOutY
Fg2hk1wb2VIuxP7wlMxCJyOzATo1tgBizLCVYdp3pHSl1TPmglRtkVxXcfywHDGfqF1D0qDvkC5T
SFPiu9ZMvpNqqu6cNlwhvfcpok8R34yyyei9N+Daa3jldMewLvzlmRBSFn1fkrIlTTpHWZFnhOuf
dkDCHKjteECpHSm2bsjFfwiZxmZzJVO2uqVRiBl2tm3JsEctXdkMaCUzuTx4iX//y2NYJfNb0E6q
iyhZRSOi5Lo/rDPPpTZjFNTFrToSP1BLAQIeAxQIAKyVKlRzne3JKwEAAKoBAAAHABgA
AAEAAADtgQBtYWtlc2VhVVQFAAM04dxhdXgLAAEE9QEAAAQAUEsFBgABAAEATQAA
AGwBAA==

{endmime}

--
gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Seymour J Metz
Content-Type: multipart; BOUNDARY="SIMPLE BOUNDARY" means that MIME parts begin 
with "SIMPLE BOUNDARY"

--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Carmen Vitullo [cvitu...@hughes.net]
Sent: Wednesday, April 27, 2022 12:53 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Send an email with a Zip file as an attachment?

I'm not sure what this additional parameter does

BOUNDARY="SIMPLE BOUNDARY"
I don't use that parm in my test job
I think maybe the best option is to try XMIT/IP
I actually may have that tool also, I can check
Carmen

On 4/27/2022 11:28 AM, Sasso, Len wrote:
> BOUNDARY="SIMPLE BOUNDARY"
--
/I am not bound to win, but I am bound to be true. I am not bound to
succeed, but I am bound to live by the light that I have. I must stand
with anybody that stands right, and stand with him while he is right,
and part with him when he goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Seymour J Metz
Fetch protection is is S0c$-04. Please show your code for accessing the CIB.


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Ituriel do Neto [03427ec2837d-dmarc-requ...@listserv.ua.edu]
Sent: Wednesday, April 27, 2022 1:30 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: EXTERNAL: CIBXUTOK fetch protected

Mike,

I don't think so, but to remove all doubts i have associated the PROCNAME in 
class STARTED with my userid.

Now both STC and batch job run with the same userid, but when batch, the 
CIBXTOKN continues to be fetch protected giving me and abend S0C4-11


Best Regards

Ituriel do Nascimento Neto
z/OS System Programmer






Em quarta-feira, 27 de abril de 2022 13:07:03 BRT, Mike Schwab 
 escreveu:





Is there a RACF setting to allow a particular user to run any APF
program, or a resource authorization to run this APF program?

On Wed, Apr 27, 2022 at 3:28 PM Ituriel do Neto
<03427ec2837d-dmarc-requ...@listserv.ua.edu> wrote:
>
> Hi,
>
> The loadlib is APF in both cases because i'm using the same JCL.
>
> For instance, as STC it is started by the command S PROCNAME, while as a 
> batch job, using the following JCL:
>
> //JOBNAME (),CLASS=A,MSGCLASS=X,REGION=0M
> //A1EXEC PROCNAME
>
> The PROC is the same, expanded from the same PROCLIB.
>
> The only difference i could perceive is when it runs as batch, it is assigned 
> to my userid, and as STC, it is assigned a different one defined in STARTED 
> class.
>
>
> Ituriel do Nascimento Neto
> z/OS System Programmer
>
>
>
>
> Em quarta-feira, 27 de abril de 2022 10:45:47 BRT, Crawford, Robert C. 
> <01feadb2c2d2-dmarc-requ...@listserv.ua.edu> escreveu:
>
>
>
>
>
> Does your program get loaded out of an APF authorized library when it runs as 
> a STC?  What's in the STEPLIB concatenation for the batch job?  One 
> unauthorized library makes the whole STEPLIB unauthorized.
>
> Robert Crawford
> Mainframe Management
> United Services Automobile Association
> (210) 913-3822
>
> “Моє око! Я не повинен брати в нього пудинг!”
> Emma Andijewska
> Please send requests to mainframe management through our front door at  
> go/mfmfrontdoor
>
> -Original Message-
> From: IBM Mainframe Discussion List  On Behalf Of 
> Ituriel do Neto
> Sent: Wednesday, April 27, 2022 7:35 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: EXTERNAL: CIBXUTOK fetch protected
>
> Hi all,
>
> I'm trying to reach CIBXTOKN field under CIBX control block, and if the 
> program is executed as a batch job, this field is fetch protected, but if it 
> runs as an STC, the access is granted.
>
> What is the difference?
>
> Best Regards
>
> Ituriel do Nascimento Neto
> z/OS System Programmer
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
> lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN



--
Mike A Schwab, Springfield IL USA
Where do Forest Rangers go to get away from it all?


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Seymour J Metz
They say that the memory is the second thing to fail.

OS/VS, including MVS, reflects 004 as S0C$ and 005 as S0C%, although the latter 
is rare on OS/VS systems. However, OS/VS also reflects some other codes as 
S0C4, e.g., reference to an unallocated page.

By the time you get to z/OS there are a lot more fingers in the pie.


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Paul Gilmartin [000433f07816-dmarc-requ...@listserv.ua.edu]
Sent: Wednesday, April 27, 2022 4:19 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: EXTERNAL: CIBXUTOK fetch protected

On Wed, 27 Apr 2022 13:48:12 -0400, Steve Smith wrote:

>Well, S0C4-11 does not mean the storage is fetch-protected.  It means the
>virtual address doesn't exist.  ..
>
In   SA22-7871-10  z/Architecture IBM Reference Summary
I read:
Program-Interruption Codes
At real-storage locations 142-143 (8E-8F hex)
Code
Instr.
(Hex) ConditionILC Set  
Ending
0001  Operation exception 1 2 3 
   S
0002  Privileged-operation exception2 3 
   S
0003  Execute exception 2 3 
   S
0004  Protection exception1 2 3 
   S T
0005  Addressing exception1 2 3 
   S T
...
A Historian told me long ago that Addressing exceptions were so rare
before DAT that MVS/XA elected to reflect 0005 as S0C4 for
compatibility with existing code.

--
gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Checksum of "legacy" load module?

2022-04-27 Thread Seymour J Metz
Is the output of an IEBCOPY COPYMOD equal to the input? The results of loading 
them into storage are the same, but the won't have the same hash.


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Paul Gilmartin [000433f07816-dmarc-requ...@listserv.ua.edu]
Sent: Tuesday, April 26, 2022 6:54 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Checksum of "legacy" load module?

On Tue, 26 Apr 2022 15:30:29 -0700, Charles Mills  wrote:
>
>Specifically what I am trying to do is answer the question "is load module X
>in PDS Y.Z on box A binary equal to load module X in PDS Y.Z on box B?"
>without copying and comparing. I suspect the BLKSIZEs are the same so that
>may make the task easier (or prevent false negatives).
>
I once suggested that a co-worker with a similar requirement compare
AMBLIST outputs.  AMBLIST?  She had a rapid "Aha!' moment"
displacements differed -- macro level inconsistecy.

Checksum of TSO TRANSMIT output?  Bind into zFS program objects
and cksum?

Regardless, timestamps and headers are apt to bite you.

Nostalgia:  I recall a Mac OS (ISV?) utility that compared two
APPLs and generated a patch file.

--
gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Marx Zelden - IPLINFO utility

2022-04-27 Thread Seymour J Metz
IMHO the fundamental error was making storage protect optional.


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Phil Smith III [li...@akphs.com]
Sent: Tuesday, April 26, 2022 2:39 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Marx Zelden - IPLINFO utility

This is a pointless discussion. Protecting this storage will break myriad
programs, and adding a subsystem or service to provide controlled access
would be a huge undertaking, both for IBM to implement and for customers and
ISVs to use. I would predict that even if IBM did it, people would turn it
off so they could get work done. (Think early days of Windows UAC-and yes,
that got better, but with significant investment in/revamp of Windows, plus
it's mostly transparent to programs. Not the same thing, just similar in
that folks just turned it off because it was too intrusive.)



Put another way: this is arguably a fundamental design flaw in OS/360. At
this point, it's not fixable.



...phsiii



P.S. There's gotta be a joke about "Marx" Zelden and universal access to low
core in there somewhere!


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: CIBXUTOK fetch protected

2022-04-27 Thread Seymour J Metz
Is the program in the PPT? If so, what is its key?


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Ituriel do Neto [03427ec2837d-dmarc-requ...@listserv.ua.edu]
Sent: Wednesday, April 27, 2022 8:35 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: CIBXUTOK fetch protected

Hi all,

I'm trying to reach CIBXTOKN field under CIBX control block, and if the program 
is executed as a
batch job, this field is fetch protected, but if it runs as an STC, the access 
is granted.

What is the difference?

Best Regards

Ituriel do Nascimento Neto
z/OS System Programmer

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Checksum of "legacy" load module?

2022-04-27 Thread Bill Godfrey
The COPYMOD function of IEBCOPY will in some cases combine multiple blocks of a 
load module into fewer longer blocks, and where certain blocks contain the 
length of the next block, the length will be changed accordingly. In such cases 
comparing the original and the copy will not produce a match or the same 
checksum.

Bill

On Wed, 27 Apr 2022 09:19:19 -0700, Charles Mills wrote:

>One of the two systems is Dallas. FWIW, I got the no ICSF message on the other 
>system.
>
>Will try later today with cksum. Definitely should be good enough. This is not 
>crypto or cybercrime, just "are these two programs the same?"
>
>Charles
>
>
>-Original Message-
>From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On 
>Behalf Of Tony Harminc
>Sent: Tuesday, April 26, 2022 6:19 PM
>To: IBM-MAIN@LISTSERV.UA.EDU
>Subject: Re: Checksum of "legacy" load module?
>
>On Tue, 26 Apr 2022 at 19:32, Charles Mills  wrote:
>>
>> FSUMF437 ICSF is required but not available.
>>
>> :-(
>
>Dallas?
>
>Works on this zPDT under VM. And even better, gives the same answer as
>on Gord's system! So either we both have the correct IEFBR14 or we
>both have the same corrupted/infected one. Or the tool always gives
>the same answer. Or [insert favourite crypto attack here].
>
>Tony H.
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Seymour J Metz
Yes; see RGC 2045 and 2046. Thenormal way is to create a multipart message with 
one MIME body and include the zip file as the payload.


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Sasso, Len [039db7f8412a-dmarc-requ...@listserv.ua.edu]
Sent: Wednesday, April 27, 2022 11:04 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Send an email with a Zip file as an attachment?

Is it possible to send an email with a Zip file as an attachment, from our 
mainframe (z/OS 2.3) executing IEBGENER via SMTP?
If so, could you please provide an example?




Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: 
https://nam11.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.gdit.com%2Fdata=05%7C01%7Csmetz3%40gmu.edu%7C5870ed37d71e426f577b08da286036f7%7C9e857255df574c47a0c00546460380cb%7C0%7C0%7C637866690972249463%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7Csdata=t8OnPIMUjIrkZvLCAXKUWuztk3%2F0NyhyjojDvu2x5VU%3Dreserved=0




--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Marx Zelden - IPLINFO utility

2022-04-27 Thread Seymour J Metz
Even in the later days of OS/360, it was hard to get IBM to take integrity 
exposures seriously. Things got better with MVS.


 05F0
 0A0C


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Charles Mills [charl...@mcn.org]
Sent: Tuesday, April 26, 2022 3:55 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Marx Zelden - IPLINFO utility

> Put another way: this is arguably a fundamental design flaw in OS/360

I remember well the early days of OS/360. There was no concept of the
insider threat. We were all in this together, and we were all good guys.
Maybe one or two of the application folks were suspect  but the sysprogs
were certainly all good guys, and the application folks didn't know about
this control block stuff.

There was of course no online access, so threats were largely contained by
the lock on the computer room door.

Charles


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
Behalf Of Phil Smith III
Sent: Tuesday, April 26, 2022 11:39 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Marx Zelden - IPLINFO utility

This is a pointless discussion. Protecting this storage will break myriad
programs, and adding a subsystem or service to provide controlled access
would be a huge undertaking, both for IBM to implement and for customers and
ISVs to use. I would predict that even if IBM did it, people would turn it
off so they could get work done. (Think early days of Windows UAC-and yes,
that got better, but with significant investment in/revamp of Windows, plus
it's mostly transparent to programs. Not the same thing, just similar in
that folks just turned it off because it was too intrusive.)



Put another way: this is arguably a fundamental design flaw in OS/360. At
this point, it's not fixable.



...phsiii



P.S. There's gotta be a joke about "Marx" Zelden and universal access to low
core in there somewhere!


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Seymour J Metz
That message does not have an attachment.

The CONTENT-DISPOSITION field has significance to the reciving application, not 
to the sending application.

The normal way to do what you want is to zip the file and send a message 
containing MIME MIME-Version, Content-Type Header Field and 
Content-Transfer-Encoding header fields, and a MIME part containing a boundary 
delimiter line, Content-Type multipart; boundary=foo and 
Content-Transfer-Encoding header fields, an empty line and the zipped file.,


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Carmen Vitullo [cvitu...@hughes.net]
Sent: Wednesday, April 27, 2022 11:26 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Send an email with a Zip file as an attachment?

one more better example

//SMTPTEST EXEC PGM=IEBGENER

//SYSPRINT DD SYSOUT=*

//SYSOUT   DD SYSOUT=*

//SYSINDD DUMMY

//SYSUT1DD *

HELO LITJES2T

MAIL FROM:donotre...@site.com

RCPT TO:<@MAIL.NET:u...@asite.com>

DATA

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: TEXT/PLAIN

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -

/*

//SYSUT2   DD SYSOUT=(B,SMTP)

On 4/27/2022 10:20 AM, Sasso, Len wrote:
> I have already created the Zip file with PKZIP (LRECL=80).
> An example of using IEBGENER and attaching the Zip file would be appreciated.
>
>
> Thank You and Please Be Safe!
>
> Len Sasso
> Systems Administrator Senior
> CSRA, A General Dynamics Information Technology Company
> 327 Columbia TPKE
> Rensselaer, NY 12144
>
> TEAM: Together Everyone Achieves More
>
> Office Hours: M-F  7 AM - 3:45 PM
>
> Vacation:
>
> Phone: (518) 257-4209
> Cell: (518) 894-0879
> Fax: (518) 257-4300
> len.sa...@gdit.com
> URL:https://nam11.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.gdit.com%2Fdata=05%7C01%7Csmetz3%40gmu.edu%7C1673fdd15eda4ff3ed1f08da28625f89%7C9e857255df574c47a0c00546460380cb%7C0%7C0%7C637866700228798562%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7Csdata=RKuMDSVf%2B1cBR%2BAxYn6lu7Vb1WLejAjKBGhDCF60bU8%3Dreserved=0
>
>
>
>
> 
> From: IBM Mainframe Discussion List  on behalf of 
> Carmen Vitullo
> Sent: Wednesday, April 27, 2022 11:14 AM
> To:IBM-MAIN@LISTSERV.UA.EDU  
> Subject: Re: Send an email with a Zip file as an attachment?
>
>
>
>   [External: Use caution with links & attachments]
>
> I have an example, not attaching a zip file - do you have a product like
> PKZIP on the mainframe?
>
> if you need an example of using IEBGENER and attaching a file I can
> provide an example
>
> Carmen
>
> On 4/27/2022 10:04 AM, Sasso, Len wrote:
>> Is it possible to send an email with a Zip file as an attachment, from our 
>> mainframe (z/OS 2.3) executing IEBGENER via SMTP?
>> If so, could you please provide an example?
>>
>>
>>
>>
>> Thank You and Please Be Safe!
>>
>> Len Sasso
>> Systems Administrator Senior
>> CSRA, A General Dynamics Information Technology Company
>> 327 Columbia TPKE
>> Rensselaer, NY 12144
>>
>> TEAM: Together Everyone Achieves More
>>
>> Office Hours: M-F  7 AM - 3:45 PM
>>
>> Vacation:
>>
>> Phone: (518) 257-4209
>> Cell: (518) 894-0879
>> Fax: (518) 257-4300
>> len.sa...@gdit.com
>> URL:https://nam11.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.gdit.com%2Fdata=05%7C01%7Csmetz3%40gmu.edu%7C1673fdd15eda4ff3ed1f08da28625f89%7C9e857255df574c47a0c00546460380cb%7C0%7C0%7C637866700228798562%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7Csdata=RKuMDSVf%2B1cBR%2BAxYn6lu7Vb1WLejAjKBGhDCF60bU8%3Dreserved=0
>>
>>
>>
>>
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send emailtolists...@listserv.ua.edu   with the message: INFO IBM-MAIN
>>
>>
> --
> /I am not bound to win, but I am bound to be true. I am not bound to
> succeed, but I am bound to live by the light that I have. I must stand
> with anybody that stands right, and stand with him while he is right,
> and part with him when he 

Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Lennie Dymoke-Bradshaw
>From an z/architecture point of view a program interrupt code could be 
>generated by referencing a 64-bit address which was higher than the installed 
>amount of memory. But to get an interrupt code 0005 on a z/OS system today is 
>significantly more difficult I think.

Lennie Dymoke-Bradshaw
https://rsclweb.com 
‘Dance like no one is watching. Encrypt like everyone is.’

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Tony Harminc
Sent: 27 April 2022 22:57
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: EXTERNAL: CIBXUTOK fetch protected

On Wed, 27 Apr 2022 at 16:20, Paul Gilmartin 
<000433f07816-dmarc-requ...@listserv.ua.edu> wrote:

> A Historian told me long ago that Addressing exceptions were so rare 
> before DAT that MVS/XA elected to reflect 0005 as S0C4 for 
> compatibility with existing code.

This sounds oddly backwards. Before DAT, i.e. MVT et al, addressing exceptions 
were common enough on any but a fully kitted out machine - and machines with 
16MB were rare.

But I'm not convinced that S0C5 even exists on any MVS or later OS/360 
descendent. How would you provoke one? If you're running V=V, you'll get a page 
or segment fault (0010 or 0011) or some other DAT-related failure, and I think 
those are all turned into S0C4s if unresolved.
Surely nobody is running V=R in 2022 (does z/OS even support it?), so I'm not 
sure how you'd get a 0005 - let alone a S0C5 - for referencing non existent 
storage.

Tony H.

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Tony Harminc
On Wed, 27 Apr 2022 at 16:20, Paul Gilmartin
<000433f07816-dmarc-requ...@listserv.ua.edu> wrote:

> A Historian told me long ago that Addressing exceptions were so rare
> before DAT that MVS/XA elected to reflect 0005 as S0C4 for
> compatibility with existing code.

This sounds oddly backwards. Before DAT, i.e. MVT et al, addressing
exceptions were common enough on any but a fully kitted out machine -
and machines with 16MB were rare.

But I'm not convinced that S0C5 even exists on any MVS or later OS/360
descendent. How would you provoke one? If you're running V=V, you'll
get a page or segment fault (0010 or 0011) or some other DAT-related
failure, and I think those are all turned into S0C4s if unresolved.
Surely nobody is running V=R in 2022 (does z/OS even support it?), so
I'm not sure how you'd get a 0005 - let alone a S0C5 - for referencing
non existent storage.

Tony H.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL EMAIL: General Query --- Any comments on thin clients as mainframe consoles.

2022-04-27 Thread Michael Babcock
I can vouch for the Visara boxes.  We have console concentrators and they
have been very stable.  We use Rocket’s TE software for the consoles.
Works great.

On Wed, Apr 27, 2022 at 3:10 PM Jerry Whitteridge <
jerry.whitteri...@albertsons.com> wrote:

> Talk to the Visara folks - they have solutions that would work for you
>
> Jerry Whitteridge
> jerry.whitteri...@albertsons.com
> Sr. Manager Managed Services
> Albertsons Companies
>
> -Original Message-
> From: IBM Mainframe Discussion List  On Behalf
> Of Tom Longfellow
> Sent: Wednesday, April 27, 2022 1:04 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: EXTERNAL EMAIL: General Query --- Any comments on thin clients as
> mainframe consoles.
>
> We are looking at retiring the coax connected consoles and terminals at
> our site.
>
> The obvious answer is an OSA-ICC with ethernet connected tn3270 devices.
>
> Anybody have a glowing recommendation for the replacement device for the
> classic 3270 "green screen"  workstation console?
>
> I am trying to avoid any full blown PC workstation with external internet
> connectivity issues.  I want an 'appliance' that we plug-in,  configure and
> come back in a few years.
> These leads me away from windows based solutions because of their constant
> cycle of reboots to install mandatory and recommended maintenance.   And if
> a full function PC is provided, I know that the operators will swap screens
> and miss that one important message that just highlighted on the console.
>  I have some Linux appliances for other purposes that have a 2+ year uptime
> and don't wake me up at night with failures.   I reboot THEM when I get an
> itch.
>
> My urge is to set up a hub between the OSA-ICC and the workstation
> devices.   Air-gapped from the rest of the world.  Again, any other
> suggestions are welcomed.
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> 
>  Warning: All e-mail sent to this address will be received by the
> corporate e-mail system, and is subject to archival and review by someone
> other than the recipient. This e-mail may contain proprietary information
> and is intended only for the use of the intended recipient(s). If the
> reader of this message is not the intended recipient(s), you are notified
> that you have received this message in error and that any review,
> dissemination, distribution or copying of this message is strictly
> prohibited. If you have received this message in error, please notify the
> sender immediately.
> 
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
-- 
Michael Babcock
OneMain Financial
z/OS Systems Programmer, Lead

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL EMAIL: General Query --- Any comments on thin clients as mainframe consoles.

2022-04-27 Thread Ken Bloom
Hi

Contact me off line and we can discuss.  We do have thin client solutions that 
would work for you.  Depending on your environment you may want to rethink 
switching to the OSA-ICC if security concerns are near the top of your list.

Ken

Kenneth A. Bloom
Avenir Technologies Inc
/d/b/a Visara International
203-984-2235
bl...@visara.com
www.visara.com


On Apr 27, 2022, at 4:10 PM, Jerry Whitteridge 
 wrote:

Talk to the Visara folks - they have solutions that would work for you

Jerry Whitteridge
jerry.whitteri...@albertsons.com
Sr. Manager Managed Services
Albertsons Companies

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of Tom 
Longfellow
Sent: Wednesday, April 27, 2022 1:04 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: EXTERNAL EMAIL: General Query --- Any comments on thin clients as 
mainframe consoles.

We are looking at retiring the coax connected consoles and terminals at our 
site.

The obvious answer is an OSA-ICC with ethernet connected tn3270 devices.

Anybody have a glowing recommendation for the replacement device for the 
classic 3270 "green screen"  workstation console?

I am trying to avoid any full blown PC workstation with external internet 
connectivity issues.  I want an 'appliance' that we plug-in,  configure and 
come back in a few years.
These leads me away from windows based solutions because of their constant 
cycle of reboots to install mandatory and recommended maintenance.   And if a 
full function PC is provided, I know that the operators will swap screens and 
miss that one important message that just highlighted on the console.   I have 
some Linux appliances for other purposes that have a 2+ year uptime and don't 
wake me up at night with failures.   I reboot THEM when I get an itch.

My urge is to set up a hub between the OSA-ICC and the workstation devices.   
Air-gapped from the rest of the world.  Again, any other suggestions are 
welcomed.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Warning: All e-mail sent to this address will be received by the corporate 
e-mail system, and is subject to archival and review by someone other than the 
recipient. This e-mail may contain proprietary information and is intended only 
for the use of the intended recipient(s). If the reader of this message is not 
the intended recipient(s), you are notified that you have received this message 
in error and that any review, dissemination, distribution or copying of this 
message is strictly prohibited. If you have received this message in error, 
please notify the sender immediately.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: General Query --- Any comments on thin clients as mainframe consoles.

2022-04-27 Thread Farley, Peter x23353
Would Chromebooks fit your need?  Inexpensive, not Windows, but not sure if 
they auto-reboot for updates (I don't actually own one).

OTOH tn3270 capabilitiy would be limited to whichever one(s) Chrome supports.

HTH

Peter

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of Tom 
Longfellow
Sent: Wednesday, April 27, 2022 4:04 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: General Query --- Any comments on thin clients as mainframe consoles.

We are looking at retiring the coax connected consoles and terminals at our 
site.

The obvious answer is an OSA-ICC with ethernet connected tn3270 devices.

Anybody have a glowing recommendation for the replacement device for the 
classic 3270 "green screen"  workstation console?

I am trying to avoid any full blown PC workstation with external internet 
connectivity issues.  I want an 'appliance' that we plug-in,  configure and 
come back in a few years.
These leads me away from windows based solutions because of their constant 
cycle of reboots to install mandatory and recommended maintenance.   And if a 
full function PC is provided, I know that the operators will swap screens and 
miss that one important message that just highlighted on the console.   I have 
some Linux appliances for other purposes that have a 2+ year uptime and don't 
wake me up at night with failures.   I reboot THEM when I get an itch.

My urge is to set up a hub between the OSA-ICC and the workstation devices.   
Air-gapped from the rest of the world.  Again, any other suggestions are 
welcomed.

--

This message and any attachments are intended only for the use of the addressee 
and may contain information that is privileged and confidential. If the reader 
of the message is not the intended recipient or an authorized representative of 
the intended recipient, you are hereby notified that any dissemination of this 
communication is strictly prohibited. If you have received this communication 
in error, please notify us immediately by e-mail and delete the message and any 
attachments from your system.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Paul Gilmartin
On Wed, 27 Apr 2022 13:48:12 -0400, Steve Smith wrote:

>Well, S0C4-11 does not mean the storage is fetch-protected.  It means the
>virtual address doesn't exist.  ..
> 
In   SA22-7871-10  z/Architecture IBM Reference Summary
I read:
Program-Interruption Codes
At real-storage locations 142-143 (8E-8F hex)
Code
Instr.
(Hex) ConditionILC Set  
Ending
0001  Operation exception 1 2 3 
   S
0002  Privileged-operation exception2 3 
   S
0003  Execute exception 2 3 
   S
0004  Protection exception1 2 3 
   S T
0005  Addressing exception1 2 3 
   S T
...
A Historian told me long ago that Addressing exceptions were so rare
before DAT that MVS/XA elected to reflect 0005 as S0C4 for
compatibility with existing code.

-- 
gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL EMAIL: General Query --- Any comments on thin clients as mainframe consoles.

2022-04-27 Thread Jerry Whitteridge
Talk to the Visara folks - they have solutions that would work for you

Jerry Whitteridge
jerry.whitteri...@albertsons.com
Sr. Manager Managed Services
Albertsons Companies

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of Tom 
Longfellow
Sent: Wednesday, April 27, 2022 1:04 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: EXTERNAL EMAIL: General Query --- Any comments on thin clients as 
mainframe consoles.

We are looking at retiring the coax connected consoles and terminals at our 
site.

The obvious answer is an OSA-ICC with ethernet connected tn3270 devices.

Anybody have a glowing recommendation for the replacement device for the 
classic 3270 "green screen"  workstation console?

I am trying to avoid any full blown PC workstation with external internet 
connectivity issues.  I want an 'appliance' that we plug-in,  configure and 
come back in a few years.
These leads me away from windows based solutions because of their constant 
cycle of reboots to install mandatory and recommended maintenance.   And if a 
full function PC is provided, I know that the operators will swap screens and 
miss that one important message that just highlighted on the console.   I have 
some Linux appliances for other purposes that have a 2+ year uptime and don't 
wake me up at night with failures.   I reboot THEM when I get an itch.

My urge is to set up a hub between the OSA-ICC and the workstation devices.   
Air-gapped from the rest of the world.  Again, any other suggestions are 
welcomed.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

 Warning: All e-mail sent to this address will be received by the corporate 
e-mail system, and is subject to archival and review by someone other than the 
recipient. This e-mail may contain proprietary information and is intended only 
for the use of the intended recipient(s). If the reader of this message is not 
the intended recipient(s), you are notified that you have received this message 
in error and that any review, dissemination, distribution or copying of this 
message is strictly prohibited. If you have received this message in error, 
please notify the sender immediately.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


General Query --- Any comments on thin clients as mainframe consoles.

2022-04-27 Thread Tom Longfellow
We are looking at retiring the coax connected consoles and terminals at our 
site.

The obvious answer is an OSA-ICC with ethernet connected tn3270 devices.

Anybody have a glowing recommendation for the replacement device for the 
classic 3270 "green screen"  workstation console?

I am trying to avoid any full blown PC workstation with external internet 
connectivity issues.  I want an 'appliance' that we plug-in,  configure and 
come back in a few years.
These leads me away from windows based solutions because of their constant 
cycle of reboots to install mandatory and recommended maintenance.   And if a 
full function PC is provided, I know that the operators will swap screens and 
miss that one important message that just highlighted on the console.   I have 
some Linux appliances for other purposes that have a 2+ year uptime and don't 
wake me up at night with failures.   I reboot THEM when I get an itch.

My urge is to set up a hub between the OSA-ICC and the workstation devices.   
Air-gapped from the rest of the world.  Again, any other suggestions are 
welcomed.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Charles Mills
Correct! Bingo!

THAT explains everything.

Charles


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Steve Smith
Sent: Wednesday, April 27, 2022 10:48 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: EXTERNAL: CIBXUTOK fetch protected

Well, S0C4-11 does not mean the storage is fetch-protected.  It means the
virtual address doesn't exist.  Are you sure you're looking at a CIB?  STCs
have one for the START command, but I think batch jobs only get one when a
command (MODIFY or STOP) is sent to them later on.

sas

On Wed, Apr 27, 2022 at 1:31 PM Ituriel do Neto <
03427ec2837d-dmarc-requ...@listserv.ua.edu> wrote:

> Mike,
>
> I don't think so, but to remove all doubts i have associated the PROCNAME
> in class STARTED with my userid.
>
> Now both STC and batch job run with the same userid, but when batch,
> the CIBXTOKN continues to be fetch protected giving me and abend S0C4-11
>
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Steve Smith
Well, S0C4-11 does not mean the storage is fetch-protected.  It means the
virtual address doesn't exist.  Are you sure you're looking at a CIB?  STCs
have one for the START command, but I think batch jobs only get one when a
command (MODIFY or STOP) is sent to them later on.

sas

On Wed, Apr 27, 2022 at 1:31 PM Ituriel do Neto <
03427ec2837d-dmarc-requ...@listserv.ua.edu> wrote:

> Mike,
>
> I don't think so, but to remove all doubts i have associated the PROCNAME
> in class STARTED with my userid.
>
> Now both STC and batch job run with the same userid, but when batch,
> the CIBXTOKN continues to be fetch protected giving me and abend S0C4-11
>
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Ituriel do Neto
Mike,

I don't think so, but to remove all doubts i have associated the PROCNAME in 
class STARTED with my userid.

Now both STC and batch job run with the same userid, but when batch, the 
CIBXTOKN continues to be fetch protected giving me and abend S0C4-11


Best Regards

Ituriel do Nascimento Neto
z/OS System Programmer






Em quarta-feira, 27 de abril de 2022 13:07:03 BRT, Mike Schwab 
 escreveu: 





Is there a RACF setting to allow a particular user to run any APF
program, or a resource authorization to run this APF program?

On Wed, Apr 27, 2022 at 3:28 PM Ituriel do Neto
<03427ec2837d-dmarc-requ...@listserv.ua.edu> wrote:
>
> Hi,
>
> The loadlib is APF in both cases because i'm using the same JCL.
>
> For instance, as STC it is started by the command S PROCNAME, while as a 
> batch job, using the following JCL:
>
> //JOBNAME (),CLASS=A,MSGCLASS=X,REGION=0M
> //A1            EXEC PROCNAME
>
> The PROC is the same, expanded from the same PROCLIB.
>
> The only difference i could perceive is when it runs as batch, it is assigned 
> to my userid, and as STC, it is assigned a different one defined in STARTED 
> class.
>
>
> Ituriel do Nascimento Neto
> z/OS System Programmer
>
>
>
>
> Em quarta-feira, 27 de abril de 2022 10:45:47 BRT, Crawford, Robert C. 
> <01feadb2c2d2-dmarc-requ...@listserv.ua.edu> escreveu:
>
>
>
>
>
> Does your program get loaded out of an APF authorized library when it runs as 
> a STC?  What's in the STEPLIB concatenation for the batch job?  One 
> unauthorized library makes the whole STEPLIB unauthorized.
>
> Robert Crawford
> Mainframe Management
> United Services Automobile Association
> (210) 913-3822
>
> “Моє око! Я не повинен брати в нього пудинг!”
> Emma Andijewska
> Please send requests to mainframe management through our front door at  
> go/mfmfrontdoor
>
> -Original Message-
> From: IBM Mainframe Discussion List  On Behalf Of 
> Ituriel do Neto
> Sent: Wednesday, April 27, 2022 7:35 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: EXTERNAL: CIBXUTOK fetch protected
>
> Hi all,
>
> I'm trying to reach CIBXTOKN field under CIBX control block, and if the 
> program is executed as a batch job, this field is fetch protected, but if it 
> runs as an STC, the access is granted.
>
> What is the difference?
>
> Best Regards
>
> Ituriel do Nascimento Neto
> z/OS System Programmer
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
> lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN



-- 
Mike A Schwab, Springfield IL USA
Where do Forest Rangers go to get away from it all?


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: help with abend 60D reason code 14 SDWALSLV value

2022-04-27 Thread Joseph Reichman
There is a FRR parm on the IEAMSCHD 

Isn’t the SETFRR done on your behalf when issuing the IEAMSCHD macro ?

> On Apr 27, 2022, at 12:34 PM, Mike Shaw  wrote:
> 
> Joseph,
> 
> I have to comment...many of your initial posts over the months you have
> posted on this list lack enough detail for anyone  to help you without
> requesting more information.
> 
> As others have pointed out many times, it is better to:
> 
> 1) Only post on this list after you have done thorough desk-checking of
> your code first
> 
> 2) Read and understand all doc on the facility you are trying to use
> 
> 3) Clearly state the problem you are having
> 
> 4) Show your code when you post
> 
> Based on the power of the z/OS facilities you are trying to use, you should
> have a trusted and knowledgeable person checking and/or testing your
> code...you can crater a z/OS system quickly if you are not careful...
> 
> Opinions expressed are my own...
> 
> Mike Shaw
> MVS/QuickRef Support Group
> Chicago-Soft, Ltd.
> 
>> On Wed, Apr 27, 2022, 10:33 AM Joseph Reichman 
>> wrote:
>> 
>> Yes that’s because I had a bad ptr for the IARV64 so my first abend was
>> for D02 when I did my retry all I was attempting to do was to go somewhere
>> in my SRB and set reg 15 with a bad ie non zero return code
>> 
>> However as the documentation points out if your recovery is a FRR and in
>> using IEAMSCHD it is that then stack entries made by a PC rtn have to be
>> accounted for
>> 
>> I have one more question which I’m sure only you can answer
>> 
>> When I do an Estae and my SDWAGR registers are corrupted
>> 
>> This typically happens in the case above where thru my carelessness I pass
>> a bad ptr to an IBM service SVC or PC in that case I can always rely on
>> SDWASR regs who’s values are right after I issue Estae since I do this all
>> the way in the beginning of the program before I have a chance to make an
>> error
>> 
>> I the case of IEAMSCHD both of those registers sets seem to be the same
>> 
>> In which case I have no choice but to percolate. Good news though even
>> though I percolate I still get back control after the IEAMSCHD macro and
>> SYNCHCOMPADDR is equal to 8 SYNCHCODEADR and SYNCRSNADDR then have
>> SDWAABBCC and SDWACRC respectively right ?
>> 
 On Apr 27, 2022, at 9:30 AM, Peter Relson  wrote:
>>> 
>>> To be clear: are you saying that when you did not specify SDWALSLV at
>> all you get 60D-14, and when you specified it with a value of 1 you did not?
>>> 
>>> 
>>> This what I see for 60d 
>>> 
>>> 
>>> It is just ridiculous that you continually ignore what someone writes,
>> and then post only what you think matters instead of everything.
>>> 
>>> The "explanation" is one piece of the information in the documentation.
>> There are also the "actions". They are relevant too. Read them. In
>> particular the one I referred to.
>>> 
>>> You never described the order of SETFRR (or implied SETFRR if you
>> scheduled the SRB to be given control with an FRR) vs BAKR vs PC. That must
>> be understood.
>>> 
>>> If the order is
>>> SETFRR A
>>> BAKR
>>> PC to IARV64
>>> PR
>>> PR
>>> 
>>> Then if you want to retry within the BAKR code you would need SDWALSLV =
>> 1. If you want to retry prior to code running without that linkage stack
>> level, then SDWALSLV should be left 0.
>>> 
>>> If the order is
>>> BAKR
>>> SETFRR A
>>> PC to IARV64
>>> PR
>>> SETFRR D
>>> PR
>>> 
>>> It would be 100%y WRONG for you to retry with SDWALSLV=1. That would be
>> considered a system integrity error.
>>> The retry address has to be owned by you and the retry has to be at the
>> linkage stack level associated with that address.
>>> 
>>> Peter Relson
>>> z/OS Core Technology Design
>>> 
>>> 
>>> --
>>> For IBM-MAIN subscribe / signoff / archive access instructions,
>>> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>> 
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>> 
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: [EXTERNAL] Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Barkow, Eileen
I used to run this with XMITIP - email attachment is in separate  file, either 
HFS or MVS

//XMIT EXEC XMITIP,COND=((0,NE),(0,EQ))
//*HFS1 DD PATH='/u/eileen/tmp/statfile/edupstat.zip',
//*  PATHDISP=(KEEP,KEEP) PATHMODE=SIRXU
//HFS1 DD DSN=X.MACS.ZIP,DISP=SHR
//SYSIN DD *
  %XMITIP   (ebar...@doitt.nyc.gov) +
  CC(ebar...@doitt.nyc.gov) +
  FROM  "EILEEN BARKOW" +
  SUBJECT 'ZIPPED MACS-restore with tso receive' +
  FORMAT BIN/zip+
 FILEDD HFS1
 /*
//


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Carmen Vitullo
Sent: Wednesday, April 27, 2022 12:54 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: [EXTERNAL] Re: Send an email with a Zip file as an attachment?

CAUTION: This email originated from outside of the organization. Do not click 
links or open attachments unless you recognize the sender and know the content 
is safe.  Forward suspect email to ph...@cyber.nyc.gov as an attachment (Click 
the More button, then forward as attachment).

I'm not sure what this additional parameter does

BOUNDARY="SIMPLE BOUNDARY"
I don't use that parm in my test job
I think maybe the best option is to try XMIT/IP I actually may have that tool 
also, I can check Carmen

On 4/27/2022 11:28 AM, Sasso, Len wrote:
> BOUNDARY="SIMPLE BOUNDARY"
--
/I am not bound to win, but I am bound to be true. I am not bound to succeed, 
but I am bound to live by the light that I have. I must stand with anybody that 
stands right, and stand with him while he is right, and part with him when he 
goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN



This e-mail, including any attachments, may be confidential, privileged or 
otherwise legally protected. It is intended only for the addressee. If you 
received this e-mail in error or from someone who was not authorized to send it 
to you, do not disseminate, copy or otherwise use this e-mail or its 
attachments. Please notify the sender immediately by reply e-mail and delete 
the e-mail from your system.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Carmen Vitullo

I'm not sure what this additional parameter does

BOUNDARY="SIMPLE BOUNDARY"
I don't use that parm in my test job
I think maybe the best option is to try XMIT/IP
I actually may have that tool also, I can check
Carmen

On 4/27/2022 11:28 AM, Sasso, Len wrote:

BOUNDARY="SIMPLE BOUNDARY"

--
/I am not bound to win, but I am bound to be true. I am not bound to 
succeed, but I am bound to live by the light that I have. I must stand 
with anybody that stands right, and stand with him while he is right, 
and part with him when he goes wrong. *Abraham Lincoln*/


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: help with abend 60D reason code 14 SDWALSLV value

2022-04-27 Thread Mike Shaw
Joseph,

I have to comment...many of your initial posts over the months you have
posted on this list lack enough detail for anyone  to help you without
requesting more information.

As others have pointed out many times, it is better to:

1) Only post on this list after you have done thorough desk-checking of
your code first

2) Read and understand all doc on the facility you are trying to use

3) Clearly state the problem you are having

4) Show your code when you post

Based on the power of the z/OS facilities you are trying to use, you should
have a trusted and knowledgeable person checking and/or testing your
code...you can crater a z/OS system quickly if you are not careful...

Opinions expressed are my own...

Mike Shaw
MVS/QuickRef Support Group
Chicago-Soft, Ltd.

On Wed, Apr 27, 2022, 10:33 AM Joseph Reichman 
wrote:

> Yes that’s because I had a bad ptr for the IARV64 so my first abend was
> for D02 when I did my retry all I was attempting to do was to go somewhere
> in my SRB and set reg 15 with a bad ie non zero return code
>
> However as the documentation points out if your recovery is a FRR and in
> using IEAMSCHD it is that then stack entries made by a PC rtn have to be
> accounted for
>
> I have one more question which I’m sure only you can answer
>
> When I do an Estae and my SDWAGR registers are corrupted
>
> This typically happens in the case above where thru my carelessness I pass
> a bad ptr to an IBM service SVC or PC in that case I can always rely on
> SDWASR regs who’s values are right after I issue Estae since I do this all
> the way in the beginning of the program before I have a chance to make an
> error
>
> I the case of IEAMSCHD both of those registers sets seem to be the same
>
> In which case I have no choice but to percolate. Good news though even
> though I percolate I still get back control after the IEAMSCHD macro and
> SYNCHCOMPADDR is equal to 8 SYNCHCODEADR and SYNCRSNADDR then have
> SDWAABBCC and SDWACRC respectively right ?
>
> > On Apr 27, 2022, at 9:30 AM, Peter Relson  wrote:
> >
> > To be clear: are you saying that when you did not specify SDWALSLV at
> all you get 60D-14, and when you specified it with a value of 1 you did not?
> >
> > 
> > This what I see for 60d 
> > 
> >
> > It is just ridiculous that you continually ignore what someone writes,
> and then post only what you think matters instead of everything.
> >
> > The "explanation" is one piece of the information in the documentation.
> There are also the "actions". They are relevant too. Read them. In
> particular the one I referred to.
> >
> > You never described the order of SETFRR (or implied SETFRR if you
> scheduled the SRB to be given control with an FRR) vs BAKR vs PC. That must
> be understood.
> >
> > If the order is
> > SETFRR A
> > BAKR
> > PC to IARV64
> > PR
> > PR
> >
> > Then if you want to retry within the BAKR code you would need SDWALSLV =
> 1. If you want to retry prior to code running without that linkage stack
> level, then SDWALSLV should be left 0.
> >
> > If the order is
> > BAKR
> > SETFRR A
> > PC to IARV64
> > PR
> > SETFRR D
> > PR
> >
> > It would be 100%y WRONG for you to retry with SDWALSLV=1. That would be
> considered a system integrity error.
> > The retry address has to be owned by you and the retry has to be at the
> linkage stack level associated with that address.
> >
> > Peter Relson
> > z/OS Core Technology Design
> >
> >
> > --
> > For IBM-MAIN subscribe / signoff / archive access instructions,
> > send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Sasso, Len
If I specify either:

CONTENT-TYPE: APPLICATION/ZIP; BOUNDARY="SIMPLE BOUNDARY"
CONTENT-DISPOSITION: ATTACHMENT; FILENAME=TEST.ZIP
CONTENT-TRANSFER-ENCODING: BINARY

or

CONTENT-TYPE: APPLICATION/OCTET-STREAM; BOUNDARY="SIMPLE BOUNDARY"
CONTENT-DISPOSITION: ATTACHMENT; FILENAME=TEST.ZIP
CONTENT-TRANSFER-ENCODING: BINARY


I receive the message below from 7-Zip, when I attempt to extract the file:


Can not open file "TEST.ZIP" as archive.



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com





From: IBM Mainframe Discussion List  on behalf of 
Paul Gilmartin <000433f07816-dmarc-requ...@listserv.ua.edu>
Sent: Wednesday, April 27, 2022 12:21 PM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Send an email with a Zip file as an attachment?



 [External: Use caution with links & attachments]

On Wed, 27 Apr 2022 15:48:04 +, Sasso, Len  wrote:

>When I tried to open it with 7-Zip I received the following message:
>
>   Can not open file "abc.zip" as archive.
>
Is EBCDIC the problem?

On Wed, 27 Apr 2022 10:14:52 -0500, Carmen Vitullo wrote:

>I have an example, not attaching a zip file - do you have a product like
>PKZIP on the mainframe?
>

"jar"

Protect the .zip file with "uuencode -m", or (not SYSIN-safe) TSO TRANSMIT.

#! /bin/sh -x
# Run thsi script or paste into uudecode.
# Safest to extract in an empty directory.
uudecode -i <<{endmime}

( Comments hardly matter. )

begin-base64 644 makesea.zip
UEsDBBQIAKyVKlRzne3JKwEAAKoBAAAHABwAbWFrZXNlYVVUCQADNOHcYaer3WF1eAsAAQT1
AQAABABFj8FOwzAQRO/+iiEJSkuVVL2WIqQWlRM9UHHj4jibxmpiR/YGGlX5dxwB6nX1ZmZf
fIdloc3S11hcRIwXq9Z4k2eCp6bK6MJOKtZGnyCdqrX+ItgKySoP8Pbj9TjRAwpH8gxrYKzJOutY
Fg2hk1wb2VIuxP7wlMxCJyOzATo1tgBizLCVYdp3pHSl1TPmglRtkVxXcfywHDGfqF1D0qDvkC5T
SFPiu9ZMvpNqqu6cNlwhvfcpok8R34yyyei9N+Daa3jldMewLvzlmRBSFn1fkrIlTTpHWZFnhOuf
dkDCHKjteECpHSm2bsjFfwiZxmZzJVO2uqVRiBl2tm3JsEctXdkMaCUzuTx4iX//y2NYJfNb0E6q
iyhZRSOi5Lo/rDPPpTZjFNTFrToSP1BLAQIeAxQIAKyVKlRzne3JKwEAAKoBAAAHABgA
AAEAAADtgQBtYWtlc2VhVVQFAAM04dxhdXgLAAEE9QEAAAQAUEsFBgABAAEATQAA
AGwBAA==

{endmime}

--
gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Paul Gilmartin
On Wed, 27 Apr 2022 15:48:04 +, Sasso, Len  wrote:

>When I tried to open it with 7-Zip I received the following message:
>
>   Can not open file "abc.zip" as archive.
> 
Is EBCDIC the problem?

On Wed, 27 Apr 2022 10:14:52 -0500, Carmen Vitullo wrote:

>I have an example, not attaching a zip file - do you have a product like
>PKZIP on the mainframe?
>

"jar"

Protect the .zip file with "uuencode -m", or (not SYSIN-safe) TSO TRANSMIT.

#! /bin/sh -x
# Run thsi script or paste into uudecode.
# Safest to extract in an empty directory.
uudecode -i <<{endmime}

( Comments hardly matter. )

begin-base64 644 makesea.zip
UEsDBBQIAKyVKlRzne3JKwEAAKoBAAAHABwAbWFrZXNlYVVUCQADNOHcYaer3WF1eAsAAQT1
AQAABABFj8FOwzAQRO/+iiEJSkuVVL2WIqQWlRM9UHHj4jibxmpiR/YGGlX5dxwB6nX1ZmZf
fIdloc3S11hcRIwXq9Z4k2eCp6bK6MJOKtZGnyCdqrX+ItgKySoP8Pbj9TjRAwpH8gxrYKzJOutY
Fg2hk1wb2VIuxP7wlMxCJyOzATo1tgBizLCVYdp3pHSl1TPmglRtkVxXcfywHDGfqF1D0qDvkC5T
SFPiu9ZMvpNqqu6cNlwhvfcpok8R34yyyei9N+Daa3jldMewLvzlmRBSFn1fkrIlTTpHWZFnhOuf
dkDCHKjteECpHSm2bsjFfwiZxmZzJVO2uqVRiBl2tm3JsEctXdkMaCUzuTx4iX//y2NYJfNb0E6q
iyhZRSOi5Lo/rDPPpTZjFNTFrToSP1BLAQIeAxQIAKyVKlRzne3JKwEAAKoBAAAHABgA
AAEAAADtgQBtYWtlc2VhVVQFAAM04dxhdXgLAAEE9QEAAAQAUEsFBgABAAEATQAA
AGwBAA==
 
{endmime}

-- 
gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Checksum of "legacy" load module?

2022-04-27 Thread Charles Mills
One of the two systems is Dallas. FWIW, I got the no ICSF message on the other 
system.

Will try later today with cksum. Definitely should be good enough. This is not 
crypto or cybercrime, just "are these two programs the same?"

Charles


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Tony Harminc
Sent: Tuesday, April 26, 2022 6:19 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Checksum of "legacy" load module?

On Tue, 26 Apr 2022 at 19:32, Charles Mills  wrote:
>
> FSUMF437 ICSF is required but not available.
>
> :-(

Dallas?

Works on this zPDT under VM. And even better, gives the same answer as
on Gord's system! So either we both have the correct IEFBR14 or we
both have the same corrupted/infected one. Or the tool always gives
the same answer. Or [insert favourite crypto attack here].

Tony H.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Mike Schwab
Is there a RACF setting to allow a particular user to run any APF
program, or a resource authorization to run this APF program?

On Wed, Apr 27, 2022 at 3:28 PM Ituriel do Neto
<03427ec2837d-dmarc-requ...@listserv.ua.edu> wrote:
>
> Hi,
>
> The loadlib is APF in both cases because i'm using the same JCL.
>
> For instance, as STC it is started by the command S PROCNAME, while as a 
> batch job, using the following JCL:
>
> //JOBNAME (),CLASS=A,MSGCLASS=X,REGION=0M
> //A1EXEC PROCNAME
>
> The PROC is the same, expanded from the same PROCLIB.
>
> The only difference i could perceive is when it runs as batch, it is assigned 
> to my userid, and as STC, it is assigned a different one defined in STARTED 
> class.
>
>
> Ituriel do Nascimento Neto
> z/OS System Programmer
>
>
>
>
> Em quarta-feira, 27 de abril de 2022 10:45:47 BRT, Crawford, Robert C. 
> <01feadb2c2d2-dmarc-requ...@listserv.ua.edu> escreveu:
>
>
>
>
>
> Does your program get loaded out of an APF authorized library when it runs as 
> a STC?  What's in the STEPLIB concatenation for the batch job?  One 
> unauthorized library makes the whole STEPLIB unauthorized.
>
> Robert Crawford
> Mainframe Management
> United Services Automobile Association
> (210) 913-3822
>
> “Моє око! Я не повинен брати в нього пудинг!”
> Emma Andijewska
> Please send requests to mainframe management through our front door at  
> go/mfmfrontdoor
>
> -Original Message-
> From: IBM Mainframe Discussion List  On Behalf Of 
> Ituriel do Neto
> Sent: Wednesday, April 27, 2022 7:35 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: EXTERNAL: CIBXUTOK fetch protected
>
> Hi all,
>
> I'm trying to reach CIBXTOKN field under CIBX control block, and if the 
> program is executed as a batch job, this field is fetch protected, but if it 
> runs as an STC, the access is granted.
>
> What is the difference?
>
> Best Regards
>
> Ituriel do Nascimento Neto
> z/OS System Programmer
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
> lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN



-- 
Mike A Schwab, Springfield IL USA
Where do Forest Rangers go to get away from it all?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Lionel B. Dyck
As Mark mentioned - get a copy of XMITIP and you'll find an easy to use z/OS
email tool.  You can get it at www.cbttape.org/updates.htm and get file314
or from www.lbdsoftware.com. It supports pkzip, zip390, ISPZIP, SLIKZIP, and
includes a copy of infozip if you don't have a zip product.


Lionel B. Dyck <><
Website: https://www.lbdsoftware.com
Github: https://github.com/lbdyck

"Worry more about your character than your reputation. Character is what you
are, reputation merely what others think you are."   - - - John Wooden

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of
Sasso, Len
Sent: Wednesday, April 27, 2022 11:00 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Send an email with a Zip file as an attachment?

Sorry, when I tried to open it with 7-Zip, on my laptop, I received the
following message:

   Can not open file "abc.zip" as archive.



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com




From: IBM Mainframe Discussion List  on behalf of
Carmen Vitullo 
Sent: Wednesday, April 27, 2022 11:51 AM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Send an email with a Zip file as an attachment?



 [External: Use caution with links & attachments]

using

CONTENT-TYPE: APPLICATION/ZIP

CONTENT-TRANSFER-ENCODING: BINARY

on the IEBGENER job ?

I'm not sure if there's maybe a parm needed on the PKZIP job to be
comparable with PKZIP on window ?

Carmen


On 4/27/2022 10:48 AM, Sasso, Len wrote:
> When I tried to open it with 7-Zip I received the following message:
>
> Can not open file "abc.zip" as archive.
>
>
>
>
>
> Thank You and Please Be Safe!
>
> Len Sasso
> Systems Administrator Senior
> CSRA, A General Dynamics Information Technology Company
> 327 Columbia TPKE
> Rensselaer, NY 12144
>
> TEAM: Together Everyone Achieves More
>
> Office Hours: M-F  7 AM - 3:45 PM
>
> Vacation:
>
> Phone: (518) 257-4209
> Cell: (518) 894-0879
> Fax: (518) 257-4300
> len.sa...@gdit.com
> URL:www.gdit.com
>
>
>
>
> 
> From: IBM Mainframe Discussion List  on 
> behalf of Carmen Vitullo
> Sent: Wednesday, April 27, 2022 11:32 AM To:IBM-MAIN@LISTSERV.UA.EDU  
> 
> Subject: Re: Send an email with a Zip file as an attachment?
>
>
>
>   [External: Use caution with links & attachments]
>
> ok, i found an older JCL from a former job
>
> SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT
>
> MIME-VERSION: 1.0
>
> CONTENT-TYPE: APPLICATION/ZIP
>
> CONTENT-TRANSFER-ENCODING: BINARY
>
> CONTENT-DESCRIPTION: TEST ZIP ATTACHMENT
>
> CONTENT-DISPOSITION: ATTACHMENT; FILENAME=CPV8281.ZIP -
>
>
> On 4/27/2022 10:28 AM, Sasso, Len wrote:
>> Do you have an example using IEBGENER with a Zip file attachment?
>>
>>
>>
>> Thank You and Please Be Safe!
>>
>> Len Sasso
>> Systems Administrator Senior
>> CSRA, A General Dynamics Information Technology Company
>> 327 Columbia TPKE
>> Rensselaer, NY 12144
>>
>> TEAM: Together Everyone Achieves More
>>
>> Office Hours: M-F  7 AM - 3:45 PM
>>
>> Vacation:
>>
>> Phone: (518) 257-4209
>> Cell: (518) 894-0879
>> Fax: (518) 257-4300
>> len.sa...@gdit.com
>> URL:www.gdit.com
>>
>>
>>
>> 
>> From: IBM Mainframe Discussion List   on behalf
of Carmen Vitullo
>> Sent: Wednesday, April 27, 2022 11:26 AM
>> To:IBM-MAIN@LISTSERV.UA.EDU   
>> Subject: Re: Send an email with a Zip file as an attachment?
>>
>>
>>
>>[External: Use caution with links & attachments]
>>
>> one more better example
>>
>> //SMTPTEST EXEC PGM=IEBGENER
>>
>> //SYSPRINT DD SYSOUT=*
>>
>> //SYSOUT   DD SYSOUT=*
>>
>> //SYSINDD DUMMY
>>
>> //SYSUT1DD *
>>
>> HELO LITJES2T
>>
>> MAILFROM:donotre...@site.com
>>
>> RCPT TO:<@MAIL.NET:u...@asite.com>
>>
>> DATA
>>
>> SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT
>>
>> MIME-VERSION: 1.0
>>
>> CONTENT-TYPE: TEXT/PLAIN
>>
>> CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -
>>
>> /*
>>
>> //SYSUT2   DD SYSOUT=(B,SMTP)
>>
>> On 4/27/2022 10:20 AM, Sasso, Len wrote:
>>> I have already created the Zip file with PKZIP (LRECL=80).
>>> An example of using IEBGENER and attaching the Zip file would be
appreciated.
>>>
>>>
>>> Thank You and Please Be Safe!
>>>
>>> Len Sasso
>>> Systems Administrator Senior
>>> CSRA, A General Dynamics Information Technology Company
>>> 327 Columbia TPKE
>>> Rensselaer, NY 12144
>>>
>>> TEAM: Together Everyone Achieves More
>>>
>>> Office Hours: M-F  7 AM - 3:45 PM
>>>
>>> Vacation:
>>>
>>> Phone: (518) 257-4209
>>> Cell: (518) 894-0879
>>> Fax: (518) 257-4300
>>> len.sa...@gdit.com
>>> URL:www.gdit.com
>>>
>>>
>>>
>>>
>>> 

Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Carmen Vitullo
I found out i have pkzip on our system, I created a test archive file 
and emailed it to myself. 310 bytes, when I save the attachment on my PC 
it's zero bytes :( and I cannot open it, so, something is corrupting the 
file for me, I suspect it's all security related for me :(


Carmen

On 4/27/2022 11:00 AM, Sasso, Len wrote:

Sorry, when I tried to open it with 7-Zip, on my laptop, I received the 
following message:

Can not open file "abc.zip" as archive.



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




From: IBM Mainframe Discussion List  on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:51 AM
To:IBM-MAIN@LISTSERV.UA.EDU  
Subject: Re: Send an email with a Zip file as an attachment?



  [External: Use caution with links & attachments]

using

CONTENT-TYPE: APPLICATION/ZIP

CONTENT-TRANSFER-ENCODING: BINARY

on the IEBGENER job ?

I'm not sure if there's maybe a parm needed on the PKZIP job to be
comparable with PKZIP on window ?

Carmen


On 4/27/2022 10:48 AM, Sasso, Len wrote:

When I tried to open it with 7-Zip I received the following message:

 Can not open file "abc.zip" as archive.





Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com





From: IBM Mainframe Discussion List   on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:32 AM
To:IBM-MAIN@LISTSERV.UA.EDU   
Subject: Re: Send an email with a Zip file as an attachment?



   [External: Use caution with links & attachments]

ok, i found an older JCL from a former job

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: APPLICATION/ZIP

CONTENT-TRANSFER-ENCODING: BINARY

CONTENT-DESCRIPTION: TEST ZIP ATTACHMENT

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=CPV8281.ZIP -


On 4/27/2022 10:28 AM, Sasso, Len wrote:

Do you have an example using IEBGENER with a Zip file attachment?



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




From: IBM Mainframe Discussion Liston behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:26 AM
To:IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Send an email with a Zip file as an attachment?



[External: Use caution with links & attachments]

one more better example

//SMTPTEST EXEC PGM=IEBGENER

//SYSPRINT DD SYSOUT=*

//SYSOUT   DD SYSOUT=*

//SYSINDD DUMMY

//SYSUT1DD *

HELO LITJES2T

MAILFROM:donotre...@site.com

RCPT TO:<@MAIL.NET:u...@asite.com>

DATA

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: TEXT/PLAIN

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -

/*

//SYSUT2   DD SYSOUT=(B,SMTP)

On 4/27/2022 10:20 AM, Sasso, Len wrote:

I have already created the Zip file with PKZIP (LRECL=80).
An example of using IEBGENER and attaching the Zip file would be appreciated.


Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com





From: IBM Mainframe Discussion List on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:14 AM
To:IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Send an email with a Zip file as an attachment?



 [External: Use caution with links & attachments]

I have an example, not attaching a zip file - do you have a product like
PKZIP on the mainframe?

if you need an example of using IEBGENER and attaching a file I can
provide an example

Carmen

On 4/27/2022 10:04 AM, Sasso, Len wrote:

Is it possible to send an email with a Zip file as an attachment, from our 
mainframe (z/OS 2.3) executing IEBGENER via SMTP?
If so, could you please provide an example?




Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A 

Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Sasso, Len
Sorry, when I tried to open it with 7-Zip, on my laptop, I received the 
following message:

   Can not open file "abc.zip" as archive.



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com




From: IBM Mainframe Discussion List  on behalf of 
Carmen Vitullo 
Sent: Wednesday, April 27, 2022 11:51 AM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Send an email with a Zip file as an attachment?



 [External: Use caution with links & attachments]

using

CONTENT-TYPE: APPLICATION/ZIP

CONTENT-TRANSFER-ENCODING: BINARY

on the IEBGENER job ?

I'm not sure if there's maybe a parm needed on the PKZIP job to be
comparable with PKZIP on window ?

Carmen


On 4/27/2022 10:48 AM, Sasso, Len wrote:
> When I tried to open it with 7-Zip I received the following message:
>
> Can not open file "abc.zip" as archive.
>
>
>
>
>
> Thank You and Please Be Safe!
>
> Len Sasso
> Systems Administrator Senior
> CSRA, A General Dynamics Information Technology Company
> 327 Columbia TPKE
> Rensselaer, NY 12144
>
> TEAM: Together Everyone Achieves More
>
> Office Hours: M-F  7 AM - 3:45 PM
>
> Vacation:
>
> Phone: (518) 257-4209
> Cell: (518) 894-0879
> Fax: (518) 257-4300
> len.sa...@gdit.com
> URL:www.gdit.com
>
>
>
>
> 
> From: IBM Mainframe Discussion List  on behalf of 
> Carmen Vitullo
> Sent: Wednesday, April 27, 2022 11:32 AM
> To:IBM-MAIN@LISTSERV.UA.EDU  
> Subject: Re: Send an email with a Zip file as an attachment?
>
>
>
>   [External: Use caution with links & attachments]
>
> ok, i found an older JCL from a former job
>
> SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT
>
> MIME-VERSION: 1.0
>
> CONTENT-TYPE: APPLICATION/ZIP
>
> CONTENT-TRANSFER-ENCODING: BINARY
>
> CONTENT-DESCRIPTION: TEST ZIP ATTACHMENT
>
> CONTENT-DISPOSITION: ATTACHMENT; FILENAME=CPV8281.ZIP -
>
>
> On 4/27/2022 10:28 AM, Sasso, Len wrote:
>> Do you have an example using IEBGENER with a Zip file attachment?
>>
>>
>>
>> Thank You and Please Be Safe!
>>
>> Len Sasso
>> Systems Administrator Senior
>> CSRA, A General Dynamics Information Technology Company
>> 327 Columbia TPKE
>> Rensselaer, NY 12144
>>
>> TEAM: Together Everyone Achieves More
>>
>> Office Hours: M-F  7 AM - 3:45 PM
>>
>> Vacation:
>>
>> Phone: (518) 257-4209
>> Cell: (518) 894-0879
>> Fax: (518) 257-4300
>> len.sa...@gdit.com
>> URL:www.gdit.com
>>
>>
>>
>> 
>> From: IBM Mainframe Discussion List   on behalf of 
>> Carmen Vitullo
>> Sent: Wednesday, April 27, 2022 11:26 AM
>> To:IBM-MAIN@LISTSERV.UA.EDU   
>> Subject: Re: Send an email with a Zip file as an attachment?
>>
>>
>>
>>[External: Use caution with links & attachments]
>>
>> one more better example
>>
>> //SMTPTEST EXEC PGM=IEBGENER
>>
>> //SYSPRINT DD SYSOUT=*
>>
>> //SYSOUT   DD SYSOUT=*
>>
>> //SYSINDD DUMMY
>>
>> //SYSUT1DD *
>>
>> HELO LITJES2T
>>
>> MAILFROM:donotre...@site.com
>>
>> RCPT TO:<@MAIL.NET:u...@asite.com>
>>
>> DATA
>>
>> SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT
>>
>> MIME-VERSION: 1.0
>>
>> CONTENT-TYPE: TEXT/PLAIN
>>
>> CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -
>>
>> /*
>>
>> //SYSUT2   DD SYSOUT=(B,SMTP)
>>
>> On 4/27/2022 10:20 AM, Sasso, Len wrote:
>>> I have already created the Zip file with PKZIP (LRECL=80).
>>> An example of using IEBGENER and attaching the Zip file would be 
>>> appreciated.
>>>
>>>
>>> Thank You and Please Be Safe!
>>>
>>> Len Sasso
>>> Systems Administrator Senior
>>> CSRA, A General Dynamics Information Technology Company
>>> 327 Columbia TPKE
>>> Rensselaer, NY 12144
>>>
>>> TEAM: Together Everyone Achieves More
>>>
>>> Office Hours: M-F  7 AM - 3:45 PM
>>>
>>> Vacation:
>>>
>>> Phone: (518) 257-4209
>>> Cell: (518) 894-0879
>>> Fax: (518) 257-4300
>>> len.sa...@gdit.com
>>> URL:www.gdit.com
>>>
>>>
>>>
>>>
>>> 
>>> From: IBM Mainframe Discussion Liston behalf 
>>> of Carmen Vitullo
>>> Sent: Wednesday, April 27, 2022 11:14 AM
>>> To:IBM-MAIN@LISTSERV.UA.EDU
>>> Subject: Re: Send an email with a Zip file as an attachment?
>>>
>>>
>>>
>>> [External: Use caution with links & attachments]
>>>
>>> I have an example, not attaching a zip file - do you have a product like
>>> PKZIP on the mainframe?
>>>
>>> if you need an example of using IEBGENER and attaching a file I can
>>> provide an example
>>>
>>> Carmen
>>>
>>> On 4/27/2022 10:04 AM, Sasso, Len wrote:
 Is it possible to send an email with a Zip file as an attachment, from our 
 mainframe (z/OS 2.3) executing IEBGENER via SMTP?
 If so, could 

Re: Checksum of "legacy" load module?

2022-04-27 Thread Gord Tomlin

On 2022-04-27 03:39 AM, Colin Paice wrote:

try md5
https://www.ibm.com/docs/en/zos/2.4.0?topic=descriptions-md5-calculate-check-md5-cryptographic-hashes


md5 was added to z/OS at the same time as sha256 (z/OS 2.4 June 2020), 
and has a dependency on ICSF (described in the doc). The OP has already 
indicated that he can't use it.


--

--

Regards, Gord Tomlin
Action Software International
(a division of Mazda Computer Corporation)
Tel: (905) 470-7113, Fax: (905) 470-6507
Support: https://actionsoftware.com/support/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Carmen Vitullo

using

CONTENT-TYPE: APPLICATION/ZIP

CONTENT-TRANSFER-ENCODING: BINARY

on the IEBGENER job ?

I'm not sure if there's maybe a parm needed on the PKZIP job to be 
comparable with PKZIP on window ?


Carmen


On 4/27/2022 10:48 AM, Sasso, Len wrote:

When I tried to open it with 7-Zip I received the following message:

Can not open file "abc.zip" as archive.





Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com





From: IBM Mainframe Discussion List  on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:32 AM
To:IBM-MAIN@LISTSERV.UA.EDU  
Subject: Re: Send an email with a Zip file as an attachment?



  [External: Use caution with links & attachments]

ok, i found an older JCL from a former job

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: APPLICATION/ZIP

CONTENT-TRANSFER-ENCODING: BINARY

CONTENT-DESCRIPTION: TEST ZIP ATTACHMENT

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=CPV8281.ZIP -


On 4/27/2022 10:28 AM, Sasso, Len wrote:

Do you have an example using IEBGENER with a Zip file attachment?



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




From: IBM Mainframe Discussion List   on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:26 AM
To:IBM-MAIN@LISTSERV.UA.EDU   
Subject: Re: Send an email with a Zip file as an attachment?



   [External: Use caution with links & attachments]

one more better example

//SMTPTEST EXEC PGM=IEBGENER

//SYSPRINT DD SYSOUT=*

//SYSOUT   DD SYSOUT=*

//SYSINDD DUMMY

//SYSUT1DD *

HELO LITJES2T

MAILFROM:donotre...@site.com

RCPT TO:<@MAIL.NET:u...@asite.com>

DATA

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: TEXT/PLAIN

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -

/*

//SYSUT2   DD SYSOUT=(B,SMTP)

On 4/27/2022 10:20 AM, Sasso, Len wrote:

I have already created the Zip file with PKZIP (LRECL=80).
An example of using IEBGENER and attaching the Zip file would be appreciated.


Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com





From: IBM Mainframe Discussion Liston behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:14 AM
To:IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Send an email with a Zip file as an attachment?



[External: Use caution with links & attachments]

I have an example, not attaching a zip file - do you have a product like
PKZIP on the mainframe?

if you need an example of using IEBGENER and attaching a file I can
provide an example

Carmen

On 4/27/2022 10:04 AM, Sasso, Len wrote:

Is it possible to send an email with a Zip file as an attachment, from our 
mainframe (z/OS 2.3) executing IEBGENER via SMTP?
If so, could you please provide an example?




Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




--
For IBM-MAIN subscribe / signoff / archive access instructions,
sendemailtolists...@listserv.ua.edu with the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to
succeed, but I am bound to live by the light that I have. I must stand
with anybody that stands right, and stand with him while he is right,
and part with him when he goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
sendemailtolists...@listserv.ua.eduwith the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,

Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Sasso, Len
When I tried to open it with 7-Zip I received the following message:

   Can not open file "abc.zip" as archive.





Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com





From: IBM Mainframe Discussion List  on behalf of 
Carmen Vitullo 
Sent: Wednesday, April 27, 2022 11:32 AM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Send an email with a Zip file as an attachment?



 [External: Use caution with links & attachments]

ok, i found an older JCL from a former job

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: APPLICATION/ZIP

CONTENT-TRANSFER-ENCODING: BINARY

CONTENT-DESCRIPTION: TEST ZIP ATTACHMENT

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=CPV8281.ZIP -


On 4/27/2022 10:28 AM, Sasso, Len wrote:
> Do you have an example using IEBGENER with a Zip file attachment?
>
>
>
> Thank You and Please Be Safe!
>
> Len Sasso
> Systems Administrator Senior
> CSRA, A General Dynamics Information Technology Company
> 327 Columbia TPKE
> Rensselaer, NY 12144
>
> TEAM: Together Everyone Achieves More
>
> Office Hours: M-F  7 AM - 3:45 PM
>
> Vacation:
>
> Phone: (518) 257-4209
> Cell: (518) 894-0879
> Fax: (518) 257-4300
> len.sa...@gdit.com
> URL:www.gdit.com
>
>
>
> 
> From: IBM Mainframe Discussion List  on behalf of 
> Carmen Vitullo
> Sent: Wednesday, April 27, 2022 11:26 AM
> To:IBM-MAIN@LISTSERV.UA.EDU  
> Subject: Re: Send an email with a Zip file as an attachment?
>
>
>
>   [External: Use caution with links & attachments]
>
> one more better example
>
> //SMTPTEST EXEC PGM=IEBGENER
>
> //SYSPRINT DD SYSOUT=*
>
> //SYSOUT   DD SYSOUT=*
>
> //SYSINDD DUMMY
>
> //SYSUT1DD *
>
> HELO LITJES2T
>
> MAILFROM:donotre...@site.com
>
> RCPT TO:<@MAIL.NET:u...@asite.com>
>
> DATA
>
> SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT
>
> MIME-VERSION: 1.0
>
> CONTENT-TYPE: TEXT/PLAIN
>
> CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -
>
> /*
>
> //SYSUT2   DD SYSOUT=(B,SMTP)
>
> On 4/27/2022 10:20 AM, Sasso, Len wrote:
>> I have already created the Zip file with PKZIP (LRECL=80).
>> An example of using IEBGENER and attaching the Zip file would be appreciated.
>>
>>
>> Thank You and Please Be Safe!
>>
>> Len Sasso
>> Systems Administrator Senior
>> CSRA, A General Dynamics Information Technology Company
>> 327 Columbia TPKE
>> Rensselaer, NY 12144
>>
>> TEAM: Together Everyone Achieves More
>>
>> Office Hours: M-F  7 AM - 3:45 PM
>>
>> Vacation:
>>
>> Phone: (518) 257-4209
>> Cell: (518) 894-0879
>> Fax: (518) 257-4300
>> len.sa...@gdit.com
>> URL:www.gdit.com
>>
>>
>>
>>
>> 
>> From: IBM Mainframe Discussion List   on behalf of 
>> Carmen Vitullo
>> Sent: Wednesday, April 27, 2022 11:14 AM
>> To:IBM-MAIN@LISTSERV.UA.EDU   
>> Subject: Re: Send an email with a Zip file as an attachment?
>>
>>
>>
>>[External: Use caution with links & attachments]
>>
>> I have an example, not attaching a zip file - do you have a product like
>> PKZIP on the mainframe?
>>
>> if you need an example of using IEBGENER and attaching a file I can
>> provide an example
>>
>> Carmen
>>
>> On 4/27/2022 10:04 AM, Sasso, Len wrote:
>>> Is it possible to send an email with a Zip file as an attachment, from our 
>>> mainframe (z/OS 2.3) executing IEBGENER via SMTP?
>>> If so, could you please provide an example?
>>>
>>>
>>>
>>>
>>> Thank You and Please Be Safe!
>>>
>>> Len Sasso
>>> Systems Administrator Senior
>>> CSRA, A General Dynamics Information Technology Company
>>> 327 Columbia TPKE
>>> Rensselaer, NY 12144
>>>
>>> TEAM: Together Everyone Achieves More
>>>
>>> Office Hours: M-F  7 AM - 3:45 PM
>>>
>>> Vacation:
>>>
>>> Phone: (518) 257-4209
>>> Cell: (518) 894-0879
>>> Fax: (518) 257-4300
>>> len.sa...@gdit.com
>>> URL:www.gdit.com
>>>
>>>
>>>
>>>
>>> --
>>> For IBM-MAIN subscribe / signoff / archive access instructions,
>>> sendemailtolists...@listserv.ua.eduwith the message: INFO IBM-MAIN
>>>
>>>
>> --
>> /I am not bound to win, but I am bound to be true. I am not bound to
>> succeed, but I am bound to live by the light that I have. I must stand
>> with anybody that stands right, and stand with him while he is right,
>> and part with him when he goes wrong. *Abraham Lincoln*/
>>
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send emailtolists...@listserv.ua.edu   with the message: INFO IBM-MAIN
>>
>> 

Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Carmen Vitullo

ok, i found an older JCL from a former job

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: APPLICATION/ZIP

CONTENT-TRANSFER-ENCODING: BINARY

CONTENT-DESCRIPTION: TEST ZIP ATTACHMENT

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=CPV8281.ZIP -


On 4/27/2022 10:28 AM, Sasso, Len wrote:

Do you have an example using IEBGENER with a Zip file attachment?



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




From: IBM Mainframe Discussion List  on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:26 AM
To:IBM-MAIN@LISTSERV.UA.EDU  
Subject: Re: Send an email with a Zip file as an attachment?



  [External: Use caution with links & attachments]

one more better example

//SMTPTEST EXEC PGM=IEBGENER

//SYSPRINT DD SYSOUT=*

//SYSOUT   DD SYSOUT=*

//SYSINDD DUMMY

//SYSUT1DD *

HELO LITJES2T

MAILFROM:donotre...@site.com

RCPT TO:<@MAIL.NET:u...@asite.com>

DATA

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: TEXT/PLAIN

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -

/*

//SYSUT2   DD SYSOUT=(B,SMTP)

On 4/27/2022 10:20 AM, Sasso, Len wrote:

I have already created the Zip file with PKZIP (LRECL=80).
An example of using IEBGENER and attaching the Zip file would be appreciated.


Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com





From: IBM Mainframe Discussion List   on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:14 AM
To:IBM-MAIN@LISTSERV.UA.EDU   
Subject: Re: Send an email with a Zip file as an attachment?



   [External: Use caution with links & attachments]

I have an example, not attaching a zip file - do you have a product like
PKZIP on the mainframe?

if you need an example of using IEBGENER and attaching a file I can
provide an example

Carmen

On 4/27/2022 10:04 AM, Sasso, Len wrote:

Is it possible to send an email with a Zip file as an attachment, from our 
mainframe (z/OS 2.3) executing IEBGENER via SMTP?
If so, could you please provide an example?




Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




--
For IBM-MAIN subscribe / signoff / archive access instructions,
sendemailtolists...@listserv.ua.eduwith the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to
succeed, but I am bound to live by the light that I have. I must stand
with anybody that stands right, and stand with him while he is right,
and part with him when he goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send emailtolists...@listserv.ua.edu   with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send emailtolists...@listserv.ua.edu   with the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to
succeed, but I am bound to live by the light that I have. I must stand
with anybody that stands right, and stand with him while he is right,
and part with him when he goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to 
succeed, but I am bound to live by the light that I have. I must stand 
with anybody that stands right, and stand with him while he is right, 
and part with him when he goes wrong. *Abraham Lincoln*/



Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Carmen Vitullo

I don't have any zip products but it's the same statment

I think the CONTENT-TYPE needs to be changed.

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -

let me see if I have an example of attaching a binary file

On 4/27/2022 10:28 AM, Sasso, Len wrote:

Do you have an example using IEBGENER with a Zip file attachment?



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




From: IBM Mainframe Discussion List  on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:26 AM
To:IBM-MAIN@LISTSERV.UA.EDU  
Subject: Re: Send an email with a Zip file as an attachment?



  [External: Use caution with links & attachments]

one more better example

//SMTPTEST EXEC PGM=IEBGENER

//SYSPRINT DD SYSOUT=*

//SYSOUT   DD SYSOUT=*

//SYSINDD DUMMY

//SYSUT1DD *

HELO LITJES2T

MAILFROM:donotre...@site.com

RCPT TO:<@MAIL.NET:u...@asite.com>

DATA

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: TEXT/PLAIN

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -

/*

//SYSUT2   DD SYSOUT=(B,SMTP)

On 4/27/2022 10:20 AM, Sasso, Len wrote:

I have already created the Zip file with PKZIP (LRECL=80).
An example of using IEBGENER and attaching the Zip file would be appreciated.


Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com





From: IBM Mainframe Discussion List   on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:14 AM
To:IBM-MAIN@LISTSERV.UA.EDU   
Subject: Re: Send an email with a Zip file as an attachment?



   [External: Use caution with links & attachments]

I have an example, not attaching a zip file - do you have a product like
PKZIP on the mainframe?

if you need an example of using IEBGENER and attaching a file I can
provide an example

Carmen

On 4/27/2022 10:04 AM, Sasso, Len wrote:

Is it possible to send an email with a Zip file as an attachment, from our 
mainframe (z/OS 2.3) executing IEBGENER via SMTP?
If so, could you please provide an example?




Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




--
For IBM-MAIN subscribe / signoff / archive access instructions,
sendemailtolists...@listserv.ua.eduwith the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to
succeed, but I am bound to live by the light that I have. I must stand
with anybody that stands right, and stand with him while he is right,
and part with him when he goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send emailtolists...@listserv.ua.edu   with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send emailtolists...@listserv.ua.edu   with the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to
succeed, but I am bound to live by the light that I have. I must stand
with anybody that stands right, and stand with him while he is right,
and part with him when he goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to 
succeed, but I am bound to live by the light that I have. I must stand 
with anybody that stands right, and stand with him while he is right, 
and part with him when he goes wrong. *Abraham Lincoln*/


--
For 

Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Sasso, Len
Do you have an example using IEBGENER with a Zip file attachment?



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com




From: IBM Mainframe Discussion List  on behalf of 
Carmen Vitullo 
Sent: Wednesday, April 27, 2022 11:26 AM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Send an email with a Zip file as an attachment?



 [External: Use caution with links & attachments]

one more better example

//SMTPTEST EXEC PGM=IEBGENER

//SYSPRINT DD SYSOUT=*

//SYSOUT   DD SYSOUT=*

//SYSINDD DUMMY

//SYSUT1DD *

HELO LITJES2T

MAIL FROM:donotre...@site.com

RCPT TO:<@MAIL.NET:u...@asite.com>

DATA

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: TEXT/PLAIN

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -

/*

//SYSUT2   DD SYSOUT=(B,SMTP)

On 4/27/2022 10:20 AM, Sasso, Len wrote:
> I have already created the Zip file with PKZIP (LRECL=80).
> An example of using IEBGENER and attaching the Zip file would be appreciated.
>
>
> Thank You and Please Be Safe!
>
> Len Sasso
> Systems Administrator Senior
> CSRA, A General Dynamics Information Technology Company
> 327 Columbia TPKE
> Rensselaer, NY 12144
>
> TEAM: Together Everyone Achieves More
>
> Office Hours: M-F  7 AM - 3:45 PM
>
> Vacation:
>
> Phone: (518) 257-4209
> Cell: (518) 894-0879
> Fax: (518) 257-4300
> len.sa...@gdit.com
> URL:www.gdit.com
>
>
>
>
> 
> From: IBM Mainframe Discussion List  on behalf of 
> Carmen Vitullo
> Sent: Wednesday, April 27, 2022 11:14 AM
> To:IBM-MAIN@LISTSERV.UA.EDU  
> Subject: Re: Send an email with a Zip file as an attachment?
>
>
>
>   [External: Use caution with links & attachments]
>
> I have an example, not attaching a zip file - do you have a product like
> PKZIP on the mainframe?
>
> if you need an example of using IEBGENER and attaching a file I can
> provide an example
>
> Carmen
>
> On 4/27/2022 10:04 AM, Sasso, Len wrote:
>> Is it possible to send an email with a Zip file as an attachment, from our 
>> mainframe (z/OS 2.3) executing IEBGENER via SMTP?
>> If so, could you please provide an example?
>>
>>
>>
>>
>> Thank You and Please Be Safe!
>>
>> Len Sasso
>> Systems Administrator Senior
>> CSRA, A General Dynamics Information Technology Company
>> 327 Columbia TPKE
>> Rensselaer, NY 12144
>>
>> TEAM: Together Everyone Achieves More
>>
>> Office Hours: M-F  7 AM - 3:45 PM
>>
>> Vacation:
>>
>> Phone: (518) 257-4209
>> Cell: (518) 894-0879
>> Fax: (518) 257-4300
>> len.sa...@gdit.com
>> URL:www.gdit.com
>>
>>
>>
>>
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send emailtolists...@listserv.ua.edu   with the message: INFO IBM-MAIN
>>
>>
> --
> /I am not bound to win, but I am bound to be true. I am not bound to
> succeed, but I am bound to live by the light that I have. I must stand
> with anybody that stands right, and stand with him while he is right,
> and part with him when he goes wrong. *Abraham Lincoln*/
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN
>
>
--
/I am not bound to win, but I am bound to be true. I am not bound to
succeed, but I am bound to live by the light that I have. I must stand
with anybody that stands right, and stand with him while he is right,
and part with him when he goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Ituriel do Neto
Hi,

The loadlib is APF in both cases because i'm using the same JCL.

For instance, as STC it is started by the command S PROCNAME, while as a batch 
job, using the following JCL:

//JOBNAME (),CLASS=A,MSGCLASS=X,REGION=0M
//A1            EXEC PROCNAME

The PROC is the same, expanded from the same PROCLIB. 

The only difference i could perceive is when it runs as batch, it is assigned 
to my userid, and as STC, it is assigned a different one defined in STARTED 
class.


Ituriel do Nascimento Neto
z/OS System Programmer




Em quarta-feira, 27 de abril de 2022 10:45:47 BRT, Crawford, Robert C. 
<01feadb2c2d2-dmarc-requ...@listserv.ua.edu> escreveu: 





Does your program get loaded out of an APF authorized library when it runs as a 
STC?  What's in the STEPLIB concatenation for the batch job?  One unauthorized 
library makes the whole STEPLIB unauthorized.  

Robert Crawford
Mainframe Management
United Services Automobile Association
(210) 913-3822

“Моє око! Я не повинен брати в нього пудинг!”
Emma Andijewska
Please send requests to mainframe management through our front door at  
go/mfmfrontdoor

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Ituriel do Neto
Sent: Wednesday, April 27, 2022 7:35 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: EXTERNAL: CIBXUTOK fetch protected

Hi all,

I'm trying to reach CIBXTOKN field under CIBX control block, and if the program 
is executed as a batch job, this field is fetch protected, but if it runs as an 
STC, the access is granted.

What is the difference?

Best Regards

Ituriel do Nascimento Neto
z/OS System Programmer

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Mark Regan
You can use XMITIP, from Lionel Dyck. You can get it from his website at 
https://www.lbdsoftware.com

​Regards,

Mark Regan, K8MTR General, EN80tg
CTO1 USNR-Retired (1969-1991), 
RUENAAA/CNO WASHINGTON DC//OP-009QCP
Nationwide Insurance, Retired, 1986-2017
z/OS Network Software Consultant (z NetView, z/OS Communications Server)
Contractor, Checks & Balances, Inc.
Email: marktre...@gmail.com
LinkedIn:  https://www.linkedin.com/in/mark-t-regan

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Sasso, Len
Sent: Wednesday, April 27, 2022 11:05
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Send an email with a Zip file as an attachment?

Is it possible to send an email with a Zip file as an attachment, from our 
mainframe (z/OS 2.3) executing IEBGENER via SMTP?
If so, could you please provide an example?




Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com




--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Carmen Vitullo

one more better example

//SMTPTEST EXEC PGM=IEBGENER

//SYSPRINT DD SYSOUT=*

//SYSOUT   DD SYSOUT=*

//SYSIN    DD DUMMY

//SYSUT1    DD *

HELO LITJES2T

MAIL FROM:donotre...@site.com

RCPT TO:<@MAIL.NET:u...@asite.com>

DATA

SUBJECT: Z/OS SYST SMTP MAIL TESTING WITH ATTACHMENT

MIME-VERSION: 1.0

CONTENT-TYPE: TEXT/PLAIN

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=user.JCL.CNTL(BR14) -

/*

//SYSUT2   DD SYSOUT=(B,SMTP)

On 4/27/2022 10:20 AM, Sasso, Len wrote:

I have already created the Zip file with PKZIP (LRECL=80).
An example of using IEBGENER and attaching the Zip file would be appreciated.


Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com





From: IBM Mainframe Discussion List  on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:14 AM
To:IBM-MAIN@LISTSERV.UA.EDU  
Subject: Re: Send an email with a Zip file as an attachment?



  [External: Use caution with links & attachments]

I have an example, not attaching a zip file - do you have a product like
PKZIP on the mainframe?

if you need an example of using IEBGENER and attaching a file I can
provide an example

Carmen

On 4/27/2022 10:04 AM, Sasso, Len wrote:

Is it possible to send an email with a Zip file as an attachment, from our 
mainframe (z/OS 2.3) executing IEBGENER via SMTP?
If so, could you please provide an example?




Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




--
For IBM-MAIN subscribe / signoff / archive access instructions,
send emailtolists...@listserv.ua.edu   with the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to
succeed, but I am bound to live by the light that I have. I must stand
with anybody that stands right, and stand with him while he is right,
and part with him when he goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to 
succeed, but I am bound to live by the light that I have. I must stand 
with anybody that stands right, and stand with him while he is right, 
and part with him when he goes wrong. *Abraham Lincoln*/


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Carmen Vitullo

sure, below is one example

//SMTPTEST EXEC PGM=IEBGENER

//SYSPRINT DD SYSOUT=*

//SYSOUT   DD SYSOUT=*

//SYSIN    DD DUMMY

//SYSUT1    DD DSN=my.MAIL.HEADER,DISP=SHR

HELO sitename

MAIL FROM:

RCPT TO:u...@emdomain.com

DATA

SUBJECT:SMTP TESTING ATTACHEMENT

MIME-VERSION: 1.0

CONTENT-TYPE: TEXT/PLAIN

CONTENT-DISPOSITION: ATTACHMENT; FILENAME=mvsfile.DOS.CERT.PRINT

/*

//SYSUT2   DD SYSOUT=(B,SMTP)

//

On 4/27/2022 10:20 AM, Sasso, Len wrote:

I have already created the Zip file with PKZIP (LRECL=80).
An example of using IEBGENER and attaching the Zip file would be appreciated.


Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com





From: IBM Mainframe Discussion List  on behalf of Carmen 
Vitullo
Sent: Wednesday, April 27, 2022 11:14 AM
To:IBM-MAIN@LISTSERV.UA.EDU  
Subject: Re: Send an email with a Zip file as an attachment?



  [External: Use caution with links & attachments]

I have an example, not attaching a zip file - do you have a product like
PKZIP on the mainframe?

if you need an example of using IEBGENER and attaching a file I can
provide an example

Carmen

On 4/27/2022 10:04 AM, Sasso, Len wrote:

Is it possible to send an email with a Zip file as an attachment, from our 
mainframe (z/OS 2.3) executing IEBGENER via SMTP?
If so, could you please provide an example?




Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




--
For IBM-MAIN subscribe / signoff / archive access instructions,
send emailtolists...@listserv.ua.edu   with the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to
succeed, but I am bound to live by the light that I have. I must stand
with anybody that stands right, and stand with him while he is right,
and part with him when he goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to 
succeed, but I am bound to live by the light that I have. I must stand 
with anybody that stands right, and stand with him while he is right, 
and part with him when he goes wrong. *Abraham Lincoln*/


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Sasso, Len
I have already created the Zip file with PKZIP (LRECL=80).
An example of using IEBGENER and attaching the Zip file would be appreciated.


Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com





From: IBM Mainframe Discussion List  on behalf of 
Carmen Vitullo 
Sent: Wednesday, April 27, 2022 11:14 AM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Send an email with a Zip file as an attachment?



 [External: Use caution with links & attachments]

I have an example, not attaching a zip file - do you have a product like
PKZIP on the mainframe?

if you need an example of using IEBGENER and attaching a file I can
provide an example

Carmen

On 4/27/2022 10:04 AM, Sasso, Len wrote:
> Is it possible to send an email with a Zip file as an attachment, from our 
> mainframe (z/OS 2.3) executing IEBGENER via SMTP?
> If so, could you please provide an example?
>
>
>
>
> Thank You and Please Be Safe!
>
> Len Sasso
> Systems Administrator Senior
> CSRA, A General Dynamics Information Technology Company
> 327 Columbia TPKE
> Rensselaer, NY 12144
>
> TEAM: Together Everyone Achieves More
>
> Office Hours: M-F  7 AM - 3:45 PM
>
> Vacation:
>
> Phone: (518) 257-4209
> Cell: (518) 894-0879
> Fax: (518) 257-4300
> len.sa...@gdit.com
> URL:www.gdit.com
>
>
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN
>
>
--
/I am not bound to win, but I am bound to be true. I am not bound to
succeed, but I am bound to live by the light that I have. I must stand
with anybody that stands right, and stand with him while he is right,
and part with him when he goes wrong. *Abraham Lincoln*/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Send an email with a Zip file as an attachment?

2022-04-27 Thread Carmen Vitullo
I have an example, not attaching a zip file - do you have a product like 
PKZIP on the mainframe?


if you need an example of using IEBGENER and attaching a file I can 
provide an example


Carmen

On 4/27/2022 10:04 AM, Sasso, Len wrote:

Is it possible to send an email with a Zip file as an attachment, from our 
mainframe (z/OS 2.3) executing IEBGENER via SMTP?
If so, could you please provide an example?




Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL:www.gdit.com




--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email tolists...@listserv.ua.edu  with the message: INFO IBM-MAIN



--
/I am not bound to win, but I am bound to be true. I am not bound to 
succeed, but I am bound to live by the light that I have. I must stand 
with anybody that stands right, and stand with him while he is right, 
and part with him when he goes wrong. *Abraham Lincoln*/


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Send an email with a Zip file as an attachment?

2022-04-27 Thread Sasso, Len
Is it possible to send an email with a Zip file as an attachment, from our 
mainframe (z/OS 2.3) executing IEBGENER via SMTP?
If so, could you please provide an example?




Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

TEAM: Together Everyone Achieves More

Office Hours: M-F  7 AM - 3:45 PM

Vacation:

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com




--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: help with abend 60D reason code 14 SDWALSLV value

2022-04-27 Thread Joseph Reichman
Yes that’s because I had a bad ptr for the IARV64 so my first abend was for D02 
when I did my retry all I was attempting to do was to go somewhere in my SRB 
and set reg 15 with a bad ie non zero return code 

However as the documentation points out if your recovery is a FRR and in using 
IEAMSCHD it is that then stack entries made by a PC rtn have to be accounted 
for 

I have one more question which I’m sure only you can answer 

When I do an Estae and my SDWAGR registers are corrupted 

This typically happens in the case above where thru my carelessness I pass a 
bad ptr to an IBM service SVC or PC in that case I can always rely on SDWASR 
regs who’s values are right after I issue Estae since I do this all the way in 
the beginning of the program before I have a chance to make an error 

I the case of IEAMSCHD both of those registers sets seem to be the same 

In which case I have no choice but to percolate. Good news though even though I 
percolate I still get back control after the IEAMSCHD macro and SYNCHCOMPADDR 
is equal to 8 SYNCHCODEADR and SYNCRSNADDR then have SDWAABBCC and SDWACRC 
respectively right ?

> On Apr 27, 2022, at 9:30 AM, Peter Relson  wrote:
> 
> To be clear: are you saying that when you did not specify SDWALSLV at all 
> you get 60D-14, and when you specified it with a value of 1 you did not?
> 
> 
> This what I see for 60d 
> 
> 
> It is just ridiculous that you continually ignore what someone writes, and 
> then post only what you think matters instead of everything.
> 
> The "explanation" is one piece of the information in the documentation. There 
> are also the "actions". They are relevant too. Read them. In particular the 
> one I referred to.
> 
> You never described the order of SETFRR (or implied SETFRR if you scheduled 
> the SRB to be given control with an FRR) vs BAKR vs PC. That must be 
> understood.
> 
> If the order is
> SETFRR A
> BAKR
> PC to IARV64
> PR
> PR
> 
> Then if you want to retry within the BAKR code you would need SDWALSLV = 1. 
> If you want to retry prior to code running without that linkage stack level, 
> then SDWALSLV should be left 0.
> 
> If the order is
> BAKR
> SETFRR A
> PC to IARV64
> PR
> SETFRR D
> PR
> 
> It would be 100%y WRONG for you to retry with SDWALSLV=1. That would be 
> considered a system integrity error.
> The retry address has to be owned by you and the retry has to be at the 
> linkage stack level associated with that address.
> 
> Peter Relson
> z/OS Core Technology Design
> 
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: EXTERNAL: CIBXUTOK fetch protected

2022-04-27 Thread Crawford, Robert C.
Does your program get loaded out of an APF authorized library when it runs as a 
STC?  What's in the STEPLIB concatenation for the batch job?  One unauthorized 
library makes the whole STEPLIB unauthorized.  

Robert Crawford
Mainframe Management
United Services Automobile Association
(210) 913-3822

“Моє око! Я не повинен брати в нього пудинг!”
Emma Andijewska
Please send requests to mainframe management through our front door at  
go/mfmfrontdoor

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Ituriel do Neto
Sent: Wednesday, April 27, 2022 7:35 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: EXTERNAL: CIBXUTOK fetch protected

Hi all,

I'm trying to reach CIBXTOKN field under CIBX control block, and if the program 
is executed as a batch job, this field is fetch protected, but if it runs as an 
STC, the access is granted.

What is the difference?

Best Regards

Ituriel do Nascimento Neto
z/OS System Programmer

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: help with abend 60D reason code 14 SDWALSLV value

2022-04-27 Thread Peter Relson
To be clear: are you saying that when you did not specify SDWALSLV at all you 
get 60D-14, and when you specified it with a value of 1 you did not?


This what I see for 60d 


It is just ridiculous that you continually ignore what someone writes, and then 
post only what you think matters instead of everything.

The "explanation" is one piece of the information in the documentation. There 
are also the "actions". They are relevant too. Read them. In particular the one 
I referred to.

You never described the order of SETFRR (or implied SETFRR if you scheduled the 
SRB to be given control with an FRR) vs BAKR vs PC. That must be understood.

If the order is
SETFRR A
BAKR
PC to IARV64
PR
PR

Then if you want to retry within the BAKR code you would need SDWALSLV = 1. If 
you want to retry prior to code running without that linkage stack level, then 
SDWALSLV should be left 0.

If the order is
BAKR
SETFRR A
PC to IARV64
PR
SETFRR D
PR

It would be 100%y WRONG for you to retry with SDWALSLV=1. That would be 
considered a system integrity error.
The retry address has to be owned by you and the retry has to be at the linkage 
stack level associated with that address.

Peter Relson
z/OS Core Technology Design


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


CIBXUTOK fetch protected

2022-04-27 Thread Ituriel do Neto
Hi all,

I'm trying to reach CIBXTOKN field under CIBX control block, and if the program 
is executed as a
batch job, this field is fetch protected, but if it runs as an STC, the access 
is granted.

What is the difference?

Best Regards

Ituriel do Nascimento Neto
z/OS System Programmer

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: SMF type 60

2022-04-27 Thread Joe Monk
https://www.ibm.com/docs/en/zos/2.4.0?topic=rm-headerself-defining-section-50

Joe

On Wed, Apr 27, 2022 at 5:33 AM Jack Zukt  wrote:

> Hi,
>
> I am trying to "decode" a few SMF type 60 (VSAM Volume Data Set Updated),
> but I have reached a dead end. The greatest part of the information on
> these records is the "VSAM Volume Record" information and I cannot find
> anywhere how to decode it. It does not seem to rely on "offset/length"
> data.
> Does anyone knows how to extract this information?
> TIA
> Jack
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


SMF type 60

2022-04-27 Thread Jack Zukt
Hi,

I am trying to "decode" a few SMF type 60 (VSAM Volume Data Set Updated),
but I have reached a dead end. The greatest part of the information on
these records is the "VSAM Volume Record" information and I cannot find
anywhere how to decode it. It does not seem to rely on "offset/length"
data.
Does anyone knows how to extract this information?
TIA
Jack

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Checksum of "legacy" load module?

2022-04-27 Thread Colin Paice
try md5
https://www.ibm.com/docs/en/zos/2.4.0?topic=descriptions-md5-calculate-check-md5-cryptographic-hashes
To print the hash of an MVS data set:

md5 "//'SYS2.LOADLIB(XYZMOD)"


On Tue, 26 Apr 2022 at 23:30, Charles Mills  wrote:

> Is there any z/OS utility that will give a hash of a (traditional,
> old-fashioned) load module in a PDS?
>
> Specifically what I am trying to do is answer the question "is load module
> X
> in PDS Y.Z on box A binary equal to load module X in PDS Y.Z on box B?"
> without copying and comparing. I suspect the BLKSIZEs are the same so that
> may make the task easier (or prevent false negatives).
>
> I'd want an IBM-included utility because if I have to install a CBT utility
> I might just as well do the copy and compare. A UNIX utility is suitable if
> it will handle a PDS load module.
>
> Charles
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN