如何在我的 VB.Net 应用程序中实现 XMPP
我是 XMPP 的新手。我想使用 XMPP 在 VB.net 中创建聊天应用程序。 我的电脑上有 ejabberd 服务器。 我不知道如何通过 VB.net 与 ejabberd 服务器交互。
I am Newbie in XMPP . I want to create chat application in VB.net using XMPP .
i am having ejabberd serverin my pc.
i dont know how to intract with ejabberd server via VB.net.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您知道 XMPP 的工作原理,但不确定如何将应用程序连接到 XMPP 服务器,则可以从为您处理所有 XMPP 交互的 .NET 库开始。 Jabber-net 就是其中之一。 http://code.google.com/p/jabber-net/
我'我已经在一个项目中广泛使用了这个库,而且它非常有用 - 假设您知道 XMPP 是如何工作的。
需要注意的一件事是它是用 C# 编写的 - 但这并不妨碍您在 VB.net 项目中引用 DLL。
If you know how XMPP works, but am not sure how to connect your application to your XMPP server, you can start with a .NET library that handles all XMPP interaction for you. Jabber-net is one of them. http://code.google.com/p/jabber-net/
I've used this library pretty extensively on a project, and it's quite useful - Given that you know how XMPP works.
One thing to note is that it is written in C# - But it doesn't prevent you from reference the DLL in your VB.net project.