I am attempting to get the demos project setup for xirsys v3 on windows 10.
I have updated the credentials for the node server with my credentials from the portal but I receive a timeout error when entering the room.
It is a websocket connection timoeout issue. I can see in the console window of the server the requests for the tokens on entering the room but nothing happens after this.
The documentation links in the portal do not work as they are pointing to port:9000 which is either down or is an error.
I have followed the startup guide on github https://github.com/xirsys/xirsys-examples-v3 but to no avail. any help would be appreciated.
David
Websocket connections require a ping message to be sent periodically from the client. This is because, should the client disconnect unexpectedly, the server can clean up the connection, as Websockets don't natively handle this automatically. Your websocket should be sending the string "ping" no less frequently than 20 seconds apart.