When I have elmah coded in my app.config and try to use a connection string for SQL Server 2008 in the same project it gives me an error
The type initializer for 'System.Data.SqlClient.SqlConnection' threw an exception.
but when I comment out the elmah code in the app.config it works again
<!--<sectionGroup name="elmah">
<section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
<section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
<section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
</sectionGroup>
<elmah>
<errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/Logs" />
<security allowRemoteAccess="1" />
</elmah>
<httpHandlers>
<add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
</httpHandlers>
-->
<httpModules>
<add name="HttpRequestModule" type="Unleashed.Infrastructure.Repository.EF.HttpRequestModule" />
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" />
</httpModules>
I think the problem lays here because if I comment that part out then it works, it might be more then just that code that makes the project play up:
<httpModules>
<add name="HttpRequestModule" type="Unleashed.Infrastructure.Repository.EF.HttpRequestModule" />
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" />
</httpModules>
Any suggestions? need help :S :S :S :S :S
