WCF 客户端端点的用途?
我理解在服务端拥有WCF端点的目的,但我不太理解在客户端配置端点的目的。这是用于双工连接还是什么?
问候
詹姆斯
I understand the purpose of having WCF endpoint on the service side, but I don't quite understand the purpose of configuring endpoint on the client side. Is this for duplex connection or something?
Regards
James
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
端点实际上是(地址、绑定、合约)的元组。
客户端拥有所有这些东西,就像服务器一样。 (在客户端,它是您要连接的地址,用于与服务器通信的绑定,用于消息的合同。)
An endpoint is effectively a tuple of (address, binding, contract).
The client has all these things, just like the server. (In client side it is address you want to connect to, binding used to talk to the server, contract used for the messages.)