Hi,
I need to revisit iBatis support in general and at a minimum bring it in line with the DbProvider abstraction we are using.
The issue you are having is that iBatis.NET 1.2.x uses log4.net 1.2.0 and Spring.NET uses 1.2.9 (the 'beta' which has been out forever...) I just checked that iBatis 1.3.0 beta uses log4net 1.2.9.0
Anyway, If you add this rebinding section to your application configuration file the issue should be resolved.
Code:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="log4net" publicKeyToken="b32731d11ce58905" culture="neutral" />
<bindingRedirect oldVersion="1.2.0.30714" newVersion="1.2.9.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
Let me know if this helps you.
Cheers,
Mark