1

Server1 の Windows サービスでホストされている WCF サービスがあります。このマシンには IIS もあります。Web アプリからサービスを呼び出すと、正常に動作します。しかし、このサービス内で、Server2 にある別の WCF サービス (これも Windows サービスでホストされています) を呼び出す必要があります。セキュリティ資格情報は「メッセージ」と「ユーザー名」に設定されています。「SOAP プロトコルのネゴシエーションに失敗しました」のようなエラーが表示されます。認識されていないように見えるのは、サーバー証明書の公開鍵に問題があります。ただし、コンソール アプリで Server1 から Server2 のサービスを呼び出すと、正常に動作します。

このチュートリアルに従って証明書をセットアップしました: http://www.codeproject.com/KB/WCF/wcf_certificates.aspx

2番目のサービスを呼び出そうとするServer1上の私のサービスからの構成ファイルは次のとおりです。

    <endpoint address=""
              binding="wsHttpBinding"
              contract="Microsoft.ServiceModel.Samples.ITraitement" />


    <endpoint address="mex"
              binding="mexHttpBinding"
              contract="IMetadataExchange" />
  </service>

</services>

<client>
  <endpoint address="http://Server2:8000/servicemodelsamples/service"
    behaviorConfiguration="myClientBehavior" binding="wsHttpBinding"
    bindingConfiguration="MybindingCon" contract="Microsoft.ServiceModel.Samples.ICalculator"
    name="">
    <identity>
      <dns value="ODWCertificatServeur" />
    </identity>
  </endpoint>
</client>

<bindings>
  <wsHttpBinding>
    <binding name="MybindingCon">
      <security mode="Message">
        <message clientCredentialType="UserName" />
      </security>
    </binding>
  </wsHttpBinding>
</bindings>

<behaviors>
  <serviceBehaviors>
    <behavior name="ServiceTraitementBehavior">
      <serviceMetadata httpGetEnabled="True"/>
      <serviceDebug includeExceptionDetailInFaults="True" />
    </behavior>
  </serviceBehaviors>
  <endpointBehaviors>
    <behavior name="myClientBehavior">
      <clientCredentials>
        <clientCertificate findValue="MachineServiceTraitement" x509FindType="FindBySubjectName" storeLocation="LocalMachine" storeName="My" />
        <serviceCertificate>
          <authentication certificateValidationMode="ChainTrust" revocationMode="NoCheck"/>
        </serviceCertificate>
      </clientCredentials>
    </behavior>
  </endpointBehaviors>
</behaviors>

Server1 でサービスを呼び出す Web アプリの構成ファイルは次のとおりです。

<system.serviceModel>
<bindings>
  <wsHttpBinding>
    <binding name="WSHttpBinding_ITraitement" closeTimeout="00:01:00"
        openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
        bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
        maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
        messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
        allowCookies="false">
      <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
          maxBytesPerRead="4096" maxNameTableCharCount="16384" />
      <reliableSession ordered="true" inactivityTimeout="00:10:00"
          enabled="false" />
      <security mode="Message">
        <transport clientCredentialType="Windows" proxyCredentialType="None"
            realm="" />
        <message clientCredentialType="Windows" negotiateServiceCredential="true"
            algorithmSuite="Default" establishSecurityContext="true" />
      </security>
    </binding>
  </wsHttpBinding>
</bindings>
<client>
  <endpoint address="http://localhost:8020/ServiceTraitementPC"
      binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ITraitement"
      contract="ITraitement" name="WSHttpBinding_ITraitement">
  </endpoint>
</client>

サービスからではなくコンソールアプリで呼び出すと、なぜ機能するのですか? おそらく、 certificateValidationMode="ChainTrust" と関係がありますか?

4

2 に答える 2

2

最終的には、クライアント マシン上の証明書の発行者を信頼するだけの問題でした。チュートリアルで言及されていましたが、そのステップを見逃していたに違いありません。コンソールアプリから呼び出したときになぜ機能したのかはまだ疑問ですが... とにかく、今では正常に機能しています。

ありがとう !

于 2010-03-29T14:12:04.443 に答える
1

コンソール アプリからサービスを呼び出すと、ログインしているユーザーのセキュリティ コンテキストになります。

IIS で実行されているサービスから既定の設定でサービスを呼び出すと、ローカル アカウント NETWORK SERVICE のセキュリティ コンテキストになります。

これを修正する方法は、おそらく web.config の system.web セクションで impersonate=true を設定することです。

于 2010-03-25T16:17:00.903 に答える