Re: Batch SFTP without client keys or USS files?

2020-10-16 Thread Mike Hochee
Do you have any special characters in your password that might not be surviving code-page translate? -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Wendell Lovewell Sent: Friday, October 16, 2020 8:15 PM To:

Re: Checksum/Md5 file

2020-10-16 Thread Mike Hochee
Hi Len Sasso, As mentioned, you can roll your own and invoke an ICSF service routine, or you can use one of several z/OS crypto products. I work for ASPG, so am particularly familiar with MegaCryption on z/OS. With MegaCryption this can be done using the MGCMAIN utility or via an application

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: Checksum/Md5 file

2020-10-16 Thread Lennie Dymoke-Bradshaw
Please note too that the CSNBOWH implementation requires ICSF to be active, but does not require any Crypto Express hardware, nor is it dependent on the CPACF. It is a software solution that executes within ICSF. -Original Message- From: IBM Mainframe Discussion List On Behalf Of Jousma,

Re: SVC 99 035C

2020-10-16 Thread Attila Fogarasi
DDname SYSPRINT is where IKJ messages go, not ddname SYSOUT :) This is clearly documented in the z/OS TSO/E Messages manual. On Sat, Oct 17, 2020 at 9:04 AM Joseph Reichman wrote: > > > HI > > > > I am dynamically allocating a new file which has 14 test units. I am > getting > a 035C meaning

SVC 99 035C

2020-10-16 Thread Joseph Reichman
HI I am dynamically allocating a new file which has 14 test units. I am getting a 035C meaning one them is erroneous the doc says that message IKJ56231I points me to the right text unit I am running this under TEST. I allocated SYSOUT to the terminal DA(*). I didn't see the message was

Re: Batch SFTP without client keys or USS files?

2020-10-16 Thread Srivastava, Rajesh K
Dovetail work well for me. A sample below: //add jobcard //SFTPPUT EXEC PROC=SFTPPROC //SFTPIN DD * host=sftp.ecurep.ibm.com pwdsn="(IBMPASS)" user="" . $script_dir/sftp_connect.sh < On Behalf Of Wendell Lovewell Sent: Friday, October 16, 2020 5:10 PM To: IBM-MAIN@LISTSERV.UA.EDU

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

Re: Checksum/Md5 file

2020-10-16 Thread Paul Gilmartin
On Fri, 16 Oct 2020 19:06:50 +, Jousma, David wrote: >Yes. >https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.1.0/com.ibm.zos.v2r1.csfb400/csfb4za229.htm > Also, convenient but not cryptographically strong:

Re: EXTERNAL EMAIL: Checksum/Md5 file

2020-10-16 Thread Jerry Whitteridge
Look at File 900 on the CBT Tape Jerry Whitteridge jerry.whitteri...@albertsons.com Manager Mainframe Systems & HP Non-Stop Albertsons Companies -Original Message- From: IBM Mainframe Discussion List On Behalf Of Sasso, Len Sent: Friday, October 16, 2020 11:54 AM To:

Re: Checksum/Md5 file

2020-10-16 Thread Jousma, David
Yes. https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.1.0/com.ibm.zos.v2r1.csfb400/csfb4za229.htm _ Dave Jousma AVP | Director, Technology Engineering  Fifth Third Bank  |  1830 East

Checksum/Md5 file

2020-10-16 Thread Sasso, Len
Anyone know if a Checksum/Md5 file can be created on a IBM Mainframe? If so, how? Thank You and Please Be Safe! Len Sasso Systems Administrator Senior CSRA, A General Dynamics Information Technology Company 327 Columbia TPKE Rensselaer, NY 12144 Office Hours: M-F  7 AM - 3:45 PM

Re: Shopz Question

2020-10-16 Thread Richards, Robert B.
Replying to my own post after opening a PMR - ServerPac version not available at this time, but CBPDO is available. -Original Message- From: IBM Mainframe Discussion List On Behalf Of Richards, Robert B. Sent: Friday, October 16, 2020 12:39 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject:

Shopz Question

2020-10-16 Thread Richards, Robert B.
Disclaimer – I am not the CICS guy nor do I subscribe to a CICS list!  My question is simple for those that may know: Is CICS TS 5.6 orderable through ShopzSeries as a ServerPac order? I attempted to use an inventory report and only 5.5 was listed as an update path. When I attempted without

Re: Batch SFTP without client keys or USS files?

2020-10-16 Thread Paul Gilmartin
On Fri, 16 Oct 2020 09:27:07 -0400, Kurt Quackenbush wrote: > >> On 10/15/2020 8:36 PM, Wendell Lovewell wrote: >>> 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

Re: [External] Re: Cbttape - dataset being used

2020-10-16 Thread Pommier, Rex
2 line CLIST in my ISPF CMDPROC concatenation named "W": PROC 1 DSN ISRDDN E ISPF 3.4, just enter W as a line command. Definitely a time saver. :-) Rex -Original Message- From: IBM Mainframe Discussion List On Behalf Of Graham Harris Sent: Thursday, October 15, 2020 6:54 PM

Re: Batch SFTP without client keys or USS files?

2020-10-16 Thread Kurt Quackenbush
On 10/16/2020 9:16 AM, Kurt Quackenbush wrote: On 10/15/2020 8:36 PM, Wendell Lovewell wrote: 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

Re: Batch SFTP without client keys or USS files?

2020-10-16 Thread Kurt Quackenbush
On 10/15/2020 8:36 PM, Wendell Lovewell wrote: 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? Yes it is possible. Check out the

Re: Batch SFTP without client keys or USS files?

2020-10-16 Thread Allan Staller
Classification: HCL Internal Up to the "foreign host" -Original Message- From: IBM Mainframe Discussion List On Behalf Of Paul Gilmartin Sent: Thursday, October 15, 2020 10:55 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Batch SFTP without client keys or USS files? [CAUTION: This

Re: Dr. John Ehrman

2020-10-16 Thread Don Poitras
Sunil, You can find the PDF on this Marist page (first link on the page): https://idcp.marist.edu/assembler-resources In article you wrote: > On Wednesday, 21 February 2018 at 09:18:12 UTC-5, Don Poitras wrote: > > I worked with John back in the 90s when I was part of the languages > > group

Re: [External] Re: ISPF dsn sort

2020-10-16 Thread Lennie Dymoke-Bradshaw
Many thanks to everyone who has contributed to this thread. My tests corroborate the fact that selecting the "Display Total Tracks" option affects the behaviour. Also the help for the panel (in particular for that option) explains the behaviour I am seeing. Ho hum. I live and learn. 46 years

Re: Cbttape - dataset being used

2020-10-16 Thread Joe Monk
David, There is a ZAP for TASID in File 980 on the CBTTAPE that fixes an issue under z/os 2.2 and 2.3. Joe On Fri, Oct 16, 2020 at 4:55 AM David Crayford wrote: > On 2020-10-16 1:43 PM, Tom Conley wrote: > > On 10/15/2020 10:19 PM, David Crayford wrote: > >> There's no need to install TASID.

Re: Cbttape - dataset being used

2020-10-16 Thread David Crayford
On 2020-10-16 1:43 PM, Tom Conley wrote: On 10/15/2020 10:19 PM, David Crayford wrote: There's no need to install TASID. The ISPF ISRDDN utility has an ENQ dialog and is shipped as part of ISPF. From any command line enter DDLIST;ENQ. The major advantage to TASID is that it has a switch