Re: job output into dataset

2017-05-02 Thread Phil Sidler
On Tue, 2 May 2017 12:54:35 -0700, Lizette Koehler wrote: >I have this in place on several Products I support. The JES Messages all go to >our output repository. No issues. Oh, I see it now, $HASP138 and a new DD with the same name shows up. Cool.

Re: job output into dataset

2017-05-02 Thread Phil Sidler
On Tue, 2 May 2017 05:33:18 -0500, Roger Lowe wrote: >As of zOS 1.13 and later, JES2 provides the ability to 'spin' any SPIN spool >datasets based on command, size or time (interval or absolute). > >SPIN=(UNALLOC,value) where value is one of: >• ‘hh:mm’ – Spin data set

Re: How to tell COBOL to read a concatenation of GDGs

2016-11-18 Thread Phil Sidler
See if this helps you. https://mainframe.elevengestures.com/processing-a-gdg-in-any-order/ A combination of using ISGCSI00 and COBOL's dynamic allocation http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IGY3LR50/4.2.3.1

Re: System SSL and private TCP/IP stack?

2016-06-10 Thread Phil Sidler
On Fri, 10 Jun 2016 07:41:10 -0700, Phil Smith wrote: >If you have a z/OS application that uses System SSL but needs its own private >TCP/IP stack, how would one configure that? I spent some time Googling but >didn't find anything. Since System SSL sits between the

Re: A possible bug in the IBM Runtimne C library

2015-02-23 Thread Phil Sidler
On Mon, 23 Feb 2015 12:15:09 -0600, Ze'ev Atlas zatl...@yahoo.com wrote: So I resolved it by adding a dummy two bytes variable in the end of each pair: 10 A PIC 9(9) COMP-5. 10 B PIC 9(4) COMP-5. 10 FILLER PIC XX.=== compensating for the integral boundary of the next pair You might want to

Re: Strange C runtime library behavior

2015-02-18 Thread Phil Sidler
On Sun, 15 Feb 2015 17:55:37 +, Ze'ev Atlas zatl...@yahoo.com wrote: The regex.h header file indicates that the regmatch_t structure consists of two long variables (i.e. two pic s9(18) comp-5.).   s9(18) comp-5 would be a 'long long', I think. The regex.h I'm looking at has three

Re: Strange C runtime library behavior

2015-02-18 Thread Phil Sidler
On Sun, 15 Feb 2015 17:55:37 +, Ze'ev Atlas zatl...@yahoo.com wrote: Hi allI am trying to create a common interface between COBOL and the runtime C library, especially the RegEx related functions. If a working example of calling regexec() from COBOL would help, see

Re: need access to mainframe

2015-02-18 Thread Phil Sidler
On Tue, 17 Feb 2015 03:29:39 +, Ze'ev Atlas zatl...@yahoo.com wrote: Could anybody give me very limited remote access to a well configured z/OS development LPAR?All I need is to install few libraries and use the C and COBOL compilers and create some SYSOUT and perhaps few small sequential

Re: SFTP in a batch job

2015-02-10 Thread Phil Sidler
On Mon, 9 Feb 2015 14:21:38 -0600, Kirk Wolf k...@dovetail.com wrote: Here is a table comparing various BPXBATCH-like utilities: https://www.dovetail.com/products/cozbatch.html Using AOPBATCH with PARM='//bin/sh -L' allows you to run a login shell, then the STDIN is any valid shell commands,

Re: IEBUPDTE alternatives

2014-05-29 Thread Phil Sidler
On Sat, 3 May 2014 23:09:01 -0600, Paul Gilmartin paulgboul...@aim.com wrote: On 2014-05-02, at 12:04, Jousma, David wrote: As for your question, my suggestion is to instead of using IEBUPDTE statements, is to copy the entire source program, and make a SMPE Replacing an elegantly automated

IEBUPDTE alternatives

2014-05-02 Thread Phil Sidler
At one time I set up IEBUPDTE (or SMP/E USERMOD ++MACUPD) jobs to update some IBM sample programs before I used them to make it easier to tell what was updated from the supplied source and possible make migration to new releases easier. Now, going to a new CICS release, the sample programs no

Re: IEBUPDTE alternatives

