4

我正在尝试使用 WCF 中的发现功能,使用http://msdn.microsoft.com/en-us/library/dd456783(v=VS.100).aspx作为起点。它在我的机器上运行良好,但后来我想在另一台机器上运行该服务。该服务已正确发现,但找到的服务的主机名始终是“localhost”,这当然没有多大用处。

服务端点:

var endpointAddress = new EndpointAddress(new UriBuilder { Scheme = Uri.UriSchemeNetTcp, Port = port}.Uri);
var endpoint = new ServiceEndpoint(ContractDescription.GetContract(typeof(IServiceInterface)), new NetTcpBinding (), endpointAddress);

客户:

static EndpointAddress FindServiceAddress<T>()
{
  Stopwatch stopwatch = new Stopwatch();
  stopwatch.Start();
  DiscoveryClient discoveryClient = new DiscoveryClient(new UdpDiscoveryEndpoint());
  // Find  endpoints            
  FindResponse findResponse = discoveryClient.Find(new FindCriteria(typeof(T)));
  Console.WriteLine(string.Format("Searched for {0} seconds. Found {1} Endpoint(s).",stopwatch.ElapsedMilliseconds / 1000,findResponse.Endpoints.Count));
  if (findResponse.Endpoints.Count > 0)
  {
     return findResponse.Endpoints[0].Address;
  }
  return null;
 }

我应该简单地将主机设置为 System.Environment.MachineName 吗?

4

2 回答 2

8

我花了很多时间研究这个问题。在代码中构建基地址对我来说是不可接受的,因为它意味着硬编码传输方案和端口(后者当然可以存储在单独的配置部分中,但为什么不直接使用现有部分呢?)。我希望能够像往常一样在 config 中配置基地址。事实证明,像这样的基地址<add baseAddress="net.tcp://*:8731/"/>可以完美地工作。我认为编程配置也是如此。

于 2010-12-20T11:37:39.217 回答
8

在做了更多搜索之后,除了使用 System.Environment.MachineName 之外,我没有找到其他解决方案

 new EndpointAddress(new UriBuilder {Scheme = Uri.UriSchemeNetTcp, Port = port, Host = System.Environment.MachineName}.Uri);
于 2010-03-25T09:33:57.287 回答