Connecting to signalling server with xirsys and simplewebsocket

329 views Asked by At

I am trying to implement a WebRTC application using the xirsys API and simpleWebRTC. I am trying to connect using the secure method. So inside the connect.js file, I have this:

var xirsysConnect = {
   secureTokenRetrieval : true,
   server : '../getToken.php/',
   data : {
      domain : 'MY_DOMAIN_HERE',
      application : 'default',
      room : 'default',
      secure : 1
   }
};

When I open the page in a browser, I get this error in the console:

Failed to construct 'WebSocket': The URL 'undefined/v2/LONG_STRING_HERE' is invalid

I can't seem to find any help in the docs. I have also tried looking in the source code, but can't seem to make any headway. Any help will be greatly appreciated.

1

There are 1 answers

1
BernardV On

For having spent the last couple of days trying to make this work, I concluded that the Xirsys demo using simpleWebRTC isn't ready for prime time. Comments in the source code often don't reflect what's in the code itself. Additionally, there is, indeed, no proper online documentation about it.

I had hoped for Xirsys to provide something more professional. I'm looking forward to clarifications and improvements on their side.