launching JCL on MVS

Chris chrisNOSPAM at spam.com
Mon Sep 13 09:41:22 EDT 2004


Thanks, but what does it do? Upload test.jcl and execute it?
Let's say that I already have a "TEST" JCL on the HOST, how can I execute it
via an FTP command?

Chris

"Jaime Wyant" <programmer.py at gmail.com> a écrit dans le message de news:
mailman.3230.1095079924.5135.python-list at python.org...
> Disclaimer - I've never used ftplib, so the code below hasn't actually
> been tested..
>
> First, create some JCL.  For this example assume it is test.jcl and it
> is in the CWD.
>
> # Connect to the server
> >>> from ftplib import FTP
> >>> ftp = FTP("hostname")   # connect to host, default port
> >>> ftp.login("username", "password")
>
> # Tell the server you're about to send it some JCL to execute
> >>> ftp.voidcmd( "quote site file=JES" )
>
> # Upload the JCL
> >>> print ftp.storlines( "STOR", file("test.jcl") )
>
> The last command ought to print ought the Job ID (and a few other things).
>
> Good luck and let me know if that works for you.  Also, some of those
> methods will raise exceptions if something goes wrong.  Check out
> ftplib.py for good documentation.
>
> jw
>
> On Mon, 13 Sep 2004 10:56:57 +0200, Chris <chrisnospam at spam.com> wrote:
> > Is it possible to use Python to launch JCL jobs on an IBM MVS HOST
(OS390) ?
> >
> > --
> > http://mail.python.org/mailman/listinfo/python-list
> >





More information about the Python-list mailing list