如何为jabberd14服务器编写客户端
任何人都可以告诉我如何为 jabberd14 服务器启动一个超级简单的客户端开发?我喜欢使用 C++、VB .NET、PHP(用于网络开发)。
以及如何在服务器本身中添加用户(任何API来执行此操作),例如mysql已经开发了一个连接器来将sql语句传递到服务器来执行。
Anyone can tell me how to kick start development a super simple client for jabberd14 server? I am comfortable using C++, VB .NET, PHP (for webdevelopment).
And also how to add user in the server itself (any API to do this) like mysql has develop a connector to pass the sql statement to the server to execute.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您想从头开始编写一些东西,您应该开始熟悉 Jabber 使用的 XMPP 协议。
但是,最好使用现有的 XMPP/Jabber 库,它可以完成脏工作你。
Assuming you want to write something from scratch, you should start getting familiar with the XMPP Protocol used by Jabber.
However, it might be better to use an existing XMPP/Jabber library which does the dirty work for you.
对于 .net,请检查 Google 代码上的 jabber-net 项目
这是入门指南。
对于 Java SE,请查看此 API:Smack API。
以及入门指南。
For .net check the project jabber-net on Google code.
And here's a getting started guide.
For Java SE have a look at this API: Smack API.
And the getting started guide.