Re: How to reduce the overhead of WLM?

2024-03-05 Thread Wendell Lovewell
Thanks for your advice everyone. Graham: The 250ms interval seems to me to be the crux of the problem. I was hoping for a way to adjust it. We don't have all that many "user work" address spaces started. Usually only one CICS region. Jim: I've set RMPTTOM to 45000. Going from 3000 to

How to reduce the overhead of WLM?

2024-03-04 Thread Wendell Lovewell
This is probably a strange question, but is there a way to reduce WLM cpu usage? Here's the situation: - The system is a lightly used development system. Unless something is in a loop (very rare), CPU % probably is usually less than 10%. And except for system regions & CICS, it's rare to

Re: TELNET PROFILE, strictly PDS?

2024-03-04 Thread Wendell Lovewell
As Allan said, you can compress an in-use PDS using IEBCOPY. //CMPEXEC PGM=IEBCOPY //SYSPRINT DD SYSOUT=* //SYSUT3 DD UNIT=SYSDA,SPACE=(CYL,(90)) //SYSUT4 DD UNIT=SYSDA,SPACE=(CYL,(90)) //INDD0DD DISP=SHR,DSN= //SYSINDD * C I=INDD0,O=INDD0 /* You might have to adjust the

Re: How can I keep JES2 from being SYSPLEXed?

2024-01-23 Thread Wendell Lovewell
Thanks for the tips guys. I am using the same node name ("JES2") on both systems--that's probably why the XCFGRPNM parm was necessary. (I NJE with a VSE machine & when the 3.1 system is the primary/only machine I'll move the CTC connection to the new system without changing any of the VSE

Re: How can I keep JES2 from being SYSPLEXed?

2024-01-21 Thread Wendell Lovewell
Thanks for your help Bruce and Paul. I was able to ask this to the IBM support team and they told me about the "XCFGRPNM" parm on the JES2 MASDEF statement. I hadn't specified a value for this, so both were using the default of "JES2". This was causing the conflict, even though my intent

How can I keep JES2 from being SYSPLEXed?

2024-01-19 Thread Wendell Lovewell
I have two systems that I want to share dasd and allow for VSAM RLS between the systems, but I don’t want to SYSPLEX JES2. I have MASDEF SHARED=NOCHECK. What else can I do to un-sysplex JES? Is it safe to delete the JES2 and/or SYSJES group definitions from XCF? I don't have a JES_CKPT_1

Re: FTP problem

2023-10-31 Thread Wendell Lovewell
fwiw, I wrote a bash script to run gsktrace and ftp it to a Windows FTP server. (I connect to z/OS using SSH to run it.) >cat gskput #!/bin/bash HOST='winpc' USER='winuserid' PASSWD='winpwd' cd /tmp rm /tmp/gsk.out gsktrace /tmp/gskmack.trc > /tmp/gsk.out ftp -n -v $HOST << EOT ascii user

Re: Chaining format 9 and format 3 DSCBs in EAV VTOC

2023-07-28 Thread Wendell Lovewell
Thank you for the confirmation Radoslaw. Whatever I tried with either VSAM or PDSe, I could not get more than 123 extents on a volume. But I also never found the right document to describe the 123-extent limit. SO, I guess there wouldn't be a reason for multiple format-9 records for the same

Re: Chaining format 9 and format 3 DSCBs in EAV VTOC

2023-07-27 Thread Wendell Lovewell
Hi Bill. I can confirm that in a format-3 record with all 13 slots filled, the DS3PTRDS field points to the CCHHR of the next format-3. And the "next" slot in the format-9 record then points to the next format-3. I tried to confirm that there will be a second format-9 record for a file with

Re: Chaining format 9 and format 3 DSCBs in EAV VTOC

2023-07-26 Thread Wendell Lovewell
Thanks Bill, that's very helpful. Please let me see if I have this straight yet: - If there is a format-8 DSCB, there will be a format-9 DSCB. - If there are > 3 extents (which are handled by the format-1) but < 133 extents, the format-9 record's DS9PTRDS will -> the first format-3 record. -

Chaining format 9 and format 3 DSCBs in EAV VTOC

