Plass.Id.ImageGateway.exe.config
This file is placed with the application executable and contains general connection settings and default user settings.
Please look up the lines with <!-- ******************* and their description to identify configurable elements.
The most important element is:
<setting name="DVIServerURL" serializeAs="String"> <value>http://mydviserver/Plass.Id.Web/</value> <!-- ********************* Change this value to point to your DVI Server *************** --> </setting>
where the value must be set to point to the DVI Server machine.
App.config
<?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <section name="Plass.Id.ImageGateway.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> </sectionGroup> <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <section name="Plass.Id.ImageGateway.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" /> </sectionGroup> </configSections> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.Cors" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-5.2.2.0" newVersion="5.2.2.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" /> </dependentAssembly> </assemblyBinding> </runtime> <applicationSettings> <Plass.Id.ImageGateway.Properties.Settings> <setting name="ConfigFileType" serializeAs="String"> <value>JSON</value> </setting> <setting name="DVIServerURL" serializeAs="String"> <value>http://mydviserver/Plass.Id.Web/</value> <!-- ********************* Change this value to point to your DVI Server *************** --> </setting> <setting name="ContainerShortNamesForFiles" serializeAs="String"> <value>AK-Test;PA-TE;ImpTmpCnt</value> <!-- ********************* If you have many containers and files, enter the container shortnames for the files you want to work on. Use [MPUB] to include files not linked to a container *************** --> </setting> </Plass.Id.ImageGateway.Properties.Settings> </applicationSettings> <userSettings> <Plass.Id.ImageGateway.Properties.Settings> <setting name="SkinName" serializeAs="String"> <value>DevExpress Dark Style</value> <!-- ********************* Change this value to change color scheme for the UI, other values are "DevExpress Light Style" or "DevExpress Dark Style" *************** --> </setting> <setting name="Culture" serializeAs="String"> <value>en</value> <!-- ********************* Change this value to switch language. en = English, de = German *************** --> </setting> </Plass.Id.ImageGateway.Properties.Settings> </userSettings> </configuration>