View previous topic :: View next topic |
Author |
Message |
moyeenkhan Beginner
Joined: 04 Dec 2002 Posts: 64 Topics: 21
|
Posted: Thu Jul 03, 2003 2:11 pm Post subject: How to submit a Job thru Web |
|
|
Hi List
I want to submit a TSO job thru web -- either thru Java or Html. Does anybody know how to submit? |
|
Back to top |
|
|
Cogito-Ergo-Sum Advanced
Joined: 15 Dec 2002 Posts: 637 Topics: 43 Location: Bengaluru, INDIA
|
Posted: Thu Jul 03, 2003 10:50 pm Post subject: |
|
|
Moyeen,
You have to execute the FTP commands as follows. How you get to do that, is what I do not know.
Code: |
ftp ipaddress
userd
password
quote site filetype=jes
put 'your file having JCL'
quit
|
_________________ ALL opinions are welcome.
Debugging tip:
When you have eliminated all which is impossible, then whatever remains, however improbable, must be the truth.
-- Sherlock Holmes. |
|
Back to top |
|
|
hari_uss Beginner
Joined: 19 Dec 2002 Posts: 78 Topics: 6 Location: Trivandrum, India
|
Posted: Fri Jul 04, 2003 10:26 pm Post subject: |
|
|
Or you need some "complex" mechanism which involves something like MQ. The java program will be able to write into the queue and you have to set up a job in Mainframe side which will constantly look at the queue for any new message (or a job that will get triggered when a new message comes into the queue). But I have to say, it is going to be a little difficult to implement!
Regards,
Hari. |
|
Back to top |
|
|
moyeenkhan Beginner
Joined: 04 Dec 2002 Posts: 64 Topics: 21
|
Posted: Mon Jul 07, 2003 8:17 am Post subject: |
|
|
Hi Cogito-Ergo-Sum
Thanks for the solution. I could submit a job through FTP. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
|
Back to top |
|
|
|
|