错误讯息: [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>
答案 0 :(得分:3)
您可能需要编辑匿名身份验证设置。
转到:
此时您可以选择应用程序池标识。
此处有更多详情:A web site code can't connect to a soap service on the same server