Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: ftp failure

From: ahmed:batoaq:aramco at: 19-Feb-2003 8:37

I set the schemes/ftp/proxsy/host ,port-id and type to false instead of none and it went OK. See the log below. In Rebol/view there was no need to set schemes/ftp/proxsy/host ,port-id and type to false. First time "227 Entering Passive Mode (10,10,8,90,6,158)" message was failing in Rebol/core but not in Rebol/view. Now after assigning false to ftp/proxy passive mode was not required. Could someone explain to me why passive mode didn't work. Regards,
>> system/schemes/ftp/proxy/host: false
== false
>> system/schemes/ftp/proxy/prot-id: false
** Script Error: Invalid path value: prot-id ** Near: system/schemes/ftp/proxy/prot-id: false
>> system/schemes/ftp/proxy/port-id: false
== false
>> system/schemes/ftp/proxy/type: false
== false
>> exists? ftp://my_user:[my_pass--10--10--8--90]/
URL Parse: my_user my_pass 10.10.8.90 none none none URL Parse: my_user my_pass 10.10.8.90 none none none Net-log: ["Opening tcp for" FTP] connecting to: 10.10.8.90 Net-log: [ none ["220" "230"]] Net-log: {220 oamserv FTP server (Version 1.7.212.2 Tue Apr 21 12:14:46 GMT 1998) ready.} Net-log: [ ["USER" port/user] "331"] Net-log: "331 Password required for my_user." Net-log: [ ["PASS" port/pass] "230"] Net-log: "230 User my_user logged in." Net-log: [ "SYST" "*"] Net-log: "215 UNIX Type: L8" Net-log: [ ["PORT" port/locals/active-check] "200"] Net-log: "200 PORT command successful." Net-log: [ ["CWD" either empty? port/path ["./"] [join "./" port/path]] "250"] Net-log: "250 CWD command successful." Net-log: [ ["TYPE A"] ["200"]] Net-log: "200 Type set to A." Net-log: [ ["LIST"] ["150" "125"]] Net-log: {150 Opening ASCII mode data connection for /usr/bin/ls.} Net-log: [ none "226"] Net-log: "226 Transfer complete." == true