В настоящее время я разрабатываю несколько служб (WCF) для работы с TFS 2010.
Некоторые из них используют инструмент подписки на события, в то время как другие используются через портал sharepoint, небольшие приложения wpf и т. Д.
Я работаю над приложением для администрирования некоторых вещей на другом сервере, таких как отправка запроса сброса IIS на сервер, и я использую wsDualHttpBinding, чтобы я мог сообщать пользователю о прогрессе, как все происходит, через обратные вызовы.
Но я даже не могу вызвать метод в службе, потому что всякий раз, когда канал пытается открыть, я получаю исключения тайм-аута, независимо от того, какой у меня OpenTimeout.
Это мой конфиг (на стороне клиента)
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.net>
<connectionManagement>
<add maxconnection="200" address="*" />
</connectionManagement>
</system.net>
<system.serviceModel>
<bindings>
<wsDualHttpBinding>
<binding name="WSDualHttpBinding_IReset" closeTimeout="00:01:00"
openTimeout="00:02: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">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00" />
<security mode="None">
<message clientCredentialType="Windows" negotiateServiceCredential="true" />
</security>
</binding>
</wsDualHttpBinding>
<wsHttpBinding>
<binding name="WSHttpBinding_IDeploy" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="1524288" maxReceivedMessageSize="1279748152"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="81925" maxArrayLength="163848"
maxBytesPerRead="9192" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="None">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://tfsserver:8080/TFSFacade/DeployFacade.svc"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IDeploy"
contract="DeployFacade.IDeploy" name="WSHttpBinding_IDeploy" />
<endpoint address="http://tfsserver:8080/DeployService/ResetService.svc"
binding="wsDualHttpBinding" bindingConfiguration="WSDualHttpBinding_IReset"
contract="ResetService.IReset" name="WSDualHttpBinding_IReset" />
</client>
</system.serviceModel>
<appSettings>
<add key="CopiaLocalRollback" value="true"/>
<add key="CopiaLocalPublish" value="true"/>
<add key="ModoDiagnostico" value="false" />
<add key="TempoTimeout" value="300000" />
</appSettings>
</configuration>
на стороне сервера:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" aspNetCompatibilityEnabled="true">
<baseAddressPrefixFilters>
<add prefix="http://tfsserver:8080"/>
<add prefix="http://tfsservices:8080"/>
<add prefix="http://tfsservices:1001"/>
</baseAddressPrefixFilters>
</serviceHostingEnvironment>
<bindings>
<wsDualHttpBinding>
<binding name="WSDualHttpBinding_ResetService" 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">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00" />
<security mode="None">
<message clientCredentialType="Windows" negotiateServiceCredential="true" />
</security>
</binding>
</wsDualHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="EventServiceBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="EventServiceBehavior" name="DeployService.ResetService">
<endpoint address="" binding="wsDualHttpBinding" bindingConfiguration="WSDualHttpBinding_ResetService"
contract="DeployService.Contracts.IReset" />
</service>
</services>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
Контракты:
[ServiceContract(SessionMode = SessionMode.Required,
CallbackContract = typeof(IResetCallback))]
public interface IReset
{
[OperationContract]
void ExecutarIISReset();
}
[ServiceContract]
public interface IResetCallback
{
[OperationContract(IsOneWay = true)]
void PumpMessage(string message);
[OperationContract(IsOneWay = true)]
void PumpResponsiveMessage(ResponsiveMessage message);
[OperationContract(IsOneWay = true)]
void PumpLogDeployBEMessage(LogDeployBE message);
bool Confirmar();
ServidorModel[] GetServidores();
}
Служба (не публикует код, поскольку проблема возникает до ее достижения)):
[AspNetCompatibilityRequirementsAttribute(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]
[ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple)]
public class ResetService : IReset
{
//Stuff here
}
В Fiddler я получаю это на стороне клиента:
7 202 HTTP tfsserver:8080 /DeployService/ResetService.svc 0 private resetman.vshost:9000
Я получаю 202 несколько раз, затем проходит время и происходит тайм-аут
РуНа сервере я ничего не получаю.
Что может происходить?
РЕДАКТИРОВАТЬ: Странно, localhost работает.Нужны ли для wsDualHttpBinding специальные разрешения или что-то еще?Ничего не нашел в интернете