这应该是一个直截了当的问题。
我无法使用 WCFTestClient 工具连接到特定端点。我有一个服务配置。像这样:
<service name="CO.Services.SvcTest">
<endpoint address="ep1" binding="basicHttpBinding" bindingConfiguration=""
bindingNamespace="http://api.CO.com/Services/Tester/ep1"
contract="CO.Services.ISvcTest" />
<endpoint address="ep2" binding="basicHttpBinding" bindingConfiguration=""
bindingNamespace="http://api.CO.com/Services/Tester/ep2"
contract="CO.Services.ISvcTest_v2" />
<endpoint address="mex" binding="mexHttpBinding" bindingConfiguration=""
name="" contract="IMetadataExchange" />
</service>
如果我通过' http://localhost:2659/Tester.svc/ep1 '或' http://localhost:2659/Tester.svc/ep2 '我得到“无法从...获取元数据”但如果我通过' http://localhost:2659/Tester.svc它可以工作并向我显示两个端点。
有谁知道我错过了什么?
EDIT1:这甚至可能吗?