我遇到了一个非常奇怪的问题。我正在构建一个高度分布式的应用程序,其中每个应用程序实例都可以是 WCF 服务的主机和/或客户端(非常类似于 p2p)。一切正常,只要客户端和目标主机(我的意思是应用程序,而不是主机,因为目前一切都在一台计算机上运行(所以没有防火墙问题等))不一样。如果它们相同,则应用程序会挂起正好 1 分钟,然后引发 TimeoutException。WCF-Logging 没有产生任何有用的东西。这是一个演示问题的小应用程序:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void button1_Click(object sender, RoutedEventArgs e)
{
var binding = new NetTcpBinding();
var baseAddress = new Uri(@"net.tcp://localhost:4000/Test");
ServiceHost host = new ServiceHost(typeof(TestService), baseAddress);
host.AddServiceEndpoint(typeof(ITestService), binding, baseAddress);
var debug = host.Description.Behaviors.Find<ServiceDebugBehavior>();
if (debug == null)
host.Description.Behaviors.Add(new ServiceDebugBehavior { IncludeExceptionDetailInFaults = true });
else
debug.IncludeExceptionDetailInFaults = true;
host.Open();
var clientBinding = new NetTcpBinding();
var testProxy = new TestProxy(clientBinding, new EndpointAddress(baseAddress));
testProxy.Test();
}
}
[ServiceContract]
public interface ITestService
{
[OperationContract]
void Test();
}
public class TestService : ITestService
{
public void Test()
{
MessageBox.Show("foo");
}
}
public class TestProxy : ClientBase<ITestService>, ITestService
{
public TestProxy(NetTcpBinding binding, EndpointAddress remoteAddress) :
base(binding, remoteAddress) { }
public void Test()
{
Channel.Test();
}
}
我究竟做错了什么?
问候, Pharao2k