Quick tip for those putting alternate user names and passwords. When you export your bindings file, BizTalk 2006 replaces the password for the user credentials with a VT_NULL inside the <TransportTypeData> element:
<Password vt="1" />
Be careful, that vt="1" mean NULL, or in other words - no password. So when you do this:
<Password vt="1">mysecret</Password>
You might as well do nothing. When the file receive adapter imports these bindings, it will not set a password. However, the send adapter doe snot seem to care and will set the password fine. Regardless, the proper form is to specify VT_BSTR attribute in the Password element:
<Password vt="8">mysecret</Password>
You can find this documented in the Biztalk binding file documentation:
Configuration Property Variable Types
File Adapter Configuration Properties