A couple of notes for fixing IIS.
Cannot add duplicate collection entry of type ‘mimeMap’ with unique key attribute ‘fileExtension’ set to ‘.json’
Open a web.config
and change this:
<staticContent> <mimeMap fileExtension=".json" mimeType="application/json" /> </staticContent>
to this:
<staticContent>
<remove fileExtension=".json" />
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
Could not load file or assembly ‘Microsoft.ReportingServices.ChartWinControl’ or one of its dependencies.
Open IIS and set the Application Pools “Enable 32-Bit Applications” to “True”.
Great post!
This solve my problem!
thanks, you saved my day
Excellent solution. It worked for me.