Dealing with UDM Configuration Settings
Sometimes, you may need to have a configuration setting that is stored outside UDM. For example, you may need to store a connection string to a database that will supply the allowed set for dynamic security. As with SSRS, you can use the msmdsrv.exe.config file for this purpose like so: <configuration> <startup> <requiredRuntime version="v2.0.50727" safemode="true" /> </startup> <runtime> . . . </runtime> <appSettings> <add key="connectionString"…
Read article

