Я пытаюсь подключиться к Salesforce, используя kingswaysoft разъем SSIS.
Я могу успешно подключиться к Salesforce с помощью графического интерфейса Microsoft Visual Studio в проекте Data Integration и получить данные из Salesforce. Поскольку мне нужно сгенерировать более 100 пакетов SSIS для обработки, я пытаюсь писать с использованием BIML, который, в свою очередь, генерирует пакеты SSIS.
У меня есть мой BIML-код, как показано ниже
<Biml xmlns="http://schemas.varigence.com/biml.xsd">
<Connections>
<CustomSsisConnection Name="Salesforce Connection Manager" CreationName="Salesforce (KingswaySoft)" ObjectData="<SalesforceConnectionManager ConnectionString="InstanceType=Production;UserName=XXXXXXXXXXX;ServiceTimeout=250;ProxyMode=NoProxy;ProxyServer=;ProxyServerPort=0;ProxyUsername=;RetryOnIntermittentErrors=True">
 <Password Sensitive="1" xmlns="www.microsoft.com/SqlServer/Dts" Encrypted="0">XXXXXXXXX</Password>
 <SecurityToken Sensitive="1" xmlns="www.microsoft.com/SqlServer/Dts" Encrypted="0">XXXXXXXXXXXXXXXXXX</SecurityToken>
</SalesforceConnectionManager>" />
</Connections>
<Packages>
<Package Name="Package_1" Language="None" ProtectionLevel="EncryptSensitiveWithUserKey" SsisPackageType="5" VersionBuild="9" CreatorName="84336" CreatorComputerName="84336-WX-1" CreationDate="2018-07-03T15:40:13">
<Variables>
<Variable Name="recordsCount" DataType="Int32" IncludeInDebugDump="Include">0</Variable>
</Variables>
<Tasks>
<Dataflow Name="Data Flow Task">
<Transformations>
<RowCount Name="Row Count" VariableName="User.recordsCount">
<InputPath OutputPathName="Salesforce Source.Salesforce Source Output" />
</RowCount>
<CustomComponent Name="Salesforce Source" ComponentTypeName="KingswaySoft.IntegrationToolkit.Salesforce.SalesforceSourceComponent" ContactInfo="KingswaySoft Inc.; http://www.kingswaysoft.com; support@kingswaysoft.com; Copyright (c) 2011-2018 KingswaySoft Inc.">
<DataflowOverrides>
<OutputPath OutputPathName="Salesforce Source Output">
<Columns>
<Column ErrorRowDisposition="FailComponent" TruncationRowDisposition="FailComponent" ColumnName="AccountNumber" />
</Columns>
</OutputPath>
</DataflowOverrides>
<CustomProperties>
<CustomProperty Name="SourceType" DataType="Int32" TypeConverter="KingswaySoft.IntegrationToolkit.Salesforce.SalesforceSourceType" SupportsExpression="true" Description="Specifies the type of source data from Salesforce">0</CustomProperty>
<CustomProperty Name="SourceObject" DataType="String" SupportsExpression="true" Description="Salesforce object to retrieve data from.">Account</CustomProperty>
<CustomProperty Name="ObjectQuery" DataType="String" SupportsExpression="true" Description="Salesforce object query statement."></CustomProperty>
<CustomProperty Name="BatchSize" DataType="Int32" SupportsExpression="true" Description="Specifies the batch size of the query.">1000</CustomProperty>
<CustomProperty Name="IncludeDeletedArchived" DataType="Boolean" SupportsExpression="true" Description="Specifies whether deleted or archived records should be returned.">false</CustomProperty>
<CustomProperty Name="UseBulkApi" DataType="Boolean" SupportsExpression="true" Description="Specify whether to use Salesforce Bulk API to read data.">false</CustomProperty>
<CustomProperty Name="OutputTimezone" DataType="Int32" TypeConverter="KingswaySoft.IntegrationToolkit.Common.DescriptiveEnumTypeConverter`1[[KingswaySoft.IntegrationToolkit.Salesforce.SfdcSourceOutputTimezone, KingswaySoft.IntegrationToolkit.Salesforce, Version=1.0.2017.0, Culture=neutral, PublicKeyToken=705df8e0751bcea7]], KingswaySoft.IntegrationToolkit.Salesforce, Version=1.0.2017.0, Culture=neutral, PublicKeyToken=705df8e0751bcea7" SupportsExpression="true" Description="Specifies the output timezone for Salesforce datetime fields.">1</CustomProperty>
<CustomProperty Name="PKChunkingHeader" DataType="String" SupportsExpression="true" Description="Specify the PK Chunking Header that helps with Bulk API data read performance."></CustomProperty>
</CustomProperties>
<OutputPaths>
<OutputPath Name="Salesforce Source Output">
<OutputColumns>
<OutputColumn Name="AccountNumber" Length="40" DataType="String" ExternalMetadataColumnName="AccountNumber" ErrorOrTruncationOperation="Conversion" ErrorRowDisposition="FailComponent" TruncationRowDisposition="FailComponent" />
</OutputColumns>
<ExternalColumns>
<ExternalColumn Name="AccountNumber" Length="40" DataType="String" />
</ExternalColumns>
</OutputPath>
</OutputPaths>
<Connections>
<Connection Name="Salesforce" ConnectionName="Salesforce Connection Manager" />
</Connections>
</CustomComponent>
</Transformations>
</Dataflow>
</Tasks>
<Connections>
<Connection ConnectionName="Salesforce Connection Manager" />
</Connections>
</Package>
</Packages>
</Biml>
Я вижу, что соединение Salesforce (правильно) создано внутри проекта BI после создания пакета служб SSIS из BIML.
![enter image description here](https://i.stack.imgur.com/qnlYL.png)
И сгенерированный SSIS выглядит следующим образом
![enter image description here](https://i.stack.imgur.com/KKLNL.png)
Когда я дважды щелкаю на источнике Salesforce, я получаю предупреждение, которое отображается как
![enter image description here](https://i.stack.imgur.com/5Kw6E.png)
Пожалуйста, предложите, что мне здесь не хватает. Почему источник Salesforce не настраивается автоматически через BIML?
Любые предложения приветствуются !!