SharePoint WebPart Packages and dlls - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T00:43:43Zhttp://stackoverflow.com/feeds/question/438712http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/438712/sharepoint-webpart-packages-and-dlls1SharePoint WebPart Packages and dlls78lro2009-01-13T11:38:14Z2009-01-14T05:01:46Z
<p>Hi</p>
<p>I have a SharePoint WebPart project in visual studio. As part of the project I am referencing the interop.ActiveDS.dll.</p>
<p>I can compile the project successfully and add/deploy the solution to SharePoint. When I try to run the WebPart in SharePoint I get the error:</p>
<pre><code>That assembly does not allow partially trusted callers.
[SecurityException: That assembly does not allow partially trusted callers.]
PeopleAdWebPart.PeopleAdWebPart.OnLoad(EventArgs e) +0
System.Web.UI.Control.LoadRecursive() +47
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +7350
System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +213
System.Web.UI.Page.ProcessRequest() +86
System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +18
System.Web.UI.Page.ProcessRequest(HttpContext context) +49
Microsoft.SharePoint.Publishing.TemplateRedirectionPage.ProcessRequest(HttpContext context) +153
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +358
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64
</code></pre>
<p>I have added [assembly: System.Security.AllowPartiallyTrustedCallers] to the assemblyinfo.cs file but this has not helped.</p>
<p>Would appreciate any answers for this!</p>
http://stackoverflow.com/questions/438712/sharepoint-webpart-packages-and-dlls/438767#4387671Answer by 78lro for SharePoint WebPart Packages and dlls78lro2009-01-13T12:15:29Z2009-01-13T12:15:29Z<p>Deploying it to the GAC seems to be a possible solution:</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/f9bff1aa-007b-4933-bb5b-56a283aea227/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/f9bff1aa-007b-4933-bb5b-56a283aea227/</a></p>
<p>All the best</p>
http://stackoverflow.com/questions/438712/sharepoint-webpart-packages-and-dlls/441969#4419690Answer by dahlbyk for SharePoint WebPart Packages and dllsdahlbyk2009-01-14T05:01:46Z2009-01-14T05:01:46Z<p>The problem is that Interop.ActiveDs.dll does not allow partially trusted callers. Your best bet is to deploy a signed interop assembly to the GAC:</p>
<pre><code>TlbImp %windir%\system32\ActiveDs.tlb /out:Interop.ActiveDs.dll /keyfile:KeyFile.snk
</code></pre>