Closed GoogleCodeExporter closed 9 years ago
Error occurs with other versions of MySql.Data.dll as well. I received this
using version 6.4.3.0
Original comment by m...@mynameiskristopher.com
on 13 Mar 2012 at 9:28
Downloading source and referencing newer version of MySql.Data.dll and then
recompiling Elmah for a private build appears to resolve this problem.
Original comment by m...@mynameiskristopher.com
on 15 Mar 2012 at 1:33
Does adding this to your web.config solve the issue?
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral"/>
<bindingRedirect oldVersion="6.1.3.0" newVersion="6.4.4.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Original comment by jamesdriscoll71
on 15 Mar 2012 at 2:11
Original comment by azizatif
on 15 Mar 2012 at 6:22
Original comment by azizatif
on 23 Mar 2012 at 10:59
Sorry for not getting back with the solution. And yes, comment #3 solved the
problem and is more practical than recompiling from source.
Thanks and more power! :)
Original comment by andyrefu...@gmail.com
on 26 Mar 2012 at 4:27
Thanks for reporting back. No further action needed as the binding redirection
provision in the runtime is the correct solution to such issues.
Original comment by azizatif
on 26 Mar 2012 at 8:31
Original issue reported on code.google.com by
andyrefu...@gmail.com
on 13 Jan 2012 at 3:04