Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

Check if your sql connection string is pointing to a valid database/database with the log table.

share|improve this answer
1  
Agreed - code up a simple page which does nothing but open the ELMAH db with your connection string and see how it behaves. If it breaks, then there's your problem. If not, then it's something more interesting... – Chris B. Behrens Jan 21 '11 at 20:34
I removed the connection string then it works, and if i add the sql string back in again then it wont work again, the sql string was valid, i double checked. its as if the one or the other one works, really weird and it did the same with log4net in the win form app – Shane Van Wyk Jan 25 '11 at 0:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.