0

バインディングの MaxClockSkew を増やしたいのですが、バインディングをカスタム バインディングに変換して MaxClockSkew 要素を追加する方法がわかりません。

誰かがこれを変換するのを手伝ってくれたら本当に感謝しています.

  <wsHttpBinding>
    <binding name="MyBinding" maxReceivedMessageSize="102400">
      <readerQuotas  maxArrayLength="51200" maxStringContentLength="102400" maxNameTableCharCount="2147483647" />
      <security mode="TransportWithMessageCredential">
        <transport clientCredentialType="None" />
        <message clientCredentialType="UserName" />
      </security>
    </binding>
  </wsHttpBinding>

ありがとう

4

1 に答える 1

0

オンラインのWCF バインディング コンバーターを使用する

これを試して:

<customBinding>
  <binding name="NewBinding0">    
      <security authenticationMode="UserNameOverTransport" messageSecurityVersion="WSSecurity11WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10" />

    <textMessageEncoding />
    <httpsTransport maxBufferSize="102400" maxReceivedMessageSize="102400" />
  </binding>
</customBinding>
于 2013-03-04T19:17:24.760 に答える