Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-10-24 Thread Timothy Sipples
Nightwatch RenBand wrote: >IBM Java support figured it all out. >Java8 uses instructions from the instruction set on z10 and higher >machines. And WE are using a z9 2096 machine. >ERGO S-0C1 was for "ain't no such instruction" rather than the usual not on >a half word boundery. >Thanks for all you

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-10-21 Thread Nightwatch RenBand
IBM Java support figured it all out. Java8 uses instructions from the instruction set on z10 and higher machines. And WE are using a z9 2096 machine. ERGO S-0C1 was for "ain't no such instruction" rather than the usual not on a half word boundery. Thanks for all your help. Wish they would either

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-10-17 Thread Paul Gilmartin
On Mon, 17 Oct 2022 11:52:09 -0500, Kirk Wolf wrote: >I've seen that when there isn't enough memory to start java. Always seemed >like bad coding to me ;-) > Yup. I've had such happen to me, and IBM replied, "Increase your REGION." Why are we still bound by habits formed when storage cost a

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-10-17 Thread Kirk Wolf
I've seen that when there isn't enough memory to start java. Always seemed like bad coding to me ;-) Kirk Wolf Dovetailed Technologies, LLC http://coztoolkit.com Dovetailed Technologies: +1 636.300.0901 Note: Our website and domain name have changed from dovetail.com to coztoolkit.com On Sat

zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-10-15 Thread Nightwatch RenBand
Finally did the simple thing from omvs cmd line java -version And got S-0C1 there. So something is really wrong at that level. Not JZOS at all. I am waiting for IBM to reply to that bit of info. And resigned that I may never get this resolved. As I told management, when they stopped my project

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-28 Thread Paul Gilmartin
On Wed, 28 Sep 2022 16:42:42 +, Seymour J Metz wrote: >Aha! The text for -X didn't specify, but text further down made it clare that >Unix to PDSE is valid. The only remaining question is what PDS(E)->Unix does >with execute permission. > >And, no, I don't know whether the option was valid i

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-28 Thread Seymour J Metz
: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Paul Gilmartin [042bfe9c879d-dmarc-requ...@listserv.ua.edu] Sent: Wednesday, September 28, 2022 12:13 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE On Wed, 28 Sep 2022

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-28 Thread Seymour J Metz
lly) how copy MVS loadmod from ZFS to PDSE On Tue, 27 Sep 2022 21:15:11 +, Seymour J Metz wrote: >To copy to or from a program object, you need the binder; IEBCOPY can call it >under the covers, but doesn't handle Unix files. RFE? Given that: <https://nam11.safelinks.protectio

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-28 Thread Paul Gilmartin
On Wed, 28 Sep 2022 15:39:48 +, Seymour J Metz wrote: >Did you set executable in the permissions? > > How does one do that for a program object in a PDSE, the OP's requirement? There is a case where /bin/ld will create a file set executable in the permissions, but lacking the executable mag

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-28 Thread Seymour J Metz
, 2022 9:30 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE Thanks to all. I have tested the Windows version SCRT 28 and since that works I do have a work-around. May stick with it I did try "cp -X ..." while it copied OK, would n

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-28 Thread Paul Gilmartin
On Wed, 28 Sep 2022 06:30:19 -0700, Nightwatch RenBand wrote: >... >Charles Mills: The binder did return RC=00 with info msg in the sysout. >IEW2278I B352 INVOCATION PARAMETERS - LIST,REUS,RENT,NCAL,LET,MAP > >IEW2322I 1220 1INCLUDE INLIB > Perhaps INCLUDE -ATTR INLIB? ^^

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-28 Thread Nightwatch RenBand
Thanks to all. I have tested the Windows version SCRT 28 and since that works I do have a work-around. May stick with it I did try "cp -X ..." while it copied OK, would not execute. Charles Mills: I might play with the zOS unix version I have requested the SMPE Java 8, seems you have to go t

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-27 Thread Timothy Sipples
John McKown wrote: >What level of hardware? We have a z9BC. SCRT version 29 will NOT run on >this hardware level. I think it needs a z12 or better. From what I saw, I >needed the MVHGI instruction. Actually, this is a Java 8 requirement, not >SCRT 29. I'm still running SCRT 28. In anticipation of r

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-27 Thread Paul Gilmartin
On Tue, 27 Sep 2022 21:15:11 +, Seymour J Metz wrote: >To copy to or from a program object, you need the binder; IEBCOPY can call it >under the covers, but doesn't handle Unix files. RFE? Given that: -X Specifies t

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-27 Thread Pew, Curtis G
On Sep 27, 2022, at 4:15 PM, Seymour J Metz mailto:sme...@gmu.edu>> wrote: To copy to or from a program object, you need the binder; IEBCOPY can call it under the covers, but doesn't handle Unix files. The Unix `cp` command will call the binder under the covers, especially if you use the -X fl

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-27 Thread John McKown
What level of hardware? We have a z9BC. SCRT version 29 will NOT run on this hardware level. I think it needs a z12 or better. From what I saw, I needed the MVHGI instruction. Actually, this is a Java 8 requirement, not SCRT 29. I'm still running SCRT 28. In anticipation of requiring SCRT 29, I dow

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-27 Thread Seymour J Metz
: IBM-MAIN@LISTSERV.UA.EDU Subject: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE This is a cross-post from MVS-OE since not much activity there... Keeping zOS alive at this late date and need to update to JAVA8 in order to accomodate SCRT 29. The JZOS module is there in the zfs and if

Re: zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-27 Thread Joe Monk
According to the z/os unix system services command guide: "An executable file copied from the file system into an MVS data set is not executable under MVS. Some required directory information is lost during the copy. See z/OS UNIX System Services User's Guide

zOS 1.13 (really) how copy MVS loadmod from ZFS to PDSE

2022-09-27 Thread Nightwatch RenBand
This is a cross-post from MVS-OE since not much activity there... Keeping zOS alive at this late date and need to update to JAVA8 in order to accomodate SCRT 29. The JZOS module is there in the zfs and if I can copy it to a PDSE I should be able to run JZOS But I cannot get a valid zos loadmod cop