使用 IP 地址的 XMPP 和 libjingle 连接
我正在开发一个 P2P 应用程序,其中 UserA 知道 UserB 的 IP 地址并请求连接。无法登录任何 Google Talk 或类似帐户,我们只能使用 IP 地址。
那么,我真的不能使用 XMPP API 或 libjingle 吗?(看起来需要“登录过程”)。 有任何 API 或 Java 库建议这样做吗?
谢谢
I am developing a P2P application where UserA knows UserB's IP address and request a connection. It is not possible to log-in to any Google Talk or similar account, we have to use just the IP address.
Then, is it true that I cannot use XMPP API or libjingle? (it looks like it requires a "login process"). Any API or Java library suggested to do it?
THANKS
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在开发基于 Web 的应用程序,浏览器安全性将阻止您在两个客户端之间建立直接的点对点连接。
您可以使用 App Engine Channel API 来处理实时两个客户之间的通信;使用此功能,两个客户端都将连接到 App Engine 服务器以交换消息。
If you're developing a web-based application, browser security is going to prevent you from making a direct peer-to-peer connection between two clients.
You can use the App Engine Channel API to handle real-time communication between two clients; using this, both clients will connect to the App Engine server to exchange messages.