11

场景:我正在重构我们的一个应用程序以使用 Nhibernate,并在几周前遇到了这个问题。该问题最初是与 Nhibernate 和 Castle 相关的,为了解决这个问题,它们都使用[assembly: AllowPartiallyTrustedCallers]. 然而,在对 UI 和代码库进行一些更改后,此错误再次出现。另外值得注意的是,我从 Form_Main 以编程方式控制加载我的用户控件。

问题:每当生成用户控件时,我都会收到以下错误。如果我注释掉加载,那么程序将运行。当我调试时,它以自动生成的 InitializeComponent() 函数结束。请注意,我无法进入该功能。

System.Security.SecurityException was unhandled
      Message="That assembly does not allow partially trusted callers."
      Source="A"
      GrantedSet=""
      PermissionState=""
      RefusedSet=""
      Url="file:///C:/Documents and Settings/ID/Desktop/A-NHIB2/bin/Debug/A.EXE"
      StackTrace:
           at A.UserControlCyber.InitializeComponent()
           at A.UserControlCyber..ctor() in C:\Documents and Settings\ID\Desktop\A-NHIB2\UserControl_Cyber.cs:line 34
           at A.FormMain.FormMainLoad(Object sender, EventArgs e) in C:\Documents and Settings\ID\Desktop\A-NHIB2\Form_Main.cs:line 30
           at System.Windows.Forms.Form.OnLoad(EventArgs e)
           at System.Windows.Forms.Form.OnCreateControl()
           at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
           at System.Windows.Forms.Control.CreateControl()
           at System.Windows.Forms.Control.WmShowWindow(Message& m)
           at System.Windows.Forms.Control.WndProc(Message& m)
           at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
           at System.Windows.Forms.ContainerControl.WndProc(Message& m)
           at System.Windows.Forms.Form.WmShowWindow(Message& m)
           at System.Windows.Forms.Form.WndProc(Message& m)
           at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
           at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
           at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
           at System.Windows.Forms.SafeNativeMethods.ShowWindow(HandleRef hWnd, Int32 nCmdShow)
           at System.Windows.Forms.Control.SetVisibleCore(Boolean value)
           at System.Windows.Forms.Form.SetVisibleCore(Boolean value)
           at System.Windows.Forms.Control.set_Visible(Boolean value)
           at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
           at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
           at System.Windows.Forms.Application.Run(Form mainForm)
           at A.Program.Main() in C:\Documents and Settings\ID\Desktop\A-NHIB2\Program.cs:line 32
           at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
           at System.AppDomain.nExecuteAssembly(Assembly assembly, String[] args)
           at System.Runtime.Hosting.ManifestRunner.Run(Boolean checkAptModel)
           at System.Runtime.Hosting.ManifestRunner.ExecuteAsAssembly()
           at System.Runtime.Hosting.ApplicationActivator.CreateInstance(ActivationContext activationContext, String[] activationCustomData)
           at System.Runtime.Hosting.ApplicationActivator.CreateInstance(ActivationContext activationContext)
           at System.Activator.CreateInstance(ActivationContext activationContext)
           at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssemblyDebugInZone()
           at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
           at System.Threading.ExecutionContext.runTryCode(Object userData)
           at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
           at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
           at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
           at System.Threading.ThreadHelper.ThreadStart()
      InnerException: 

有人对这个主题有任何想法吗?我已经将 [assembly: AllowPartiallyTrustedCallers] 添加到程序集中。有什么方法可以找出导致此错误的参考(?)?或者有什么方法可以逐步完成 InitializeComponent()?

注意:我拥有所有权限,并且项目设置为部分信任。

无论如何,非常感谢任何帮助。

4

3 回答 3

7

好的,如果我要解决此问题,我将按如下方式处理:

1) 如果我使用的是 .NET 4.0,请确保处理。

2) 使用 ILDASM 或反射器打开 bin 文件夹中所有有问题的 DLL,以确保AllowPartiallyTrustedCallersAttribute它们已设置。

3)AppDomain.CurrentDomain.GetAssemblies()在出错时使用(使用即时窗口)查看从哪里加载了哪个程序集。我认为这可能是您的问题,因为我经常看到从 GAC 或各种 bin 文件夹加载旧版本或流氓版本的程序集

我认为使用这 3 个步骤,您将能够找到您的问题。

于 2010-11-30T14:03:43.933 回答
7

对于所有可能错过 Aliostad 回答下的评论的未来读者。

基本上,对我有用的是采纳Aliostad 的建议,并使用AllowPartiallyTrustedCallersAttribute重新编译所有我可以使用的引用。为了验证加载的程序集,我遵循了Aliostad 建议的第 2 步。一旦我确定所有必需的 dll 都具有该属性,我将该属性包含到我的项目中,然后将我的项目设置为完全信任(而不是部分信任)。

注意:我正在使用 Microsoft.Office.Interop.Outlook 发送电子邮件,它需要完全信任,但仍允许其他 dll 在部分信任下运行。

希望这对未来的用户有所帮助。有任何问题只需在下方评论即可。

于 2010-12-06T13:35:07.080 回答
3

从网络位置运行 dll 时出现此错误。该 dll 是使用在 ArcGIS 10.1 中运行的 arcobjects 的 ESRI ArcGIS 扩展。解决方案不要从网络位置打开项目。

于 2014-04-02T22:46:21.690 回答