因此,我正在编写一个调用 WCF 服务(通过 nettcpbinding)的控制台应用程序 - 并且业务希望能够指定一个值作为超时值。我最初尝试了操作超时,但似乎被忽略了 - 所以我尝试了一堆其他值。这些作品之一(或组合):)
我希望如果它超时我仍然可以关闭通道 - 但是如果我将关闭放在 finally 块中,那么它会再等待一分钟直到它超时(而我以秒为单位设置超时值)。我正在通过在服务器端代码中添加延迟来进行测试 - 以模拟它需要一段时间。
我可以将关闭移动到第一个尝试块,但我担心我会保持通道打开。然后它将更快地向用户报告超时错误。还是我需要实现线程?
public static String ExecuteSearch(List<KeyValuePair<string, string>> paramItems)
{
var context = GetAdminContext();
var parsedParameters = ParseParameters((paramItems));
//TODO: Figure out how to implement timeout - & workout if port number will be passed in??
IPartyProfile partyProfile = null;
long start = System.Environment.TickCount;
using (ChannelFactory<IPartyController> factory = new ChannelFactory<IPartyController>("IPartyControllerEndpoint"))
{
EndpointAddress address = new EndpointAddress(String.Format("net.tcp://{0}/ServiceInterface/PartyController.svc", parsedParameters.HostName));
IPartyController proxy = factory.CreateChannel(address);
if (proxy != null)
{
var timeoutTimeSpan = new TimeSpan(0, 0, parsedParameters.TimeOut);
((IContextChannel)proxy).OperationTimeout = timeoutTimeSpan;
factory.Endpoint.Binding.SendTimeout = timeoutTimeSpan;
factory.Endpoint.Binding.ReceiveTimeout = timeoutTimeSpan;
factory.Endpoint.Binding.OpenTimeout = timeoutTimeSpan;
factory.Endpoint.Binding.CloseTimeout = timeoutTimeSpan;
try
{
// TODO: potentially call something more complex
partyProfile = proxy.GetLatestPartyProfile(context, parsedParameters.PartyId);
}
catch (EndpointNotFoundException ex)
{
throw new Exception(STATUS_UNKNOWN + ": Endpoint specified not responding", ex);
}
catch (TimeoutException ex)
{
throw new Exception(STATUS_UNKNOWN + ": Timeout exceeded", ex);
}
finally
{
try
{
((IClientChannel)proxy).Close();
}
catch (Exception)
{
}
}
}
}
long stop = System.Environment.TickCount;
long elapsed = (stop - start) / 1000; // in seconds
return SetResultMessage(elapsed, partyProfile, parsedParameters);
}
编辑 - 我想我可以使用 factory.Abort() 更快地结束它。(我会把它放在上面代码中 Close 的位置)。