Meerdere Exact Online Abonnementen combineren met Invantive Control

Hoe settings.xml aanpassen indien er administraties uit meerdere Exact Online Abonnementen dienen te worden geraadpleegd?

Het gaat om:

  • 1x Abonnement Exact Online België,
  • 1x Abonnement Exact Online Nederland - Productie,
  • 1x Abonnement Exact Online Nederland - Projecten.

Je kunt zelf een nieuw settings-bestand maken aan de hand van dit artikel: Settings.xml XML-formaat voor virtuele SQL databases.

In jouw geval heb je dus één “connection” node nodig, met daaronder drie “database” nodes. Om het land aan te passen binnen Exact Online pas je de “api-url” parameter aan. De drie nodes zien er bijvoorbeeld zo uit:

...
      <database
        order="10"
        alias="be"
        provider="ExactOnlineAll"
        connectionString="api-url=https://start.exactonline.be"
        AllowConnectionPooling="false" />
      <database
        order="20"
        alias="nl1"
        provider="ExactOnlineAll"
        connectionString="api-url=https://start.exactonline.nl"
        AllowConnectionPooling="false" />
      <database
        order="30"
        alias="nl2"
        provider="ExactOnlineAll"
        connectionString="api-url=https://start.exactonline.nl"
        AllowConnectionPooling="false" />
...