我有一个简单的客户端和服务器文件,但服务调用失败,我不知道原因。此外,我无法在dll文件中找到合同名称。
客户:
<endpoint address="http://localhost/SelfHostedServiceConsole"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ISampleService1"
contract="SelfHostedService.ISampleService" name="BasicHttpBinding_ISampleService1" />
</client>
</system.serviceModel>
</configuration>
我正在使用runclient.cmd调用:
set local
TestClient admin
pause
每次我跑这个我就得到
使用自托管服务
服务呼叫失败
客户代码:
<client>
<endpoint address="localhost/SelfHostedServiceConsole"; binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ISampleService1" contract="SelfHostedService.ISampleService" name="BasicHttpBinding_ISampleService1" />
</client>