FTP Connection
Declares an FTP connection manager that targets 'theFtpServer.com' with a username and password. Replace 'ServerName', 'UserName', and 'Password' with values for your own FTP host. The password is stored in plaintext, so route the value through a parameter, environment variable, or project configuration when generating production packages.
<Biml xmlns="http://schemas.varigence.com/biml.xsd">
<Connections>
<FtpConnection Name="MyFtpConnection" Password="p@ssw0rd" UserName="myUserName" ServerName="theFtpServer.com" />
</Connections>
</Biml>