错误消息: 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>
发布于 2014-03-22 01:56:11
您可能需要编辑匿名身份验证设置。
请转至:
此时,您可以选择应用程序池标识。
更多详细信息请访问:A web site code can't connect to a soap service on the same server
https://stackoverflow.com/questions/22357507
复制相似问题