2023-07-21 Thread Wendell Lovewell
Hello Listers, I have a question about how additional extents for a dataset are chained together for files on EAV volumes. If I understand correctly: - The format 8 record has slots to keep track of the first 3 extents of a dataset (DS1EXT1/DS1EXT2/DS2EXT3). - If there are more than 3

Re: SSHD terminates immediately with permission(?) problem

2023-05-30 Thread Wendell Lovewell
A big "Thank you" to all of you listers who chimed in on my "EDC5111I Permission denied. (errno2=0x744C7246)." message. Almost everyone was on the right track. Changing to port showed that it was just port 22. Commenting out the RESTRICTLOWPORTS and the PORT reservation for "22 SSHD"

SSHD terminates immediately with permission(?) problem

2023-05-26 Thread Wendell Lovewell
I've done something wrong that I can't identify, and now SSHD terminates immediately after starting. I'm not getting anything helpful on the console or in the joblog. But I am getting these msgs in syslog: OMVSKERN SSHD3sshd[67174408]: error: FOTS1442 Bind to port 22 on :: failed:

Re: Rexx Exec to Build 10,000 PDS Members: ALLOC vs ISPF Services vs ?

2023-04-20 Thread Wendell Lovewell
Gil, For instream data, you should be ok by specifying a unique DLM value on the SYSIN DD statement. But if the data contained statements starting with ./ statements, that would be a problem. I don't know about the UPDTE program mentioned from the CBTAPE. But Lennie is right--IEBUPDTE

Re: Rexx Exec to Build 10,000 PDS Members: ALLOC vs ISPF Services vs ?

2023-04-20 Thread Wendell Lovewell
I don't know about the logic required to create a member -- Kolusu might have the best idea. But creating one long sequential file with all the members and using IEBUPDTE is pretty simple: //STEP1EXEC PGM=IEBUPDTE,PARM=MOD //SYSPRINT DD SYSOUT=* //SYSUT1 DD DISP=OLD,DSN=SOME.PDSE

Re: What is BPXAS and how do I make them stop piling up?

2023-04-11 Thread Wendell Lovewell
Charles, imo Seymour was on the right track. Could it have been that someone issued a $T JOBCLASS command? (Or maybe from SDSF.) We usually run with STC and TSU OUTDISP=(PURGE,PURGE), and the SYSOUTs disappear at end of task. But sometimes I want to see the output so I issue $T

Re: Almost gone

2023-03-30 Thread Wendell Lovewell
Sorry to see you go John. Your brilliance and humility have been noticed, and much appreciated. May God bless you richly in this next phase of life. Maranatha! -- For IBM-MAIN subscribe / signoff / archive access

Re: Can you connect to the PTF download site with z/OS FTP?

2023-02-28 Thread Wendell Lovewell
Generally speaking (I don't know about IBM support) you can get the FTP client to connect via TLS 1.2 without using AT-TLS if you specify the right settings. But you'll still need the certificates added to a RACF keyring. //*---

Re: IEBGENER and JES System Symbol

2022-11-14 Thread Wendell Lovewell
Hey Gil. I changed to //SYSINDD *,SYMBOLS=(EXECSYS,SYSPRINT) and the log showed the PROC variables in the SYSIN data NOT being substituted. - If I only code the & parameters in the

Re: IEBGENER and JES System Symbol

2022-11-12 Thread Wendell Lovewell
PGM=IDCAMS //SYSPRINT DD SYSOUT=L //SYSINDD *,SYMBOLS=(EXECSYS) DEFINE CLUSTER(NAME() - LINEAR RECATALOG VOL()) - DATA(NAME()) //* // PEND Wendell Lovewell -- For IBM-MAIN subscribe / signoff / arch

Re: SYSTEM REXX use

2022-11-01 Thread Wendell Lovewell
ilable, so this may not be what you're looking for. Hth. ~Wendell Lovewell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: Location of forms code in z/OS manuals

2022-10-26 Thread Wendell Lovewell
Seymour, could you use the Title tag? root@WLPC:/a/temp# pdfinfo sg246818.pdf | grep Title Title: Merging Systems into a Sysplex Gil, thanks for the tip on pdfinfo. Wendell -- For IBM-MAIN subscribe / signoff /

Re: Finding uncatalogued datasets

2022-07-25 Thread Wendell Lovewell
Hi Jack. I'm going thru a similar process, although with a much smaller number of volumes. ADRDSSU also allows you to specify STORGRP instead of the volser: DUMP OUTDD(BUFILE) STORGRP(MACS)- DATASET(INCLUDE(**,- USERCAT.MACK01 -

Re: REXX outside TSO

2022-06-30 Thread Wendell Lovewell
re: "Cygwin? The only thing that made Windows tolerable for me. Ubuntu basn?" The recent versions of Windows allow running Ubuntu or more other distributions of Linux, m/l "natively". Look up "Windows Subsystem for Linux" or "wsl.exe" or https://docs.microsoft.com/en-us/windows/wsl/ All

Re: Is deliverycb-bld.dhe.ibm.com the wrong host for HTTPS PTF downloads?

2022-06-16 Thread Wendell Lovewell
I was the name-dropper Kurt. I thought I saw you discussing with someone, somewhere, something about using or not using delivery"cb"-bld.dhe.ibm.com vs delivery"something else"... (Can I make that any more vague? :) ) Anyway, "cb" is working now. At least I could get the files with Download

