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
Open our download website to find the most recent releases: https://www.dox42.com/Modules/Download
Go to the dox42 D365 CE | Dyn. CRM | Dataverse tile and select the Download button.
Select the Accept Terms & Conditions button.
Select the Download button.
A .zip file with the module is downloaded.Extract the downloaded file.
A folder nameddox42DynamicsCRM_V<Versionnumber>
is created.Copy the following assemblies from the
DataSource
sub-folder to thebin
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
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>
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.