如何通过 Java Web 应用程序在 IBM zOS 上提交 JCL?
有人可以告诉我从不同服务器 (Windows) 上的 Java Web 应用程序在 IBM zOS 上运行 JCL 的最佳方法吗?我还需要从工作中获取响应代码。
目前的 2 个选项是: 1)使用JES - 但很难得到响应 2) 通过 DB2 过程进行调用。
还有另一种(更好的)方法吗
Can someone tell me the best way to run a piece of JCL on IBM zOS from a Java web app on a different server (Windows). I also need get a response code back from the job.
The 2 options at the moment are:
1) Using JES - But its hard to get the response back
2) Make a call through a DB2 procedure.
Is there another (better) way
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定这是否有帮助,但是当我寻找有关如何在 z/OS 上使用 FTP 传输文件的信息时,我看到了 IBM 的以下文章。
http://www.ibm.com/developerworks/systems/library/es-zosbatchjavav/index.html
希望你发现它很有帮助。
I"m not sure if this will help, but while I was looking for information about how to use FTP on z/OS to transfer files I saw the following article from IBM.
http://www.ibm.com/developerworks/systems/library/es-zosbatchjavav/index.html
Hope you find it helpful.
我使用了两种有效的方法:
1- 使用 ftp -i -v -n >> unix 上的 $LOGFILE。
...
引用站点 FILETYPE=JES 然后输入
JOBNAME=
grep "It isknown to JES as" $LOGFILE | awk '{print $7}'
quote site FILETYPE=JES get $JOBNAME.x getuser.out (x=1,2,3 or 4)
删除 $JOBNAME
2- 在 v9 上调用 ADMIN_JOB_SUBMIT
http: //publib.boulder.ibm.com/infocenter/dzichelp/v2r2/index.jsp?topic=%2Fcom.ibm.db2z9.doc.admin%2Fsrc%2Ftpc%2Fdb2z_sp_admincommanddb2.htm
I used 2 methods that work:
1- with ftp -i -v -n >> $LOGFILE on unix.
...
quote site FILETYPE=JES then put
JOBNAME=
grep "It is known to JES as" $LOGFILE | awk '{print $7}'
quote site FILETYPE=JES get $JOBNAME.x getuser.out (x=1,2,3 or 4)
delete $JOBNAME
2- on v9 call ADMIN_JOB_SUBMIT
http://publib.boulder.ibm.com/infocenter/dzichelp/v2r2/index.jsp?topic=%2Fcom.ibm.db2z9.doc.admin%2Fsrc%2Ftpc%2Fdb2z_sp_admincommanddb2.htm