.NET 的第三方聊天模块
我需要在像 ASP.NET 站点这样的 Intranet 中集成私人聊天模块,以便用户可以一对一地私人聊天(就像在 Facebook 上一样)。与 Active Directory 集成和 HTML5 实现将是一个优点。
任何建议将不胜感激:-)
I need to integrate private chat module in an intranet like ASP.NET site, so that the users can chat privately one-to-one (like on Facebook). Integration with Active Directory and a HTML5-implementation would be a pro.
Any recommendations would be appreciated :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
例如,您可以使用消息传递服务。看看 http://www.rabbitmq.com/ ,他们有 .NET 包装器,但没有 API难的。有了它,您可以编写自己的聊天实现,而不仅仅是聊天(因为您可以发送任何可序列化的对象 - 您甚至可以显示实时表单填写、各种通知等......)...
For example you can use messaging service. Have a look at http://www.rabbitmq.com/ , they have .NET wrapper and API is not hard. With it you can write your own chat implementation, and not only chat(as you can send any serializable object- you can even show realtime form filling, various notifications and so on..)...
我建议使用 SignalR 库。这里有一个使用该库的聊天示例 SignalR Chat。它的代码行数很少,很容易根据您的个人需求进行更改,并且扩展性非常好。
I would suggest using the SignalR library. There is a chat example using that library here SignalR Chat. It's very few lines of code, easy to change to your personal needs, and it scales very well.