Errors creating WebPart subclass in another assembly - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T13:13:26Z http://stackoverflow.com/feeds/question/69164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/69164/errors-creating-webpart-subclass-in-another-assembly 0 Errors creating WebPart subclass in another assembly Travis 2008-09-16T03:27:06Z 2008-09-16T05:36:36Z <p>I am trying to create a subclass of WebPart that will act as a parent to any WebParts we create. If I create an empty class in the same project, I am able to inherit from it as one would expect. However, if I try to place it in another assembly -- one that I've been able to reference and use classes from -- I get the following error:</p> <p>Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.</p> <p>Other information that may be pertinent (I am not normally a SharePoint developer): I compile the dlls, reference them from the dev project, and copy them into the /bin directory of the SharePoint instance. The assemblies are all signed. I'm am attempting to deploy using VS2008's 'deploy' feature.</p> <p>Unfortunately, this does not appear to be a SharePoint specific error, and I'm not sure how to solve the problem. Has anyone experienced this and do you have any suggestions?</p> http://stackoverflow.com/questions/69164/errors-creating-webpart-subclass-in-another-assembly/69625#69625 1 Answer by Travis for Errors creating WebPart subclass in another assembly Travis 2008-09-16T05:36:36Z 2008-09-16T05:36:36Z <p>OK, I found the problem. The packaging task uses reflection for some reason or another. When it finds that your class inherits from a class in another domain, it tries to load it using reflection. However, reflection doesn't do binding policy, so that domain isn't loaded.</p> <p>The authors of the packaging program could solve this by adding the following code:</p> <pre><code>AppDomain.CurrentDomain.ReflectionOnlyAssemblyResolve += new ResolveEventHandler(CurrentDomain_ReflectionOnlyAssemblyResolve); Assembly a = System.Reflection.Assembly.ReflectionOnlyLoadFrom(filename); static Assembly CurrentDomain_ReflectionOnlyAssemblyResolve(object sender, ResolveEventArgs args) { return System.Reflection.Assembly.ReflectionOnlyLoad(args.Name); } </code></pre> <p>However, if you need a solution for your project, just add the assemblies to the GAC and it will be able to resolve them.</p>