I have set up a number of an FTP sites using IIS7.5. The sites use hostnames to differentiate between them. One drawback of using hostnames is that you have to pass the address of the ftp site into the username e.g.
Ftp Address: ftp://ftp.example.com
Username: ftp.example.com|User1
Password: psswrd
I would like to at least pass in the username as part of the connection address e.g. ftp://ftp.example.com|[email protected] but I have been unable to do this using Windows Explorer (in Windows 7). Whenever I try this technique I'm still prompted to enter the user name and password.
I have set the useDomainNameAsHostName=True on the server which allows a bit more flexibility in the username but I still can’t get it to work. Neither ftp://ftp.example.com%[email protected]/ or ftp://User1%[email protected]/ seems to make any difference in IE9 or Chrome.
Where am I going wrong?
ftp://username:[email protected]
?