db4o running in asp.net Medium Trust environment - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T12:02:46Z http://stackoverflow.com/feeds/question/1057315 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1057315/db4o-running-in-asp-net-medium-trust-environment 0 db4o running in asp.net Medium Trust environment bbqchickenrobot 2009-06-29T09:04:46Z 2009-09-22T15:00:06Z <p>I am using the embedded client/server version of db4o (I called OpenServer() instead of OpenFile() method) so that I can host an asp.net website that will have several users reading and writing to the database simultaneously. The only issue is that the webhost that we use is a medium trust environment so it's throwing an error stating that the assembly doesn't support partially trusted callers... </p> <p>Wondering if anyone has any suggestions on how to get this to work. Thanks! </p> <p>:: UPDATE :: </p> <p>I have recompiled the db4o dll with the [AllowPartiallyTrustedCallers] attribute and now I am getting the following specific error: </p> <p>System.TypeInitializationException was unhandled by user code Message="The type initializer for 'DataObjecten.db4oManager' threw an exception." TypeName="DataObjecten.db4oManager" InnerException: System.Security.SecurityException Message="Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed." Source="Db4objects.Db4o" StackTrace: at Db4objects.Db4o.Internal.Platform4.AddShutDownHook(PartialObjectContainer container) at Db4objects.Db4o.Internal.PartialObjectContainer.Initialize1(IConfiguration config) at Db4objects.Db4o.Internal.PartialObjectContainer.Open() at Db4objects.Db4o.Internal.IoAdaptedObjectContainer..ctor(IConfiguration config, String fileName) at Db4objects.Db4o.Internal.ObjectContainerFactory.OpenObjectContainer(IConfiguration config, String databaseFileName) at Db4objects.Db4o.Db4oFactory.OpenFile(IConfiguration config, String databaseFileName) at Db4objects.Db4o.Db4oFactory.OpenServer(IConfiguration config, String databaseFileName, Int32 port, INativeSocketFactory socketFactory) at Db4objects.Db4o.Db4oFactory.OpenServer(IConfiguration config, String databaseFileName, Int32 port) at DataObjecten.db4oManager..cctor() InnerException: </p> http://stackoverflow.com/questions/1057315/db4o-running-in-asp-net-medium-trust-environment/1057330#1057330 0 Answer by samjudson for db4o running in asp.net Medium Trust environment samjudson 2009-06-29T09:08:36Z 2009-06-29T09:08:36Z <p>I don't know if this works, but you could try writing a wrapper DLL that has <code>AllowPartiallyTrustedCaller</code> set to true, and passes all calls to the db4o DLL.</p> <p>Seeing as db4o is open source you could download and recompile with <code>AllowPartiallyTrustedCaller</code> set to true yourself of course.</p> <p><a href="http://developer.db4o.com/forums/thread/27550.aspx" rel="nofollow">This</a> thread however suggests that that might not work.</p>