我觉得这个问题是如此基础,以至于教程或文档都没有提到如何做。我熟悉其他平台上的Web服务,但是我是WCF服务的新手。
我已经在web.config中设置了像这样的wsHttpBinding:
<service behaviorConfiguration="IdentityServiceBehavior" name="Com.CompanyName.Service.IdentityService">
<endpoint address="/Identityservice" binding="wsHttpBinding"
bindingConfiguration="" contract="Com.CompanyName.Service.IIdentityService" />
<endpoint address="mex" binding="mexHttpBinding" bindingConfiguration=""
bindingNamespace="" contract="IMetadataExchange" />
</service>
我尝试使用Fiddler或仅使用浏览器访问URL,但结果仅为400。对于URL可能是什么,我已经尝试了很多不同的方法,但是没有骰子。我已经尝试过该URL及其一些变体:http://localhost:61987/IdentityService.svc/Identityservice
如果有人能指出我在这里缺少的基本信息的方向,我将不胜感激。
最佳答案
您可以使用WCF test client测试您的WCF服务
关于c# - WCF服务,我可以在浏览器中查看输出吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4995590/