这个问题一定是新手,我知道但是我现在还没有找到答案。我已经实现了一个我想测试的WCF服务。因此,当我在浏览器中单击打开时,它会打开类似
的内容所以我创建了配置文件和代码文件,并将其输入到我的解决方案中,位于Web服务所在的同一文件夹中。当我将上面提到的c#代码放在Web表单的按钮中时 编辑:这是我上面提到的output.config(我希望这是客户端的配置)
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_Icheck_for_quantity" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:51182/check_for_quantity.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_Icheck_for_quantity"
contract="Icheck_for_quantity" name="BasicHttpBinding_Icheck_for_quantity" />
</client>
</system.serviceModel>
</configuration>
如果我运行 wcftestservice ,则会显示以下内容: