Re: z/VM customer who moved from HDS to IBM storage (preferably DS8884)

2016-11-20 Thread Timothy Sipples
Thinking out loud, could you set up XRC (or PPRC) pairing between the older Hitachi and newer IBM storage devices, and migrate that way? In outline, you'd (1) swing in the new IBM DS8884, (2) turn on mirroring outbound from the Hitachi storage unit inbound into the IBM unit, (3) wait until the IBM

Re: Verifying callers Parameter Address upon entry to a PC Service Routine

2016-11-20 Thread Binyamin Dissen
On Sun, 20 Nov 2016 22:16:38 GMT "esst...@juno.com" wrote: :>Im looking for some guidelines when validating any address passed to a PC Service Routine. :>Should the Validation be done in The PC Service Routine *or* in the callers :>interface routine provided by the Service

Re: ASMA033I Storage alignment for unfavorable for dependent DSECT?

2016-11-20 Thread Binyamin Dissen
It is properly aligned in the main dsect. ZZZ DSECT CNOP 2,8 DDNTXTU DS 3H,CL8 @DDNTXTU USING S99TUNIT,DDNTXTU STG R1,@DDNTXTU.S99TUPAR The assembler knows that the resolved address is at a doubleword offset in ZZZ On Sun, 20 Nov 2016 15:01:04

IBM Jargon and General Computing Dictionary Tenth Edition

2016-11-20 Thread Gabe Goldberg
Worth a glance, if you've not seen this. Or a refresher if you have. http://www.comlay.net/ibmjarg.pdf It just showed up in a LinkedIn group -- not exactly hot off the press. -- Gabriel Goldberg, Computers and Publishing, Inc. g...@gabegold.com 3401 Silver Maple Place, Falls Church, VA

Re: ASMA033I Storage alignment for unfavorable for dependent DSECT?

2016-11-20 Thread ste...@copper.net
I don't have access to listings right now, but having just done a few routines that were doing SVC99 and making use of all the DSECTs provided by IBM, I found that I had to get alignment set up correctly. So, I would start Text Units on a fullword, so that you have (off the top of my head):

Re: LDAP on z/os

2016-11-20 Thread Timothy Sipples
Paul, here's one problem with your idea. Let's suppose you've organized your systems such that z/OS-based applications and services must rely on an external LDAP server "somewhere" for authentication and authorization. Yes, even batch programs, for example. Now...SCENE! The external LDAP server is

Verifying callers Parameter Address upon entry to a PC Service Routine

2016-11-20 Thread esst...@juno.com
. Im looking for some guidelines when validating any address passed to a PC Service Routine. . Should the Validation be done in The PC Service Routine *or* in the callers interface routine provided by the Service Address Space. . What would be the recommended method to validate all Address

Re: ASMA033I Storage alignment for unfavorable for dependent DSECT?

2016-11-20 Thread Charles Mills
Isn't that how it has always worked? LA R1,odd_address LH R0,1(,R1) generates an alignment error. Or is that not what you mean? Charles -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Binyamin Dissen Sent: Sunday, November 20,

ASMA033I Storage alignment for unfavorable for dependent DSECT?

2016-11-20 Thread Binyamin Dissen
I am receiving ASMA033I Storage alignment for @DDNTXTU.S99TUPAR unfavorable where the value of S99TUPAR is 6, but it is a dependent using and the actual offset is at a doubleword boundary. Working as designed?? -- Binyamin Dissen http://www.dissensoftware.com

Re: REXX determine library that is executed from

2016-11-20 Thread Paul Gilmartin
On Sun, 20 Nov 2016 09:25:47 +0200, Mike Shorkend wrote: >Like Walt suggested, use the PARSE SOURCE function: > > /*rexx*/ > parse source . . . dd dataset . > say "DD name is " dd > say "dataset name is " dataset > By experiment, that works if the command specifies the data set and member (in

Re: Which STEPLIB concatenation is not authorized?

2016-11-20 Thread Paul Gilmartin
On Sun, 20 Nov 2016 17:01:43 +, Jesse 1 Robinson wrote: >I don't want to sound warlike--especially in today's political climate--but >vendors have always expected customers to diagnose their own APF problems. >'Tact' is often a matter of delivering uncomfortable news gently and

Re: Which STEPLIB concatenation is not authorized?

2016-11-20 Thread Mike Schwab
OK. How about 2 REXX commands. The first REXX command reads SYS*.PARMLIB members, parses out the DSN and Vol/SMS ignoring syntax errors, and checks each DSN for APF authorization. The second REXX command read any JCL member, parses out the steplib DSNs and Volumes ignoring syntax errors, and

Re: z/VM customer who moved from HDS to IBM storage (preferably DS8884)

2016-11-20 Thread Mike Schwab
http://www.jmit.com/vm/ Pipe Dump and Restore. Requires Open system storage and considerable downtime. On Sun, Nov 20, 2016 at 3:44 AM, Arye Shemer wrote: > Hello Mike, > apologize for the delay on the response, > your post was on another thread. > > Thank you for the

Re: Which STEPLIB concatenation is not authorized?

2016-11-20 Thread Clark Morris
[Default] On 20 Nov 2016 08:47:04 -0800, in bit.listserv.ibm-main charl...@mcn.org (Charles Mills) wrote: >Thanks @Gil, I think you get where I am trying to go with this. > >It's not that I don't know how to use TESTAUTH or think TESTAUTH is giving >me the wrong answer. But now what? We say "one

Re: Which STEPLIB concatenation is not authorized?

2016-11-20 Thread Jesse 1 Robinson
I don't want to sound warlike--especially in today's political climate--but vendors have always expected customers to diagnose their own APF problems. 'Tact' is often a matter of delivering uncomfortable news gently and empathetically. As others have said, the requirements for APF concatenation

Re: Which STEPLIB concatenation is not authorized?

2016-11-20 Thread Jesse 1 Robinson
I can't speak for the CBT PDS Command, but StarTool shows APF directly and automatically without any need for OS commands. SYS1.LPALIB, for example, gives this message right at the top: PDS224I This data set is APF authorized This means of course that it's programmatically possible for an app

Re: Which STEPLIB concatenation is not authorized?

2016-11-20 Thread Charles Mills
Thanks @Gil, I think you get where I am trying to go with this. It's not that I don't know how to use TESTAUTH or think TESTAUTH is giving me the wrong answer. But now what? We say "one or more of your datasets is apparently not authorized" and the customer says "WE TOLD YOU THEY ARE ALL

Re: Which STEPLIB concatenation is not authorized?

2016-11-20 Thread Charles Mills
In the situation that triggered this discussion it was three datasets. Various vendor products and DB2 IIRC. Charles -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Tony Harminc Sent: Sunday, November 20, 2016 1:46 AM To:

Re: LDAP on z/os

2016-11-20 Thread Walt Farrell
On Sun, 20 Nov 2016 11:04:16 +0530, venkat kulkarni wrote: >Yes, I think my requirement was not clear to all. Basically LDAP server is >running on some Windows or Linux box and we want to integrate mainframe >with that as LDAP client for any sort of login to

Re: Which STEPLIB concatenation is not authorized?

2016-11-20 Thread Peter Relson
I'll accept that as almost true. But BLDL (I assume LOAD uses that or something similar) needs to find the directories to search. I'm trying to RTRM and understand. I guess it can examine DEBAMLNG bytes in DEBEXTNM to find the first extent of each catenand which must contain the directory.

Re: Invalid characters in JCL symbols passed to SYSIN within a PROC

2016-11-20 Thread Peter Relson
>If you use quotes, you can put in any character you want >into a data set name. That might be true, but it is also true that the rules for what constitutes a valid data set name are fully spelled out. A 'hyphen' in the name is one of the less-understood possibilities (and many things likely

Re: REXX determine library that is executed from

2016-11-20 Thread Robert Prins
On 2016-11-20 01:29, Donald Likens wrote: Has anyone come up with a way for a REXX program to determine the library it resides in? /* REXX exec to find dataset from which an exec is running*/ /*** trace ?r * \| * *

The EHIxxxx execs (CBT Tape 769)

2016-11-20 Thread Robert Prins
Hi all, After a long, long time, I've decided to update these legacy-language to HTML tools again, but I need some help, as I'm only on a z/OS 1.10/1.12 system, which means that I have absolutely no clues about - the way all new JCL statements are coloured, or - all the latest COBOL keywords.

Re: Invalid characters in JCL symbols passed to SYSIN within a PROC

2016-11-20 Thread Peter Hunkeler
>Alas, the incorporeal first ply in this thread does little to clarify the >context. Why fill up the list with pure speculation on what the lazy poster meant to ask? -- Peter Hunkeler -- For IBM-MAIN subscribe / signoff /

Re: Sftp implementation

2016-11-20 Thread David Crayford
On 20/11/2016 12:25 AM, Kirk Wolf wrote: FWIW, Microsoft is working on a port of OpenSSH for Powershell. https://blogs.msdn.microsoft.com/powershell/2015/10/19/openssh-for-windows-update/ That's awesome! You really have to admire the way Microsoft have transitioned themselves into an open

Re: z/VM customer who moved from HDS to IBM storage (preferably DS8884)

2016-11-20 Thread Arye Shemer
Hello Mike, apologize for the delay on the response, your post was on another thread. Thank you for the suggestion, I would be glad to use z/OS for the migration but for some political and marketing reasons it s not an option. Thanks, Arye. On Thu, Nov 17, 2016 at 4:19 AM, Mike Schwab