1

Net.Tcpバインディングを使用したWCFサービスがあり、サーバー構成は次のとおりです。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name="">
          <serviceMetadata httpGetEnabled="true" />
          <serviceDebug httpHelpPageEnabled="true" includeExceptionDetailInFaults="true"/>
          <serviceCredentials>
            <userNameAuthentication userNamePasswordValidationMode="Custom"
                customUserNamePasswordValidatorType="Service.PlainUserNameValidator, Service" />
          </serviceCredentials>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <services>
      <service name="Service.TestService">
        <endpoint address="" binding="netTcpBinding" contract="Service.ITestService">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:8732/Service/TestService/" />
            <add baseAddress="http://localhost:8001/service/TestServiceMex/" />
          </baseAddresses>
        </host>
      </service>
    </services>
  </system.serviceModel>
</configuration>

構成でオンにしましたcustomUserNamePasswordValidatorType。ホストを起動するためのコードは

class Program
{
    static void Main(string[] args)
    {
        using (ServiceHost host = new ServiceHost(typeof(TestService)))
        {
            host.Open();
            Console.WriteLine("The service is ready.");
            Console.WriteLine(String.Format("Metadata is at {0}?WSDL", host.Description.Endpoints[0].Address));
            Console.WriteLine();
            Console.WriteLine("Press <ENTER> to terminate service.");
            Console.WriteLine();
            Console.ReadLine();
        }
    }
}

そして、設定ファイルに登録されている私のカスタムユーザー名バリデータークラスは

namespace Service
{
    using System;
    using System.IdentityModel.Selectors;

    public class PlainUserNameValidator : UserNamePasswordValidator
    {
        public override void Validate(string userName, string password)
        {
            Console.WriteLine("Requesting username {0} and password {1}.", userName, password);
        }
    }
}

ただし、クライアントが呼び出している間、バリデーターが起動することはありません。

バインディングを有効customUserNamePasswordValidatorTypeにするために注意する必要がある特別なトリックはありますか?Net.Tcp

4

1 に答える 1

1

2つのポイント:

証明書を含めていないので、クライアントの資格情報の整合性を確保するためにそうする必要があります。必要に応じて一時的な証明書を設定し、これをサービスの資格情報に追加します。

<serviceCertificate 
          findValue="localhost" 
            x509FindType="FindBySubjectName" 
            storeLocation="CurrentUser" 
            storeName="My" />

また、セキュリティを指定していません。これを機能させるには、クライアントエンドポイントとサービスエンドポイントの両方で、バインディングでユーザー名とパスワードの認証モードを有効にする必要があります。

<netTcpBinding>
  <binding name="tcpWithMessageSecurity">
    <security mode="Message" >
      <message clientCredentialType="UserName"/>
    </security>
  </binding> 
</netTcpBinding>

それから

<endpoint address="" binding="tcpWithMessageSecurity" contract="Service.ITestService">

次に、動作に名前を付けて、上記の行に追加します。

于 2012-05-30T08:32:02.277 に答える