我无法使用 net.tcp://访问 wcf 服务
我使用的是 IE8,无法使用 net.tcp 连接到我的 WCF 服务。我可以通过 http 绑定访问相同的服务。我在 app.config 中启用了两个绑定(net.tcp、http)。谁能告诉我是否需要设置/使用 IE 中使用 net.tcp 查看服务的设置。
I'm using IE8 and can't connect to my WCF service using net.tcp. I'm able to access the same service with http binding just fine. I got two binding enabled in app.config (net.tcp, http). Can anyone tell me if there is a settings that I need to set/play with for viewing service using net.tcp in IE.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法通过 IE 使用
netTcpBinding
连接到 WCF 服务。您需要的是一个“真正的”WCF 客户端应用程序,或者类似 WCF 测试客户端< /a> 随 WCF 一起提供在包装盒中 - 只需找到它并开始使用它!
You cannot connect to a WCF service using the
netTcpBinding
through IE.What you need is a "real" WCF client app, or something like WCF Test Client which is shipped with WCF in the box - just find it and start using it!
确保您有服务的 HTTP 基地址和 mexTcpBinding 端点。
Make sure you have a HTTP base address, for your service and a mexTcpBinding endpoint.