У меня есть Служба WCF, размещенная в Службе Windows на том же сервере, где у меня есть мох.
WCF хорошо работает, вызывая его из консольного приложения, но если я вызываю его со страницы в Sharepoint, он вызывает исключение по тайм-ауту.
Я добавил следующую конфигурацию в webconfig:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_IReplication" closeTimeout="00:10:00"
openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10: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:8000/Replication/service"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IReplication"
contract="ServiceReference1.IReplication" name="WSHttpBinding_IReplication">
<identity>
<servicePrincipalName value="host/mypc-f1d530f" />
</identity>
</endpoint>
</client>
</system.serviceModel>
Есть идеи о том, что происходит?
Вы про кого-нибудь успешно это сделали? Я не смог найти образец в сети.