.net 中的远程处理
我正在 .net 远程处理上做应用程序,我编写了代码,
Client -----------> server
但
client <------------ server
我不知道该怎么做(就像聊天一样),请提供建议和一些示例以供查找。
without any request from server i send messages from my client application
I am doing applications on .net remoting ,i write the code for
Client -----------> server
but
client <------------ server
i don't know how to do it(just like a chat),Please give suggestions and some samples to look up.
without any request from server i send messages from my client application
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 MarshalByRefObject 和事件。这将允许服务器响应客户端。
这是代码项目的示例
另一个带有事件回调的示例
Try using MarshalByRefObject and events. This would allow the Server to respond back to the client.
Here is a sample on code project
Another Sample with Event CallBack