[EndpointNotFoundException:没有端点监听

时间:2014-03-12 16:14:35

标签: web-services asp.net-mvc-4 endpoint

错误讯息: [EndpointNotFoundException:没有端点在" Link / MobileMotivation.asmx"那可以接受这个消息。这通常是由错误的地址或SOAP操作引起的。有关更多详细信息,请参阅InnerException(如果存在)。]

这是一个MVC4应用程序,它在本地计算机上运行良好。但是,当我将它实现到与Web服务相同的服务器时,它会显示错误消息。

<system.serviceModel>
<bindings>
  <basicHttpBinding>
    <binding name="MobileMotivationSoap" />
  </basicHttpBinding>
</bindings>
<client>
  <endpoint address="http://stuiis.cms.gre.ac.uk/bb116/FinalYear2/FinalYear2/MobileMotivation.asmx"
    binding="basicHttpBinding" bindingConfiguration="MobileMotivationSoap"
    contract="MobileMotivationService.MobileMotivationSoap" name="MobileMotivationSoap" />
</client>

1 个答案:

答案 0 :(得分:3)

您可能需要编辑匿名身份验证设置。

转到:

  1. 服务器管理员
  2. IIS
  3. 连接&gt;网站&gt; YourSite
  4. 点击身份验证&gt;启用
  5. 此时您可以选择应用程序池标识。

    此处有更多详情:A web site code can't connect to a soap service on the same server