0

我正在尝试使用 Replicator 设置 Invantive Data Hub。默认发现为 Exact Online 和其他创建条目,但在 settings.xml 中没有条目,它向我展示了如何配置数据缓存。

例如,这个存在:

<connection name="Exact Online (nl)" id="c149becf-01d3-4a58-9ee7-7369f34bdff5" description="{res:itgen_demo_exact_online_combined_nl}" sortingOrder="1000" authentication="Application" userLogonCodeMode="Auto" passwordMode="Auto" createdBy="jbu" createdOn="WS102" creationDate="2017-08-17T13:53:23.9351965+02:00">
  <database order="0" createdBy="jbu" createdOn="WS102" creationDate="2017-08-17T13:53:23.9071956+02:00" provider="ExactOnlineAll" connectionString="apiUrl=https://start.exactonline.nl" />
</connection>

控制台应用程序没有 settings.xml 的编辑器,因此必须手动完成。

如何配置要使用的 Replicator 连接字符串?

4

1 回答 1

1

使用带有不同关键字的 Google,我找到了一个可行的设置。settings-something.xml首先在 %USERPROFILE%\invantive 中添加一个文件。

给它的内容如下:

<?xml version="1.0" encoding="utf-16"?>
<settings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3" forcedefault="false">
  <group name="Jurriaan" >
    <connection name="Exact Online with PostgreSQL Data Cache" dataCacheConnectionString="provider=PostgreSql;connectionString={Server=dbserver;Database=db;User Id=db_owner;Password=db_pwd}" >
      <database provider="ExactOnlineAll" connectionString="apiUrl=https://start.exactonline.nl" />
    </connection>
  </group>
</settings>

如果 Data Hub 上有一个连接编辑器或至少有一个示例,那会很方便:-)

于 2017-08-18T08:30:36.107 回答