Can a WebSocket client written in java connect with phpwebsocketserver? Or do you have to have both client and server implemented in the same language?
Thanks.
Can a WebSocket client written in java connect with phpwebsocketserver? Or do you have to have both client and server implemented in the same language?
Thanks.
Yes and no. The WebSocket protocol is still being discussed/modified. This has resulted in some incompatibilities among different implementations (for instance, different opcode numbers). That said, many implementations are compatible with eachother. Once the protocol is standardized, all compliant websocket implementations will be able to communicate with eachother regardless of language.
A socket is a socket. It doesn't matter what languages the server or client is implemented in, just as long as they can use sockets.