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

[REBOL] Strange chars in password Re:

From: fantam:mailandnews at: 5-Sep-2000 2:51

> I need to connect to FTP but the password contains chars like #"@" or #"\". What can I do? >From the network protocols document:
You can also open FTP connections by using a port specification rather than a URL. This allows you to use any password, even ones containing special characters that are not easily written in URLs. An example of a port specification to open an FTP connection is: ftp-port: open [ scheme: `ftp host: "ftp.site.com" user: ask "Username? " pass: ask "Password? " ] See the "Specifying Network Resources" section above for more detail. -- Fantam