以编程方式创建DB2接收端口

时间:2017-04-08 16:28:48

标签: db2 adapter biztalk

我正在以编程方式创建BizTalk接收位置 我知道我们可以以编程方式为文件和WCF适配器创建接收端口和位置。以类似的方式,当我尝试创建DB2适配器端口&已创建位置但未应用配置属性。

以下是我正在使用的customprop xml

<CustomProps>
    <AdapterConfig vt = "8">
        <Receive xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd = "http://www.w3.org/2001/XMLSchema">
            <connectionString>ABC</connectionString>
            <sqlCommand>xyz</sqlCommand>
            <documentRootElementName>DB2Records</documentRootElementName>
            <documentTargetNamespace>http://db2.com</documentTargetNamespace>
            <batchSize>-1</batchSize>
            <CommandTimeout>30</CommandTimeout>
            <pollingUnitOfMeasure>Seconds</pollingUnitOfMeasure>
            <pollingInterval>30</pollingInterval>
            <uri>test</uri>
            <columnMapping>Attributes</columnMapping>
        </Receive>
    </AdapterConfig>
</CustomProps>

任何人都可以帮助我理解我们是否可以从C#代码创建DB2接收位置?

0 个答案:

没有答案