web-dev-qa-db-ja.com

メッセージ内の少なくとも1つのセキュリティトークンを検証できませんでした

サーバー構成:

<?xml version="1.0"?>
<configuration>
<system.serviceModel>
    <behaviors>
        <serviceBehaviors>
            <behavior name="ServiceCredentialsBehavior">
                <serviceCredentials>
                    <serviceCertificate findValue="cn=cool" storeName="TrustedPeople" storeLocation="CurrentUser" />
                </serviceCredentials>
                <serviceMetadata httpGetEnabled="true" />
            </behavior>
        </serviceBehaviors>
    </behaviors>
    <services>
        <service behaviorConfiguration="ServiceCredentialsBehavior" name="Service">
            <endpoint address="" binding="wsHttpBinding" bindingConfiguration="MessageAndUserName" name="SecuredByTransportEndpoint" contract="IService"/>
        </service>
    </services>
    <bindings>
        <wsHttpBinding>
            <binding name="MessageAndUserName">
                <security mode="Message">
                    <message clientCredentialType="UserName"/>
                </security>
            </binding>
        </wsHttpBinding>
    </bindings>
    <client/>
</system.serviceModel>
<system.web>
    <compilation debug="true"/>
</system.web>

私のクライアント構成:

<?xml version="1.0" encoding="utf-8"?>
  <configuration>
<system.serviceModel>
    <behaviors>
        <endpointBehaviors>
            <behavior name="LocalCertValidation">
                <clientCredentials>
                    <serviceCertificate>
                        <authentication certificateValidationMode="PeerTrust" trustedStoreLocation="CurrentUser" />
                    </serviceCertificate>
                </clientCredentials>
            </behavior>
        </endpointBehaviors>
    </behaviors>
    <bindings>
        <wsHttpBinding>
            <binding name="WSHttpBinding_IService" >
                <security mode="Message">
                    <message clientCredentialType="UserName" />
                </security>
            </binding>
        </wsHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://localhost:48097/WCFServer/Service.svc"
                  binding="wsHttpBinding"
                  bindingConfiguration="WSHttpBinding_IService"
                  contract="ServiceReference1.IService"
                  name="WSHttpBinding_IService" behaviorConfiguration="LocalCertValidation">
            <identity>
                <dns value ="cool" />
            </identity>
        </endpoint>
    </client>
</system.serviceModel>

サービス:

public string TestAccess()
{
    return OperationContext.Current.ServiceSecurityContext.PrimaryIdentity.Name;
}

クライアント:

        ServiceClient client = new ServiceClient();
        client.ClientCredentials.UserName.UserName = "Admin";
        client.ClientCredentials.UserName.Password = "123";
        Console.WriteLine(client.TestAccess());
        Console.ReadLine();

エラー:
セキュリティで保護されていない、またはセキュリティで保護されていない障害が相手から受信されました。障害コードと詳細については、内部のFaultExceptionを参照してください。
内部例外:
メッセージ内の少なくとも1つのセキュリティトークンを検証できませんでした。

この例外を解決するにはどうすればよいですか?

16
croisharp

問題はユーザー名とパスワードだと思います。デフォルトの構成では、ユーザー名とパスワードはWindowsアカウントとして検証されます。他の検証が必要な場合は、 メンバーシッププロバイダー または カスタムユーザー名パスワードバリデーター のいずれかを使用する必要があります。

23
Ladislav Mrnka

エラーメッセージはかなりあいまいなので、別の可能な解決策としてそこに出すと思いました。

私の環境では、シングルサインオン(または必要に応じてSTS)を使用して、ASP.NETMVCサイトを介してユーザーを認証します。次に、MVCサイトは、STSサーバーから要求したベアラートークンを以前にBootstrapトークンで渡すことにより、サービスエンドポイントにサービス呼び出しを行います。取得したエラーは、MVCサイトからサービス呼び出しを行ったときでした。 。

私の場合、これは以下に述べる私のサービスの構成が原因です。特にaudienceUrisノードは、サービスエンドポイントと完全に一致する必要があります。

<system.identityModel>
    <identityConfiguration>
        <audienceUris>
            <add value="https://localhost/IdpExample.YService/YService.svc" />
        </audienceUris>
        ....
    </identityConfiguration>
</system.identityModel>

HTH。

3
stack247