WebRTC JavaScript with Java / PHP server

4

Does anyone have any examples or documentation, how to create a WebRTC client (browser), using a Java or PHP server to make a handshake between them?

I can not use node.js, and the documentation I find is getting some information from the node server, which is required to start the P2P connection.

    
asked by anonymous 10.03.2014 / 19:28

1 answer

2

Felipe,

Your question is with regard to the WebRTC client or the server that will be responsible for signaling?

If it is server-related, there are several WebSocket projects in PHP, such as:

At the WebRTC (Client / Server) connection points you will use WebSocket to signal and send the messages that negotiate the connection between the points, after which these points will connect directly to each other (or via a server TURN).

At WebRTC has a lot of material and content to help you with the task.

PS: Just out of curiosity, could you explain why I could not use server node?

    
27.03.2014 / 19:05