Cocoa 中基于 Jabber 的服务器和客户端应用程序
我已经实现了一个当前支持文本聊天的应用程序。现在我想在其中实现语音聊天和后来的视频聊天,但客户提供的时间较少。 :( 因此,我计划在 Cocoa 中获取一些开源代码,我可以使用它并轻松地将其合并到我的应用程序中。
经过网上的分析,我发现Jabber相关的客户端/聊天服务器应用程序应该最符合我的要求。
我发现有几个基于 Jabber 的客户端-服务器应用程序,但它们大多是用 Java、C 或 C++ 编写的,而不是面向 Cocoa 的。
谁能给我推荐一些基于 Cocoa 的 Jabber 服务器和客户端应用程序的链接或代码?
另外我想问一下,假设我有一个用 C 构建的服务器应用程序和一个用 Cocoa 构建的客户端应用程序,那么我是否能够在客户端节点之间传输文本和多媒体消息?
I have implemented an application which currently supports text chat. Now I want to implement voice chat and later video chat in it, but I have less time provided by client. :(
So I am planning to go for some open source code in Cocoa, which I can use and easily incorporate into my application.
After analysis on the internet, I found that a Jabber-related client/chat server application should be best according to my requirements.
I have found that there are several Jabber-based client-server applications but they are mostly written in Java, C, or C++ and are not Cocoa-oriented.
Can anyone suggest me some links or code for a Cocoa-based Jabber server and client application?
Also I want to ask that let's say I have a server application built in C and a client application built in Cocoa, then will I be able to transmit text and multimedia messages between client nodes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 xmpp 中没有对媒体传输的通用支持,但您可以使用 xmpp 作为信号通道来建立媒体会话(例如,请参阅 jingle)
in xmpp no generic support of media transfer, but you can use xmpp as signal channal to establish media session (see jingle for example)
看一下:http://softwarelivre.sapo.pt/sapo_msg_mac
Leapfrog 正在使用 PSI-Core 。
希望看到一些进展。
Take a look: http://softwarelivre.sapo.pt/sapo_msg_mac
Leapfrog is using the PSI-Core.
Would like to see some progress.