1

DotNetOpenAuth をメンバーシップ プロバイダーとして使用する単純な Web サイトをセットアップしようとしています。次の例外に遭遇するまで、すべてが順調に進んでいました。

[SecurityException: Request for the permission of type 'System.Net.WebPermission, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]
    System.Security.CodeAccessSecurityEngine.Check(Object demand, StackCrawlMark& stackMark, Boolean isPermSet) +0
    System.Security.CodeAccessSecurityEngine.Check(CodeAccessPermission cap, StackCrawlMark& stackMark) +31
    System.Security.CodeAccessPermission.Demand() +46
    System.Net.Configuration.DefaultProxySection.PostDeserialize() +103

コードは以下です。残念ながら、ローカル マシンで問題を再現できません。これは GoDaddy 共有ホスティングでホストされています。例外を引き起こす行は次のopenid.CreateRequest(id)とおりです。

public virtual ActionResult Authenticate(OpenIdAuthenticationViewModel model, string returnUrl)
{
    OpenIdRelyingParty openid = new OpenIdRelyingParty();
    var response = openid.GetResponse();

    if (response == null)
    {
        Identifier id;
        if (Identifier.TryParse(model.OpenIdUrl, out id))
        {
            try
            {
                var openIdRequest = openid.CreateRequest(id);
                var result = openIdRequest.RedirectingResponse.AsActionResult();
                return result;
            }
            catch (ProtocolException pe)
            {
                ViewData["OpenIdMessage"] = pe.Message;
                return View(model);
            }
        }
        else
        {
            ViewData["OpenIdMessage"] = "Invalid Identifier";
            return View(model);
        }
    }

    // code that handles response
}

requirePermissionの属性を変更してみました

<section name="dotNetOpenAuth" type="DotNetOpenAuth.Configuration.DotNetOpenAuthSection" requirePermission="false" allowLocation="true" />

しかし、それは例外スタック トレースの別のルートを引き起こしただけです。この正確な例外に関する情報は、Web 上にはほとんどありません。

4

1 に答える 1

1

これは、次のスニペットを含む web.config があるためのようです。

<system.net>
    <defaultProxy enabled="true" />
</system.net>

<defaultProxy>いずれにせよ、GoDaddy では必要ないはずのタグを削除してみてください。

于 2011-03-01T03:35:29.530 に答える