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.
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?
>