调用WCF客户端函数在IIS上不起作用

问题描述 投票:0回答:1

我使用 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>

c# web-services wcf service-discovery wcf-discovery
1个回答
0
投票

首先尝试在浏览器中获取 http://computerName.domain/services/Service.svc - 要么收到错误消息,要么收到服务描述..

© www.soinside.com 2019 - 2024. All rights reserved.