Skip to content
Geek and I
Go back

Altium Infrastructure Server vs Microsoft SQL Server 2012

Updated:
Mike Horwath1 min read

Sharing the knowledge.

Need to install Altium Infrastructure Server v1.0.1.61 onto Windows 10.

Followed the Altium Infrastructure Server documentation and when I attempted to log into the web interface I got an error dialog:

Something went wrong.

The type initializer for ‘ExtentPlaceholderCreator’ threw an exception.

To fix this changed the web.config in both the IDS and EDS directory. Look for the section below

<runtime>
<assemblyBinding xmlns=“urn:schemas-microsoft-com:asm.v1”>

Add the following

<dependentAssembly>
<assemblyIdentity name=“Microsoft.SqlServer.Types” publicKeyToken=“89845dcd8080cc91” />
<bindingRedirect oldVersion=“1.0.0.0-11.0.0.0" newVersion=“10.0.0.0” />
</dependentAssembly>

This resolved the problem for me.



Related Posts

Previous Post
vCenter 6.5 + Chrome + Flash == CRASH (macOS)
Next Post
Hosting git repository on Windows Server with minimal 3rd party packages