2014-05-02 Thread Phil Sidler
On Fri, 2 May 2014 09:35:35 -0700, Jon Perryman jperr...@pacbell.net wrote: It doesn't break compare. Just tell compare to ignore the sequence numbers (SEQ). That's SuperC? I don't see that option in the ISPF EDIT/VIEW COMPARE command.

Re: IEBUPDTE alternatives

2014-05-02 Thread Phil Sidler
On Fri, 2 May 2014 10:18:08 -0700, Jon Perryman jperr...@pacbell.net wrote: Both SUPERC SUPERCE support SEQ. For edit command COMP, you'll need to allocate DD SYSIN to a dataset containing�the SEQ option and specify the SYSIN option on COMP. It's silly that IBM ignores the edit bounds but such

Re: C++ __asm statement

2014-05-01 Thread Phil Sidler
Martin, Pretty sure this only works with Metal C. Inline assembly code requires the GENASM compiler option which is only valid in combination with the METAL option. Otherwise __asm is ignored. Personally, I think that is a bad design, it should not be simply ignored but would at least

Re: C Compiler Library Search

2014-03-30 Thread Phil Sidler
On Fri, 28 Mar 2014 12:19:33 -0500, Chuck Arney ch...@arneycomputer.com wrote: The problem is that the compiler is not locating the header files that are included in the source program. My understanding from the manual is that the compiler PARM SEARCH controls the library search sequence used

Re: z/OS PKI Services HostIDMapping format

2014-03-14 Thread Phil Sidler
On Wed, 12 Mar 2014 10:55:35 -0700, Donald J. dona...@4email.net wrote: It works when the certificate is associated to a userid. All I can think of then is that RACF isn't finding the matching hostname in a hostIdMapping. There doesn't seem to be doc on the specifics of this: upper/lower

Re: z/OS PKI Services HostIDMapping format

2014-03-12 Thread Phil Sidler
On Wed, 12 Mar 2014 10:18:04 -0700, Donald J. dona...@4email.net wrote: even though no mention of that anywhere. But I could not get HostIDMapping to work with FTP Server. You would think the RACF interface would be the same for all applications. What setting do you have for SECURE_LOGIN on

Re: z/OS PKI Services HostIDMapping format

2014-03-11 Thread Phil Sidler
On Tue, 11 Mar 2014 05:54:24 -0700, Donald J. dona...@4email.net wrote: If I try to use a certificate with a HostIDMapping extension and no certificate associated with the userid I get error message: CWXN A client certificate that maps to a valid userid is required. This is likely just CICS's

Re: z/OS PKI Services HostIDMapping format

2014-03-11 Thread Phil Sidler
Thanks for the openssl example. I wish I could have found more useful openssl arbitrary extension examples when I was working on this before. As for the length fields, it was probably my mis-interpretation of prose such as this: http://msdn.microsoft.com/en-us/library/windows/desktop/bb540805

Re: z/OS PKI Services HostIDMapping format

2014-03-10 Thread Phil Sidler
On Mon, 10 Mar 2014 08:59:55 -0700, Donald J. dona...@4email.net wrote: Could someone who is using z/OS PKI Services for z/OS post a sample certificate containing an arbitrary extension for HostIdMapping, or an Would some VBscript help? Did this a loong time ago and I'm not sure it's totally

Re: z/OS PKI Services HostIDMapping format

2014-03-10 Thread Phil Sidler
On Mon, 10 Mar 2014 13:49:38 -0700, Donald J. dona...@4email.net wrote: Yes, the script helps to identify some things. What appilcation was it working with? IIRC, this was in combination with windows certreq to build send a cert request to a windows active directory server to be signed and

Re: COBOL interface to CSI

2014-02-27 Thread Phil Sidler
On Thu, 27 Feb 2014 12:46:59 -0400, Clark Morris cfmpub...@ns.sympatico.ca wrote: This request provides another example of my belief that there should be an IBM supplied service that maps all PLS and/or Assembler DSCECT to the appropriate mappings in other languages including COBOL, PL1, C/C++,

Re: Dynamic Allocation in COBOL

2013-09-07 Thread Phil Sidler
On Fri, 6 Sep 2013 06:56:40 -0700, Charles Mills charl...@mcn.org wrote: Well I'll be darned! The EC 4.1 P/G has a section called Dynamically creating QSAM files which talks about a run-time option CBLQDA that will take care of missing DD statements and then adds cryptically Do not confuse this