Registering the D365 CE Dataverse Module for dox42 Server (on-prem)

Prev Next

You need to register the dox42 Server D365 CE | Dataverse Module in order to use it with dox42 Server.

Prerequisites

  • .NET Framework 4.5.2 or higher is installed on the server.

Steps

  1. Open our download website to find the most recent releases: https://www.dox42.com/Modules/Download

  2. Go to the dox42 D365 CE | Dyn. CRM | Dataverse tile and select the Download button.

  3. Select the Accept Terms & Conditions button.

  4. Select the Download button.
    A .zip file with the module is downloaded.

  5. Extract the downloaded file.
    A  folder named dox42DynamicsCRM_V<Versionnumber> is created.

  6. Copy the following assemblies from the DataSource sub-folder to the bin folder of your dox42 Server (C:\dox42Server\Bin):

    • CRMDataEngine.dll

    • CRMLicence.dll

    • CRMOutputAction.dll

    • Microsoft.Crm.Sdk.Proxy.dll

    • Microsoft.Xrm.Sdk.dll

    • Microsoft.Identity.Client.dll

  7. Register the dox42 D365 CE | Dataverse data source and output action in the web.config file of your server.

    <customDataSources>
    
      <add key="CRMDataEngine.CRMDataSourceParser" 
    
          value="CRM Data Source;c:\dox42Server\bin\CRMDataEngine.dll;"/>
    
    </customDataSources>
    
    <customOutputActions>
    
      <add key="CRMOutputAction.CRMOutputAction"
    
           value="CRMOutputAction; c:\dox42Server\bin\CRMOutputAction.dll;" />
    
    </customOutputActions>

  8. Insert the license key in the web.config file of your server.

    Tip

    Look for the key named “dox42CRMLicenseKey” and replace the text with your personal licence key. In our code below, you can find the relevant key in line 3.

    <appSettings>
    
      <add key="LicenseFilePath" value="c:\dox42Server\License" />
    
      <add key="LicenseKey" value="…"/>
    
      <add key="dox42CRMLicenseKey" value="…"/>
    
    …
    
    </appSettings>

Note

For more information on the dox42 Server, see the dox42 Server documentation.

Result

You have registered the dox42 Server D365 CE | Dataverse Module and can now use it with dox42 Server.