FTP Connection with backslash in username
Hello,
I am using Peter Torpey's FTPConnection.jsx to upload rendered movies to a server directly from After Effects. Works great on my server! Now, I have to use Microsoft's Azure for hosting this project, and their FTP username includes a backslash. The connection is refused ("Login failed: Server rejected username"). Seems like ExtendScript's Socket doesn't like the backslash in the FTP username!
The logfile contains (domain\username is my ftp username):
--Put: successfully connected
+220 Microsoft FTP Service
--Found code: 220
:USER domain\username
+451 The parameter is incorrect.
:QUIT
When defining the ftp username in JavaScript, I escape the backslash:
var ftpUser = 'domain\\username';
The FTP credentials work with a FTP desktop client (cyberduck in my case) and also in command line.
Any tips of how to get this working?
