I have the daunting task of converting our AS/400 Token Ring connection to Ethernet. The organization as a whole is moving to Ethernet. This will require a lot of changes on our side for jobs that we have set up for RJE that need to be converted to FTP. Does anyone have any helpful hints/suggestions on how to make this a smooth transistion?
Thanks!
Software/Hardware used:
ASKED:
November 29, 2005 10:58 AM
UPDATED:
December 2, 2005 8:11 AM
On the AS400 RJE to FTP part of the project one of the biggest things you may notice is , if you are sending remote jobs to another site (AS400 remote or JES2) the actual job statements are transmitted to the remote from the local “RJE reader”. There is no real comparable constuct via FTP. Typically the remote job will be executed via an FTP remote command, but the actual job statements will either have to live on the remote machine or will have to be previously loaded to a script file on the remote via FTP file transfer and then invoked via remote command. The command format for doing this on a remote AS400 would be:
QUOTE RCMD SBMDBJOB scriptfile member
Not sure about a easy conversion from RJE to AS400 FTP, but I have done a lot of FTP processes on the AS400. A good place to start is at:
http://publib.boulder.ibm.com/iseries/v5r2/ic2924/index.htm?info/rzaiq/rzaiqftpbatch.htm
We use dynamic file names, so we actually create the input file (contains the FTP commands for the process) on the fly based on parms passed to the controlling CL program.
I hope this helps. If you need more info or have any questions, please let me know and I will try and provide it. Not sure how well I documented the processes I have installed, but may be able to give you something that helps.
Chris (cgrissett@josephtaylor.com)
Thanks for all the helpful suggestions!