> Are you perhaps behind a firewall?  It looks like REBOL's FTP protocol 
> is having trouble establishing the active connection for the data.
> Try setting:

> system/schemes/ftp/passive: true

> and try it again.

I do have a personal firewall solution on my standalone pc, but even
when I turn it off, the problem remains the same.

Also, when I turn passive ftp on, I get this :

>> foreach dir xom [print dir text: read join xoom dir]
BFRENCH.DWP
connecting to: ftp.xoom.com
** User Error: Server error: tcp connection failed.
** Where: text: read join xoom dir

When I turn it off again, everything's fine but same as above:
filenames with spaces can't be read.

> Sterling

>> With a trace/net on, one can see that Rebol parses internally the URL,
>> and I'm wondering if this is not the source of the problem :
>> 
>> URL Parse: myname password ftp.xoom.com none backup/ FRANCO22 final.DWP
>> Net-log: [
>>     ["PORT" port/locals/active-check] "200"]
>> Net-log: "200 PORT command successful."
>> Net-log: [
>>     ["TYPE A"] ["200"]]
>> Net-log: "200 Type set to A."
>> Net-log: [
>>     [join "LIST " port/target] ["150" "125"]]
>> Net-log: {150 Opening ASCII mode data connection for /bin/ls.}
>> Net-log: [
>>     none "226"]
>> Net-log: "226 Transfer complete."
>> Net-log: [
>>     ["PORT" port/locals/active-check] "200"]
>> Net-log: "200 PORT command successful."
>> ** Access Error: Port none not open.
>> ** Where: read/binary join xoom file
>> 
>> So, is this a bug?
>> 



-- 
Fantam


Reply via email to