在使用我为 BizTalk Server 2010 制作的适配器导出包含发送端口的应用程序时,我在清除密码时遇到问题。
发送端口使用我制作的适配器,基于 Microsoft.Samples.BizTalk.Adapter.Common BaseAdapter (v.1.0.2)。
TransmitLocation.xsd 和 TransmitHandler.xsd 模式都使用 AdapterFramework 密码特定字段,并且都定义为:
<xs:element minOccurs="1" default="" name="passwordField">
<xs:simpleType>
<xs:annotation>
<xs:appinfo>
<baf:designer xmlns:baf="BiztalkAdapterFramework.xsd">
<baf:category _locID="mailAuthIndstillingerKategori">Password related category</baf:category>
<baf:displayname _locID="passwordName">Password:</baf:displayname>
<baf:description _locID="passwordDescription">Password description.</baf:description>
<baf:editor assembly="%BTSROOT%\\Developer Tools\\Microsoft.BizTalk.Adapter.Framework.dll">Microsoft.BizTalk.Adapter.Framework.ComponentModel.PasswordUITypeEditor</baf:editor>
<baf:converter assembly="%BTSROOT%\\Developer Tools\\Microsoft.BizTalk.Adapter.Framework.dll">Microsoft.BizTalk.Adapter.Framework.ComponentModel.PasswordTypeConverter</baf:converter>
</baf:designer>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
一些 google-hits 提到在应该被清除的元素上设置 ' vt="1" ' 属性应该可以解决问题。我尝试在调用ValidateConfiguration()时设置/添加此属性。但是配置 XML 作为字符串返回,然后在插入<CustomProps> xml 之前进行转义,并在绑定文件中导出。
我尝试在注册表项中指定SendHandlerPropertiesXML和SendLocationPropertiesXML的AdapterConfig应该使用以下<CustomProps>,并带有vt="1"属性,希望它可以清除端口的整个绑定属性(不是最佳的,但比让某人导出密码更好的解决方案):
SendHandlerPropertiesXML : <CustomProps><AdapterConfig vt="1"/></CustomProps>
SendLocationPropertiesXML : <CustomProps><AdapterConfig vt="1"/></CustomProps>
导出配置了发送端口的应用程序时,具体的 XML 如下所示:
<TransportTypeData><CustomProps><AdapterConfig vt="1">&lt;Config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;&lt;passwordField vt="1"&gt;CLEARTEXTPASSWORD;lt;/passwordField&gt;&lt;uri&gt;SMTP://NOT-USED&lt;/uri&gt;&lt;/Config&gt;</AdapterConfig></CustomProps></TransportTypeData>
每次导出绑定时,都会调用适配器的重载方法:ValidateConfiguration(),但无法判断这是何时配置适配器,还是何时导出绑定,这意味着:您无法修改密码在返回的 xml 字符串中,因为它在配置时也会破坏密码。
还有其他内置适配器可以执行此操作(例如:SMTP 适配器),我确信这是我误解的基本内容。但是任何帮助或指示都会非常有帮助。