Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

client_host ftp

526480Jan 26 2010 — edited Jan 26 2010
gretings gurus

i'll try to explain my problem.

SITUATION 1: send a local file to server

'CMD /C START ftp -v -n -s:"c:\temp\in_out_ftp.txt" '

in_out_ftp.txt:
open sv_ip
user user1 pass1
ASCII
lcd c:\temp
cd server dir
put file
bye

now this works fine.

SITUATION 2: get a local file from server

'CMD /C START ftp -v -n -s:"c:\temp\in_out_ftp.txt" '

in_out_ftp.txt:
open sv_ip
user user1 pass1
ASCII
lcd c:\temp
cd server dir
get file
bye

this leaves open the FTP window. without doing the tranfer.

SITUATION 3: get a local file from server without the start command

'CMD /C ftp -v -n -s:"c:\temp\in_out_ftp.txt" '

in_out_ftp.txt:
open sv_ip
user user1 pass1
ASCII
lcd c:\temp
cd server dir
get file
bye


this leaves open the CMD window. without doing the tranfer.


i need to know if this is possible so i dont waste more time.

forms 9i db 9i
webutil correctly installed.

many thanks in advance.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 23 2010
Added on Jan 26 2010
16 comments
2,394 views