BizTalk Server: Save password in binding file for WCF Adapter
<ReceiveLocationTransportTypeData><CustomProps>…</CustomProps></ReceiveLocationTransportTypeData>
Find emtpy password tag in this section that will look like:
<Password vt=”1″/>
In Notepad++:
In Browser:
Change it to enclose you password value and vt attribute value to “8”:
<Password vt=”8″>MyPassword</Password>
The same can be done to a username, replacing the “Password” tag with “UserName”. This method can also be used in conjunction with BizTalk Deployment Framework (BTDF) variables specified at design-time in the SettingsFileGenerator.xml, or on deployment when specified as an _ENV_VARIABLE in the InstallWizard.xml file.
Save and use this binding for an automated deployment script.