10

今天,我在尝试远程调试为 .NET 4.0 运行时构建的应用程序时遇到了一个奇怪的问题。

该应用程序驻留在网络共享上并由远程机器执行。但是,由于 System.Configuration.ConfigurationManager.GetSection() 方法中的权限需求引发了 SecurityException,因此应用程序每次在加载期间都会崩溃。我没有检查基类库中的其他权限要求是否也会导致安全异常,但在所有情况下,新的 CLR 都不应该发生这种情况。

该应用程序以完全信任的方式运行(在调试时检查它,并且像往常一样,对于 CLR 4.0 中的 Intranet 应用程序必须始终如此),所以我不知道在这种情况下权限需求如何导致异常。当针对 3.5 SP1 运行时(默认情况下首次引入对网络共享应用程序的完全信任)构建时,一切都按预期运行。

我粘贴了下面的示例代码。任何帮助是极大的赞赏。

using System;
using System.Configuration;

namespace ConsoleApplication1
{
public sealed class AssetsSection : ConfigurationSection
{
    private static readonly ConfigurationProperty           s_propPath;
    private static readonly ConfigurationPropertyCollection s_properties;

    static AssetsSection()
    {
        s_propPath = new ConfigurationProperty("path", typeof(String));

        s_properties = new ConfigurationPropertyCollection()
        {
            s_propPath
        };
    }

    public static AssetsSection Get()
    {
        return (AssetsSection) ConfigurationManager.GetSection("test/assets");
    }

    protected override ConfigurationPropertyCollection Properties
    {
        get
        {
            return s_properties;
        }
    }

    public String Path
    {
        get
        {
            return (String) base[s_propPath];
        }
        set
        {
            base[s_propPath] = value;
        }
    }
}

class Program
{
    static void Main(String[] args)
    {
        Console.WriteLine(AssetsSection.Get().Path);

        Console.ReadLine();
    }
}
}

和 App.config 文件;

<?xml version="1.0"?>
<configuration>
<configSections>
    <sectionGroup name="test">
        <section name="assets" type="ConsoleApplication1.AssetsSection, ConsoleApplication1"/>
    </sectionGroup>
</configSections>

<startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/>
</startup>

<test>
    <assets path="..\Assets"/>
</test>
</configuration>
4

4 回答 4

17

尝试首先加载配置并打开您的部分:

Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
AssetsSection configSection = (AssetsSection)config.GetSection("test/assets");

我在 .NET 4 上遇到了同样的问题,这对我有用。

于 2010-05-10T07:23:45.547 回答
4

这是由于从网络共享运行应用程序时 .NET 4.0 中的一个已知错误。

以下代码失败并出现 SecurityException。请注意,仅当您为该部分定义了自定义类型时,它才会失败,如下例所示AssetsSection

ConfigurationManager.GetSection("test/assets");

一种解决方法是 Timo 提出的使用不同 API 的解决方案建议。另一种解决方案是应用微软提供的补丁。

该错误和相关的修补程序在KB2580188下归档。

于 2012-11-27T09:52:14.793 回答
1

如果您添加自己的类来映射这样的部分:

[XmlRoot("Interface")]
public class MySectionClass
{
    [XmlAttribute()]
    public string MyAttr1
    {
        get;
        set;
    }

    public string MyAttr2
    {
        get;
        set;
    }
}

您可以使用以下代码:

ConfigurationSection configSection = 
ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None).
GetSection("MySection");

XmlSerializer xs = new XmlSerializer(typeof(MySectionClass));

XmlDocument xdoc = new XmlDocument();
xdoc.LoadXml(configSection.SectionInformation.GetRawXml());

XmlNodeReader xnr = new XmlNodeReader(xdoc.DocumentElement);

MySectionClass section = (MySectionClass)xs.Deserialize(xnr);
于 2012-01-03T15:39:51.390 回答
-1

我在这里推测,但我怀疑这是您的配置文件不受信任。

在您的情况下,您的配置文件引用的类型ConsoleApplication1.AssetsSection没有可用作证据的强名称。

您能否提供更多详细信息和确切的错误消息。

于 2010-05-05T17:02:17.140 回答