v0.0.X

Signal exchange with examples

S – Server C – Client CM – Client registered in server as potencial member of conversation   Connect to server via websocket: C S | | | -> 1 -> | | | (2) | | | (1) open websocket connection (2) C became CM   Send command to create conversation: CM S | …

Continue Reading
v0.0.X

NextRTC protocol phrases

Register yourself in server Registration to server is simple open websocket connection. When connection is established you are allowed to post signals via websocket channel. Details: In this phrase to websocket schannel is bound unique ID which is use to recognize exactly one member of communication. Execute command on server Exceptions, Timeouts When connection (websocket) breaks …

Continue Reading
v0.0.X

Json signal structure

Signal structure: { “from”:””, “to”:””, “signal”:”create”, “content”:””, “custom”:{} } “from” – This field is filled by Server. Server attach here unique ID of client who trigger action “to” – This field is filled by Client or Server. Here you can check your ID (in incomming messages) or point to whom signal should be propagated (in …

Continue Reading
v0.0.X

Signals in NexRTC

NextRTC uses twelve signals all are presended below: offerRequest offerResponse answerRequest answerResponse finalize candidate ping left join create joined created

Continue Reading
v0.0.X

Signal types

There are three type of signals. Information signals (you can, but it is not mandatory to handle it). Those signals are always came from server, and are triggered by action of user, or by server to check if client is still running. This group includes: ping joined created left Commands (you will send it to …

Continue Reading
News

First stable version released

I’m glad to inform that first stable version was released to maven central. In next few weeks I’ll provide full documentation (here and at github wiki page). Examples don’t work because I have to provide certificate (It’s new  web browsers requirement ). WebRTC cannot work with pages using http, and ws instead of https and wss …

Continue Reading