0

我使用 WCF 发现创建了一项服务。当它部署在特定端口上时一切正常(使用 VS2010 调试),但是当我尝试将其部署到 IIS 时,它找到了服务但无法运行任何方法。

这是代码:

 DiscoveryClient discoverclient = new DiscoveryClient(new UdpDiscoveryEndpoint());
 FindResponse response = discoverclient.Find(new FindCriteria(typeof(IService)));
 EndpointAddress address = response.Endpoints[0].Address;
 ServiceClient client = new ServiceClient(new BasicHttpBinding(), address);
 Console.WriteLine(client.getMsg()); //some test function
 Console.ReadKey();

尝试运行该client.getMsg()方法时,出现以下错误:

EndpointNotFoundException:
http://computerName.domain/services/Service.svc上没有可以接受消息的端点侦听。这通常是由不正确的地址或 SOAP 操作引起的。有关更多详细信息,请参阅 InnerException(如果存在)。

但是我得到了地址,这意味着它找到了它。如果我使用调试部署器(而不是 iis),我会在其中找到它http://localhost:port/services/Service.svc并且它运行得非常好。我怎样才能将它部署到 iis 而没有问题?

操作系统:win7 64位

配置文件:

<services>
  <service behaviorConfiguration="RemoteDeploy.Service1Behavior"
    name="RemoteDeploy.Service">
    <endpoint address="" binding="basicHttpBinding" bindingConfiguration=""
      contract="RemoteDeploy.IService">
      <identity>
        <dns value="localhost" />
      </identity>
    </endpoint>
    <endpoint name="udpDiscoveryEpt" kind="udpDiscoveryEndpoint" />
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  </service>

</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="RemoteDeploy.Service1Behavior">
      <serviceMetadata httpGetEnabled="true" />
      <serviceDebug includeExceptionDetailInFaults="false" />
      <serviceDiscovery>

        </serviceDiscovery>
    </behavior>
  </serviceBehaviors>
</behaviors>

4

1 回答 1

0

首先尝试在您的浏览器中获取http://computerName.domain/services/Service.svc - 您收到错误或服务描述..

于 2011-08-23T15:19:08.870 回答