View previous topic :: View next topic |
Author |
Message |
danm Intermediate
Joined: 29 Jun 2004 Posts: 170 Topics: 73
|
Posted: Wed Mar 25, 2009 11:47 am Post subject: Suppress messages from ftp |
|
|
Code: |
/* REXX */
'MAKEBUF'
queue 'Remote server'
queue 'Userid'
queue 'Password'
queue 'ascii'
queue 'sendsite'
queue 'locsite trail'
queue "put 'local_file' remote_file"
queue 'quit'
xx = outtrap('TEMP.')
address TSO 'ftp'
xx = outtrap('OFF')
'DROPBUF'
Exit
|
With outtrap function (or MSG(OFF) build function), the following still shows up:
Code: |
220 Remote server (SecureTransport) ready.
234 SSLv23/TLSv1
200 PBSZ=0
200 PROT command successful
331 Password required for USERID.
230 Virtual user USERID logged in.
200 Type set to A.
200 PORT command successful.
150 Opening ASCII mode SSL data connection for test.
226 Transfer complete.
221 Goodbye.
|
Any way to suppress the message? |
|
Back to top |
|
 |
computer Beginner
Joined: 12 Jun 2007 Posts: 64 Topics: 17 Location: Hyderabad
|
Posted: Thu Jul 30, 2009 2:16 am Post subject: |
|
|
Hi,
I am calling SORT from REXX, and I tried using OUTTRAP and MSG function, but still unable to suppress the terminal messages.....
Please suggest if there is any way....
Thanks In Advance,
Computer |
|
Back to top |
|
 |
expat Intermediate

Joined: 01 Mar 2007 Posts: 475 Topics: 9 Location: Welsh Wales
|
Posted: Thu Jul 30, 2009 3:48 am Post subject: |
|
|
computer wrote: | Hi,
I am calling SORT from REXX, and I tried using OUTTRAP and MSG function, but still unable to suppress the terminal messages.....
|
What terminal messages ?
I run SORT through REXX and get no messages. _________________ If it's true that we are here to help others,
then what exactly are the others here for ? |
|
Back to top |
|
 |
|
|