WCF Duplex - 如何查找客户端的回调 URL?
如何从服务 (WCF 3.5) 内查找双工 HTTP 绑定的客户端回调 URL?
感谢任何帮助..
How to find the Client's Callback URL for a duplex HTTP binding, from within the service (WCF 3.5)?
Appreciate any help..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在双工通道中获取对客户端的回调,您要做的是在您要调用的服务上调用的方法中,
其中 ICallbackContract 被替换为实际的回调协定名称。
编辑:
不确定“客户端回调 URL”一词的含义。如果您指的是可以通过以下方式获取的客户地址:
To get the callback to the client in a duplex channel what you do is within the method that was invoked on the service you would call
where ICallbackContract is replaced with the actual callback contract name.
Edit:
Not sure what you mean by the phrase Clients Callback URL. If you mean the address of the client that could be obtained via:
您通常可以通过
其中 T 是合约中定义的 CallBack 接口的类型来找到它。
You normally find it trough
Where T is the type of the CallBack interface defined in the contract.