0

私のWCFサービスのweb.configに以下の設定があります。これは今日まで正常に機能していましたが、突然「セキュリティで保護されていない、またはセキュリティが不適切な障害が相手から受信されました。障害コードについては、内部のFaultExceptionを参照してください。そして詳細。」サーバーとクライアントの時刻が同じであることを確認しました。何かご意見は?

<bindings>
  <customBinding>
    <binding name="stsBinding">
      <security authenticationMode="UserNameOverTransport" requireDerivedKeys="false"
          keyEntropyMode="ServerEntropy" requireSecurityContextCancellation="false"
          requireSignatureConfirmation="false">
      </security>
      <httpsTransport maxReceivedMessageSize="66665536"/>
    </binding>
  </customBinding>

  <wsFederationHttpBinding>
    <binding name="serviceFederation">

      <readerQuotas maxStringContentLength="2147483647"
               maxDepth="2147483647"
               maxBytesPerRead="2147483647"
               maxArrayLength="2147483647"/>

      <security mode="TransportWithMessageCredential">
        <!-- Ping token type MUST be SAML 1.1, do not change -->
        <message issuedTokenType="http://docs.oasis-open.org/wss/oasis-wss-saml-token-profile-1.1#SAMLV1.1"
            negotiateServiceCredential="false">
          <!-- TODO: You must put the proper issuer URN of the Ping STS; normally this would be the Ping base URL -->
          <issuer address="https://my-sso-server.com"
              binding="customBinding" bindingConfiguration="stsBinding" />
        </message>
      </security>
    </binding>
4

1 に答える 1

0

確認事項:

  • インストールされている Windows パッチはありますか?これにより、セキュリティが強化され、動作が停止することがあります。
  • 多くの場合、物事が機能しなくなる原因となる、有効期限が切れたパスワードはありますか。
于 2010-11-10T16:38:05.890 に答える