1

我在 IIS 7 中托管了一个 WCF 服务引用,我的 wsdl 路径是

http://localhost:82/CustomService.Service1.svc as it is running **on Port 82**

我在一个文件夹中发布了我的 asp.net 网站并将该文件夹复制到其他端口 81上的 IIS 7 我可以浏览 default.aspx 但如何从该网站调用我的 WCF 服务我的 Web Config 如下

<client>
  <endpoint address="http://localhost:82/CustomService.Service1/"    
   binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IService1"   
   contract="MyServiceReference.IService1" name="WSHttpBinding_IService1">
    <identity>
      <dns value="localhost"/>
    </identity>
  </endpoint>
</client>

当我尝试从 ASP.net 运行服务时出现错误,没有端点
http://localhost:82/CustomService.Service1可以接受该消息

请帮忙

4

1 回答 1

2

您的端点地址似乎不正确。将其替换为

http://localhost:82/CustomService.Service1.svc

于 2013-07-09T06:12:30.440 回答