Re: Is deliverycb-bld.dhe.ibm.com the wrong host for HTTPS PTF downloads?

2022-06-16 Thread Wendell Lovewell
Wouldn't you know it? Just as soon as I posted the question, I tried the JNLP download it it worked. Sorry to have troubled you. Wendell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to

Is deliverycb-bld.dhe.ibm.com the wrong host for HTTPS PTF downloads?

2022-06-16 Thread Wendell Lovewell
I'm trying to download service for APAR PH39134 from ShopZ. I tried installing Java 8 so I could run the JNLP ShopZ provided, but it always displays "Server busy, try again later". I've tried using the RNFJOBH job provided by ShopZ, but I'm getting: GIM44336S ** AN UNUSUAL CONDITION

Re: Job submission from CMS to MVS

2022-03-10 Thread Wendell Lovewell
>>Except for instream data sets. Are you actually commenting >>your instream data in that fashion‽ I'm keeping source code on the PC, so the compiles and other types of jobs often include the source code itself in the jobstream. I do have comments past 80 in the program source.

Re: Job submission from CMS to MVS

2022-03-09 Thread Wendell Lovewell
Hi Gil. >>Would a unit record device other than PUN (perhaps PIPEd) >>relax that constraint? >>As I learned Pipelines I adopted the habit of DEFINing a fresh >>UR device rather than saving and restoring the characteristics >>of an existing one (and CONT can't be restored.) The last time I made

Re: Job submission from CMS to MVS

2022-03-07 Thread Wendell Lovewell
Hi Shmuel. Many years ago, I used a virtual card reader on MVS and the CMS users used a REXX exec to 'SPOOL PUN TO zosvm...' 'PUNCH fn ft fm ( NOH' 'CLOSE PUN' You might have to play games to have longer than 80-byte records in your jobs. And RSCS will (I think) propagate the CMS userid as

Re: CICS/TS 4.1 3270 question

2022-02-11 Thread Wendell Lovewell
Hi John. I'd look a different direction myself. "All of a sudden" implies to me that something changed. So...what changed? If nothing changed on the host, I'd maybe investigate to see if an automatic (or otherwise) update has happened on the PC emulator. Just my 2 cents. Wendell

Re: conditional JCL - Reinvent the wheel?

2021-11-11 Thread Wendell Lovewell
Billy's example explains it very well. A) "IF" cannot be the first step, thus his IEFBR14 call B) "IF" only allows numerics. // IF (="YES") will not work like you want, but // IF (=1) or // IF (=0) will work. I don't know how high of a value you can check, but I've used up to 5 (for

Re: Kudos to IBM

2021-08-18 Thread Wendell Lovewell
It's not exactly a refresh Paul, but change the '4' to a '5' and you have: https://www-01.ibm.com/servers/resourcelink/svc00100.nsf/pages/zOSV2R5IndexFile/$file/index.html Gary Puchkoff mentioned yesterday the z/OS 2.5 PDFs were available. KC not until GA. Wendell

Re: zPDT question

2021-06-02 Thread Wendell Lovewell
Ubuntu 18.04 LTS was and is just fine, but it'd be my guess you're not going to have success with Windows in between it and the hardware. But https://groups.io/g/zPDT is the place to be told that for certain. Wendell -- For

Re: Is there a vertical split in ISPF?

2021-04-19 Thread Wendell Lovewell
You configured the 3174 controller to use 4 of it's ports to support 4 different LUs on the same coax, and it had to be in DFT mode. Then I think the 4 LU's were configurable to whatever screen size you wanted, but you might have had to give up some of the 3290's memory to get the 160 by ?

Re: Assembler Language Programming for IBM System z Servers

2021-04-01 Thread Wendell Lovewell
Thanks René! -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: Assembler Language Programming for IBM System z Servers

2021-03-31 Thread Wendell Lovewell
The book shows the copyright is held by IBM, but it doesn't appear to have a normal IBM manual number. Is there anyone from IBM who could do something about this? Maybe get the source released to a Creative Commons license if they don't plan to update it? Please? Wendell

Assembler Language Programming for IBM System z Servers

2021-03-29 Thread Wendell Lovewell
Hello all. Does anyone know if Dr Ehrman's excellent assembler book could be updated for the new instructions released since 2015? Or, at least refreshed with current standards for PDF-page generation standards? What I mean is, it would really be helpful if: a) The pages in the Table of

Re: "Wrong" Size Allocation with AVGREC?

2021-03-24 Thread Wendell Lovewell
Thanks for the tip Cliff. Ours Bytes/Track was still set at 47,476. Wendell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: TSO RECEIVE and System Determined Blksize - New RFE

2021-03-03 Thread Wendell Lovewell
Shmuel, I believe that's the way it works for existing files that have been opened and closed, whether SDB=Y or N. SDB comes into play when a file is allocated but not written to by the allocating program. This is from the ISMF help for the SDB setting: Use the FORCE SYSTEM DETERMINED

Re: TSO RECEIVE and System Determined Blksize - New RFE

2021-03-03 Thread Wendell Lovewell
It's hard to tell exactly what's going on under the covers, but as best I've been able to deduce in this particular case is: 1) RECEIVE reads the INMR02 record, sees the original PDSE was blksize 27920 and allocates it that way, but does not open it. 2) SDB steps in, says "they really want

Re: FTP-SSL from z/OS client to Linux

2021-03-02 Thread Wendell Lovewell
Re: "The format is gsktrace > gskfile.trc > gsk.out " John is right--it's just gsktrace gskfile.trc > gsk.out Sorry guys. Wendell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to

TSO RECEIVE and System Determined Blksize - New RFE

2021-03-02 Thread Wendell Lovewell
If anyone has had a problem trying to use System Determined Blocksize with TSO RECEIVE and getting a message IEB1139W like: IEB1139W THE OUTPUT DATA SET BLOCK SIZE IS BEING REDUCED FROM 32720 TO 27920 BYTES. ANY EXISTING PHYSICAL RECORDS LONGER THAN 27920 BYTES ARE FAT BLOCKS AND MAY CAUSE

Re: FTP-SSL from z/OS client to Linux

2021-03-01 Thread Wendell Lovewell
Hi Steve. I've found the SSL trace information written into a USS file to be somewhat easier to use. You can turn on GSK_TRACE flags and specify a trace file using STDENV similar to the example below IF you specify the PARM=('ENVAR("_CEE_ENVFILE_S=DD:STDENV") (the _S is crucial or the DD *

TSO RECEIVE and System Determined Blksize (was: TSO XMIT and no member list)

2021-01-20 Thread Wendell Lovewell
Ed is actually fine, as the LRECL is always less than 27920 (80 in this case). But RECEIVE sees the RC=4 from IEBCOPY and ends with RC=12. IBM currently has case number TS004689510 open for this, but I assumed it was a new issue although I only have SDB=Y on right now for testing. Any t

Re: GSE UK Virtual Conference - Week 2 coming up - you can still register

2020-11-10 Thread Wendell Lovewell
Thanks for the tip. These sessions are mostly too early in the morning for those of us in the Western hemisphere. The little "tape"(?) symbol that indicates a recording is available seems to only be for the general sessions. Are the technical sessions being recorded? Is there a way to

Re: Batch SFTP without client keys or USS files?

2020-10-19 Thread Wendell Lovewell
I guess I misspoke. I'm trying to connect to a server supporting SFTP on port . FTP and FTPS on other ports. Sorry. The Windows SFTP command works fine. I just can't see the difference in my job between yours and Ed's. Thanks, Wendell

Re: Batch SFTP without client keys or USS files?

2020-10-17 Thread Wendell Lovewell
I'm sorry Rajesh. I meant to say that the job will run on other z/OS systems. I can't require CO:Z to be present. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with

Re: Batch SFTP without client keys or USS files?

2020-10-17 Thread Wendell Lovewell
Thanks for asking, but no special characters. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: Batch SFTP without client keys or USS files?

2020-10-16 Thread Wendell Lovewell
Thank you Rajesh, but the job will be running on z/OS systems. I cannot require any additional software like COZBATCH to be installed. Best Regards, Wendell -- For IBM-MAIN subscribe / signoff / archive access instructions,

Re: Batch SFTP without client keys or USS files?

2020-10-16 Thread Wendell Lovewell
Thanks Kurt! I did see Ed's presentation, but at the time it was a solution for which I didn't have a problem, so it stayed in the bit bucket. Unfortunately, even with your and Ed's expert help, I'm still stumped. I just don't seem to be able to get the "SSH_ASKPASS" to work, even after

Batch SFTP without client keys or USS files?

2020-10-15 Thread Wendell Lovewell
Is it possible to code a proc that would invoke SFTP to transfer a file to or from a non-z/OS ftp server using only that server's public key and a userid/password combination like you would use for FTP or FTPS? I need to distribute this outside our company, so using CO:Z isn't an option.

Re: FTPS Explicit Connection

2020-10-05 Thread Wendell Lovewell
guration Reference GC27-3652-30 IP Diagnosis Guide may be useful if you are getting GSK errors. SA23-2292-30 Security Server RACF Command Language Reference contains the syntax for the RACDCERT instructions. HTH, Wendell Lovewell --

Re: FTPS Handshake Error

2020-10-01 Thread Wendell Lovewell
We have certificates RACLISTED (no idea what that equates to in Top Secret). I do: RACDCERT ID() TRUST ADD('') - WITHLABEL('ftp.mackinney.com') RACDCERT ADDRING() ID() SETROPTS RACLIST(DIGTCERT DIGTRING) REFRESH RACDCERT ID() CONNECT(CERTAUTH USAGE(CERTAUTH) - LABEL('AAA

Re: FTPS Handshake Error

2020-10-01 Thread Wendell Lovewell
We have certificates RACLISTED (no idea what that equates to in Top Secret). I do: RACDCERT ID() TRUST ADD('') - WITHLABEL('ftp.mackinney.com') RACDCERT ADDRING() ID() SETROPTS RACLIST(DIGTCERT DIGTRING) REFRESH RACDCERT ID() CONNECT(CERTAUTH USAGE(CERTAUTH) - LABEL('AAA

Re: FTPS Handshake Error

2020-09-30 Thread Wendell Lovewell
Hello Roberto. In RACF-land, I'd look for an ICH message on the console to make sure you don't need to PERMIT the client or the server access to the keyring. I've found the gsk trace file to be very helpful--if the security manager doesn't tell you via a console message. Telling PAGENT

Re: Working link for current 3270 Data Stream

2020-09-29 Thread Wendell Lovewell
GA23-0059-4 is already on Bitsavers: http://bitsavers.trailing-edge.com/pdf/ibm/3270/GA23-0059-4_3270_Data_Stream_Programmers_Reference_Dec88.pdf -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to

Re: Substituting SYSIN variables via EXPORT SYMLIST containing mixed-case values

2020-09-19 Thread Wendell Lovewell
Thanks for all the detail Gil! -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: Substituting SYSIN variables via EXPORT SYMLIST containing mixed-case values

2020-09-18 Thread Wendell Lovewell
Well John, to risk stating the obvious, "You're a genius!" :) Thanks a lot! Wendell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Substituting SYSIN variables via EXPORT SYMLIST containing mixed-case values

2020-09-18 Thread Wendell Lovewell
Is there a way to get a mixed-case string substituted into SYSIN data using "EXPORT SYMLIST=*" and the "DD *,SYMBOLS=(JCLONLY)" facility? I'm trying to download files from an FTP server to z/OS using a PROC similar to this: //*- //FTPTEST PROC FTPFILE=

Re: Passing STDENV DD to FTP via SYSIN

2020-09-11 Thread Wendell Lovewell
Charles: Password is in the clear, just like it's always been. The main security is controlled by directory permissions on the server--it's really a "dump it here". They can't even see what they've uploaded. The download directory (stuff from us) is read-only. Like I said, "kicking and

Re: Passing STDENV DD to FTP via SYSIN

2020-09-11 Thread Wendell Lovewell
Hey Charles, No nuclear secrets here. I've been pulled kicking & screaming into adding this level of security anyway. I'm shooting for the absolute easiest way to give any z/OS and z/VSE customer the ability to upload a file to a server that requires a secured connection. I don't see a way

Re: Passing STDENV DD to FTP via SYSIN

2020-09-10 Thread Wendell Lovewell
Hey Charles, I took you seriously the first time. I appreciate your interest in helping. Bottom line, I'd like to come up with a job any z/OS customer could run, without requiring changes to any of their system files (like FTPCDATA or AT-TLS or RACF) that would allow them to transmit files

Passing STDENV DD to FTP via SYSIN

2020-09-10 Thread Wendell Lovewell
Hello, I'm setting up a batch job to access our FTP server using FTPS and TLS 1.2. (Forgive me if that nomenclature is less than perfect.) I've imported certficates, built a keyring, and come up with a combination of FTP client parameters that will allow me to connect to the server and upload

Re: How to un-duplex a logstream?

2020-08-22 Thread Wendell Lovewell
Skip, you nailed it. We did have a STRUCTURE defined, and it did have DUPLEX(ENABLED) specified. I just wasn't looking in the right place. There is only one place to look now. Thanks for the tip! Wendell -- For IBM-MAIN

Re: How to un-duplex a logstream?

2020-08-21 Thread Wendell Lovewell
Thanks Carmen! That was it! z setxcf start,pol,TYPE=CFRM,polnm=CFRM1 IXC511I START ADMINISTRATIVE POLICY CFRM1 FOR CFRM ACCEPTED IXC512I POLICY CHANGE IN PROGRESS FOR CFRM TO MAKE CFRM1 POLICY ACTIVE. 2 POLICY CHANGE(S) PENDING. IXG219I SYSTEM LOGGER PROCESSED TRANSITION TO SIMPLEX MODE FOR

Re: How to un-duplex a logstream?

2020-08-21 Thread Wendell Lovewell
Thanks for your help Barbara. But I may be too ignorant about all of this to follow your instructions. DUPLEX isn't an option for the DEFINE STRUCTURE in the "LOGR keywords and parameters" section of SA23-1399-30, so I'm guessing you're talking about the STRUCTURE parameters in the "CFRM

How to un-duplex a logstream?

2020-08-20 Thread Wendell Lovewell
I'm trying to turn off duplexing in a logstream because it's driving our zPDT system to it's knees when we close an RLS file. I've redefined the logstream: LINE # CONTROL CARDS 1 DATA TYPE(LOGR) REPORT(YES) 2 CONTINUE 3 DEFINE LOGSTREAM NAME(MACK.LOGSTRM) 4

Re: AT-TLS ?

2020-06-29 Thread Wendell Lovewell
Lionel, what type of endpoints are you wanting to use AT-TLS to secure? I might have some notes that would help. Here is some general information about diagnosing AT-TLS errors: If there is a problem making the connection, AT-TLS will display error on the console. Here are a few examples.

Re: AW: Using Windows ssh with z/OS

2020-05-04 Thread Wendell Lovewell
Thanks to everyone for the advice. Installing Rocket's bash provided the cursor history scrolling I was looking for. I don't perceive a difference between TERM=xterm+256color and TERM=xterm in the command-line-only functions I use. (I don't see any coloring in the ls or other output for

Using Windows ssh with z/OS

2020-05-02 Thread Wendell Lovewell
e ^? in /etc/profile to set the backspace key, but my attempts at using ~/.inputrc to control the cursor keys have been unsuccessful. Trying different terminal types (eg export TERM=xterm or export TERM=vt100) has also not helped. Does anyone know how to do this? Best Regard

Re: z/OS Cross-memory server code walkthrough

2020-02-19 Thread Wendell Lovewell
Thanks. They still have it Thursday. Hopefully the agenda will be updated before the conference starts. Wendell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with

Re: z/OS Cross-memory server code walkthrough

2020-02-19 Thread Wendell Lovewell
Sounds like a good session Rob. Scrolling through the sessions on the SHARE app, I can't find it. What are the session number and time? Wendell Lovewell -- For IBM-MAIN subscribe / signoff / archive access instructions, send

Re: Rexx or similar to clone a RACF user?

2020-01-21 Thread Wendell Lovewell
BSYNC that generates the RACF statements. Googling "RACF" "DBSYNC" will get you the information you need. Wendell Lovewell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to l

Re: Rexx or similar to clone a RACF user?

2020-01-21 Thread Wendell Lovewell
and quickly find all occurrences of a string. YMMV. Hope this helps, Wendell Lovewell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

2019-07-25 Thread Wendell Lovewell
and selected "Opened With", Adobe Reader and it worked fine. Hth, Wendell Lovewell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: WTO for message that will require explicit deletion?

2019-06-27 Thread Wendell Lovewell
Hi Charles. If you're running z/OS under z/VM, you can define a "real" console for your testing. I use address 3E0 because (I think) it was already in the HCD definitions provided by DTSC. You need an entry in your CONSOLxx parmlib member that can be as simple as CONSOLE DEVNUM(3E0)

Re: New look and linking for V2.3 product documentation PDFs

2019-03-15 Thread Wendell Lovewell
diligently to improve them. Best regards, Wendell Lovewell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: New look and linking for V2.3 product documentation PDFs

2019-03-01 Thread Wendell Lovewell
Hi Tom. You can change the way Chrome handles PDFs via chrome://settings/content/pdfDocuments?search=pdf index.html will get you to the file you want, but since you're going through a web browser, clicking the link, at least in Chrome, will cause the file to be copied to your download

Re: New look and linking for V2.3 product documentation PDFs

2019-02-28 Thread Wendell Lovewell
ed a PDF editor to delete everything prior to what it calls page 1 so that I could go directly to the referenced page--at the cost of having a table of contents. Thanks for listening. Wendell Lovewell -- For IBM-MAIN

Re: Using IPCS ACTIVE and alt ASID to display extended private storage

2019-01-30 Thread Wendell Lovewell
The location I need to check (1B12D080) is also not in the SVC dump: BLSPDISD 62') ADDRESS(1B127C20.) STORAGE - Command ===> SCROLL ===> CSR 1B127C20 C500 001B1271 B004 F50103D4 |

Re: Using IPCS ACTIVE and alt ASID to display extended private storage

2019-01-30 Thread Wendell Lovewell
I apologize: 2000.:5FFF.--Storage not available 6000 6008 C9D2D1D3 D1F14040 | ..-.IKJLJ1 | Our private area starts at x'6000'. The CSA starts at x'8', which I cannot display. What I really want to see is at x'1B12D080'. Although I can see some of the

Re: Using IPCS ACTIVE and alt ASID to display extended private storage

2019-01-29 Thread Wendell Lovewell
Thanks for your replies. I had done a REFRESH in RACF for the FACILITY profile changes. If I start IPCS in an alternate session and then allow the application to abend, I can still view memory areas after the abend via ACTIVE in the alternate session, but not from a second TSO user. (But

Re: Using IPCS ACTIVE and alt ASID to display extended private storage

2019-01-28 Thread Wendell Lovewell
Thanks for the tip on the FACILITY profiles for BLSACTV.SYSTEM and BLSACTV.ADDRSPAC. Adding them and giving myself access to them did change the results. But it still appears I cannot display any storage allocated to the program I'm debugging in the other address space. For example, if

Using IPCS ACTIVE and alt ASID to display extended private storage

2019-01-28 Thread Wendell Lovewell
I'm trying to debug TSO process on USERA by using IPCS from USERB by specifying ACTIVE and ASID(x'USERA's asid'). An address I need to display is in USERA's extended private area, but LOC is only working up to the top of the extended CSA. LOC for any extended private address results in

Re: Where are the IBMLINK SIS fuinctions today?

2018-10-24 Thread Wendell Lovewell
The drop-down for "From Date" only goes back to 2013. But you can keep clicking the "back" arrow and go back apparently as far as you want. (I gave up in 1991.) However, it still didn't return anything for OA32850. I tried IBMLINK, but keep getting "Internal server error" messages. The

Re: Zowe needs node.js, which you have to pay for on z/OS

2018-09-10 Thread Wendell Lovewell
quot; "downloadable at no additional charge" seems to be only for trial purposes. Without knowing that there will be enough customers using node.js to achieve a critical mass, vendors will have a hard time justifying writing applications that depend on it--Zowe or otherwise. Wendell L

Re: How do I use 3270-4E on TSO?

2018-05-25 Thread Wendell Lovewell
Hi Tony. There are different ways to log on to an application using VTAM/Switch. Please give us (MacKinney Systems) a call and ask for tech support. They'll get you going. Best regards, Wendell -- For IBM-MAIN subscribe

Re: IBM ZD

2018-04-11 Thread Wendell Lovewell
Hi Dave. I don't have any ideas about the cost, but you might try googling "RD". Or, take a look at the article "Automate z Systems Application Testing on the Cloud" at http://ibmsystemsmag.com/mainframe/administrator/systemsmanagement/rdandt-cloud/ hth, Wendell

Re: Session Manager

2018-03-08 Thread Wendell Lovewell
Gadi, MacKinney Systems sells a very affordable VTAM session manager we call VTAM/Switch. We'd be glad to talk to you about it. But if you do not have connectivity between the LPARs, no z/OS-based session manager will be able to acquire a session in a different LPAR. If you mainly want a

Re: Cobol EBCDIC to ASCII

2018-02-19 Thread Wendell Lovewell
nal call valid for either mode * *** * CALL 'EZACICTR' USING OUT-BUFFER LENGTH TRANSLATE-TABLE * RETURNING RET-CODE.

Re: LRS VPS Printer Replacment

2017-12-15 Thread Wendell Lovewell
Hello "zos"! MacKinney Systems' JQP will meet your needs at a very affordable price. Please give us a call! Wendell Lovewell MacKinney Systems 417-882-8012 -- For IBM-MAIN subscribe / signoff / archive access in

Re: IEBUPDTE question

2017-11-20 Thread Wendell Lovewell
, ignoring the ./ records. Myself, if I was starting with a PC file, I'd write a KEDIT macro to split them up and use FTP with MPUT. Wendell Lovewell MacKinney Systems -- For IBM-MAIN subscribe / signoff / archive access instructions

Re: PCOMM macro/script - Copy Screens, Copy Append

2017-11-08 Thread Wendell Lovewell
and be prompted for the number of pages, begin row & end row on each screen. It saves the screen & pages down that number of times, then starts my editor with the results in the C:\temp file. - Wendell Lovewell ' *** ' Th

Re: IBM Session Manager replacement

2017-08-18 Thread Wendell Lovewell
MacKinney Systems as VTAM/Switch. We'll help you with converting your session manager definitions, and more than a couple of you could license it for $60k a year! (Dennis, give us a call!) -- For IBM-MAIN subscribe /

Re: Windows 10 Pro automatic update

2017-06-28 Thread Wendell Lovewell
Any version of Windows can have the update service disabled. 1) From a DOS window, enter "services.msc". 2) Find the line that has "Windows Update" on it. Right-click and select "Properties". 3) Change the "Startup Type" to "Disabled". This will prevent it from starting next boot. 4) Click

Re: Windows 10 Pro automatic update

2017-06-27 Thread Wendell Lovewell
The automatic updates messed up my systems so frequently that I ended up disabling the Windows Updates service on them. If/when I decide to apply service, I'll do it when I want. Imo Microsoft's decision to force Win10 reboots may end up making it less safe because people stop getting

Re: Vendor Licensing Frustrations

2017-04-21 Thread Wendell Lovewell
I work for a vendor, so I understand the necessity of making sure that licensed products are used properly. But I also understand the inconvenience for both the customer and the vendor of managing software keys. I’m wondering what the list’s response would be toward implementing a system

Invalid characters in JCL symbols passed to SYSIN within a PROC

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