Как отключить метку времени в WCF "wsHTTPBinding"? - PullRequest
0 голосов
/ 08 мая 2011

Я хочу отключить отметку времени в WCF wsHTTPBinding, потому что если у меня время клиента отличается от 10 минут, это исключение, что время в будущем, как я могу отключить его или есть другое решение?Пример кода в клиенте: в app.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.serviceModel>
        <bindings>
            <wsHttpBinding>
                <binding name="WSHttpBinding_IFileTransferServiceClient" 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" />
                    </security>
                </binding>
            </wsHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://localhost:8732/Design_Time_Addresses/filetransfer/FileTransferServiceClient/"
                binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IFileTransferServiceClient"
                contract="IFileTransferServiceClient" name="WSHttpBinding_IFileTransferServiceClient">
                <identity>
                    <dns value="localhost" />
                </identity>
            </endpoint>
        </client>
    </system.serviceModel>
</configuration>

1 Ответ

3 голосов
/ 08 мая 2011

Увеличьте свойство MaxClockSkew: http://msdn.microsoft.com/en-us/library/aa738468.aspx

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...