문제

I am trying to implement a client side software (a messenger) in java that uses XMPP and supports videoconferencing. For this goal I've downloaded smack and tried to work with it, so I need an xmpp java server that is open source and supports videoconferencing. Then I could connect my database to this server and use it. Is there any server as I need?

도움이 되었습니까?

해결책

You want XMPP with MultiMedia Jingle. But the Jingle implementation in smack is pretty old, you have to find out if it works for you. Also I think that Jingle currently only supports one-to-one video-chat, there is a multiparty Jingle XEP but it's deferred. The good news is that it's relatively server independent, all logic and negotiation is done on the client side. If you are looking for a Java XMPP Server, give Openfire a try. Openfire is also open-source. But you don't need an Java XMPP Server just because Smack is written in java. There are many alternatives.

You are basically asking for some sophisticated solution for free/as open-source. But AFAIK no one has taken the effort to built something like that (yet). If you have the manpower, time and knowledge, you are sure welcome to contribute to the community. :)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top