Re: problem with FTP from Windows 10 to z/OS

2019-05-23 Thread Kevin Merkley
You're right, of course. There are various other ways to handle zip and FTP. So far, these are the only two methods we document because we have not had a request for any other method. If customers want to do it another way, they are probably smart enough to figure it out on their own. (And

Re: problem with FTP from Windows 10 to z/OS

2019-05-22 Thread Paul Gilmartin
On Wed, 22 May 2019 09:21:57 -0500, Kevin Merkley wrote: >We only have two methods of distribution available. >1. FTP a zip file to a Windows PC and upload the files to the mainframe. > Must it be a Windows PC? Other OSes such as MacOS, Linux, Solaris, and z/OS can deal with zip. I've done it

Re: problem with FTP from Windows 10 to z/OS

2019-05-22 Thread Kevin Merkley
We only have two methods of distribution available. 1. FTP a zip file to a Windows PC and upload the files to the mainframe. 2. FTP the tersed file directly to the mainframe. If customers get the tersed file to the mainframe any other way, we are not aware of it.

Re: problem with FTP from Windows 10 to z/OS

2019-05-21 Thread retired mainframer
> -Original Message- > From: IBM Mainframe Discussion List On > Behalf Of Paul Gilmartin > Sent: Tuesday, May 21, 2019 4:14 PM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: problem with FTP from Windows 10 to z/OS > > On Tue, 21 May 2019 17:40:13 -0

Re: problem with FTP from Windows 10 to z/OS

2019-05-21 Thread Paul Gilmartin
On Tue, 21 May 2019 17:40:13 -0500, Kevin Merkley wrote: > >In the instructions for customers, I added a part on how to use the script, >especially for those that are doing the FTP from Windows 10. It actually seems >to be a "cleaner", more user-friendly way for them to perform this task. >

Re: problem with FTP from Windows 10 to z/OS

2019-05-21 Thread Kevin Merkley
I realized that I never posted my solution. I ended up writing a Windows PowerShell script. It does some verification of data in a file that contains upload information such as destination IP address and userid, etc. Then it displays a window prompting for any required items not specified in

Re: problem with FTP from Windows 10 to z/OS

2018-06-06 Thread Donald J
Paul Gilmartin" <000433f07816-dmarc-requ...@listserv.ua.edu> > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: problem with FTP from Windows 10 to z/OS > > On Wed, 6 Jun 2018 13:50:22 +0200, Donald J wrote: > > >You could write a VBscript that creates your FTP script. >

Re: problem with FTP from Windows 10 to z/OS

2018-06-06 Thread Paul Gilmartin
On Wed, 6 Jun 2018 13:50:22 +0200, Donald J wrote: >You could write a VBscript that creates your FTP script. >Store the password in a Win10 user or volatile environment variable. >The VBscript could run the FTP script, then delete the script file, >so there is no password kept on disk for more

Re: problem with FTP from Windows 10 to z/OS

2018-06-06 Thread Donald J
temEnv = objShell.Environment( "VOLATILE" ) V_PW = objSystemEnv( "ZZPASS" ) > Sent: Monday, June 04, 2018 at 9:47 AM > From: "Kevin Merkley" > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: problem with FTP from Windows 10 to z/OS > > Thanks for the respon

Re: problem with FTP from Windows 10 to z/OS

2018-06-04 Thread Seymour J Metz
://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List on behalf of Paul Gilmartin <000433f07816-dmarc-requ...@listserv.ua.edu> Sent: Friday, June 1, 2018 9:27 PM To: IBM-MAIN@listserv.ua.edu Subject: Re: problem with FTP from Windows 10 to z/OS Hi,

Re: problem with FTP from Windows 10 to z/OS

2018-06-04 Thread Paul Gilmartin
On Mon, 4 Jun 2018 16:21:52 +, Farley, Peter x23353 wrote: >Sorry for wasting bandwidth, I missed the part where you wanted the "password >not in the script" option. I didn't realize the Win 7 FTP did that and that >Win 10 does not since I always just used "password in the script" for my

Re: problem with FTP from Windows 10 to z/OS

2018-06-04 Thread Farley, Peter x23353
ssage- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Farley, Peter x23353 Sent: Monday, June 4, 2018 11:12 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: problem with FTP from Windows 10 to z/OS PMFJI here, but that is simply not true of Win 10 FTP in my experience.

Re: problem with FTP from Windows 10 to z/OS

2018-06-04 Thread Farley, Peter x23353
Windows 10 to z/OS EXTERNAL EMAIL Thanks for the responses. I did receive an explanation that OPTS UTF8 ON is not the problem. The Windows 10 FTP client uses a different function to read the password and always reads it from stdin. This is something we send out to customers so we have to expect

Re: problem with FTP from Windows 10 to z/OS

2018-06-04 Thread Kevin Merkley
Thanks for the responses. I did receive an explanation that OPTS UTF8 ON is not the problem. The Windows 10 FTP client uses a different function to read the password and always reads it from stdin. This is something we send out to customers so we have to expect they may not have anything

Re: problem with FTP from Windows 10 to z/OS

2018-06-01 Thread Paul Gilmartin
Hi, Kevin, On Fri, 1 Jun 2018 23:58:39 +, Mike Hochee wrote: > >Note: In Windows 8 and Windows Server 2012 or later operating systems, the >text file must be written in UTF-8. > That's weird. And irritating. Does "text file" refer to the command file or to the data file? In either case,

Re: problem with FTP from Windows 10 to z/OS

2018-06-01 Thread Andrew Rowley
On 2/06/2018 8:31 AM, Kevin Merkley wrote: I'm normally a VM guy but I'm trying to do some work on z/OS 2.2, and I could use some help. I'm trying to use Windows FTP to transfer a downloaded tersed file from Windows to z/OS 2.2. One option to consider is the Windows Subsystem for Linux which

Re: problem with FTP from Windows 10 to z/OS

2018-06-01 Thread Steve Horein
Maybe add -n? C:\>ftp /? Transfers files to and from a computer running an FTP server service (sometimes called a daemon). Ftp can be used interactively. FTP [-v] [-d] [-i] [-n] [-g] [-s:filename] [-a] [-A] [-x:sendbuffer] [-r:recvbuffer] [-b:asyncbuffers] [-w:windowsize] [host] -v

Re: problem with FTP from Windows 10 to z/OS

2018-06-01 Thread Mike Hochee
ley Sent: Friday, June 1, 2018 6:32 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: problem with FTP from Windows 10 to z/OS I'm normally a VM guy but I'm trying to do some work on z/OS 2.2, and I could use some help. I'm trying to use Windows FTP to transfer a downloaded tersed file from Windows to z

problem with FTP from Windows 10 to z/OS

2018-06-01 Thread Kevin Merkley
I'm normally a VM guy but I'm trying to do some work on z/OS 2.2, and I could use some help. I'm trying to use Windows FTP to transfer a downloaded tersed file from Windows to z/OS 2.2. Previously, with Windows 7, I invoked FTP with this command: ftp < ftpscript.txt The ftpscript file normally