XirSys is a specialist hosting provider for WebRTC cloud enabled services and applications.
Questions tagged [xirsys]
31 questions
3
votes
1 answer
How to get closest Xirsys STUN/TURN servers for a user's region when proxying the request through our server
Xirsys docs say that for security you should always proxy requests for a list of STUN/TURN servers through your web server, rather than making the request to Xirsys directly from the client. This makes sense. But they also state that "In order to…

Ash Eldritch
- 1,504
- 10
- 13
3
votes
0 answers
How to use Xirsys Hosting in Pubnub Android Example?
https://github.com/GleasonK/android-webrtc-api
I am a student in Korea. I am working on my school project. I am using example from website above. I'm curious about how to connect my Xirsys hosting server and above example project. I read all about…

이재영
- 51
- 2
2
votes
0 answers
How to make Web RTC work behind Symmetric NAT?
I've created 2 simple webpages (for peer 1 and peer 2) that exchange a few messages with WebRTC data channel. You need to manually copy-paste offer and answer between the webpages. After the answer is pasted back to peer 1 the connection is…

chiqo47
- 56
- 4
1
vote
2 answers
How to configure Big Blue Button for Xirsys TURN server?
I run an self-hosted instance of BigBlueButton and signed up for Xirsys TURN server services because we need to serve clients behind (pretty restrictive) firewalls. Before I had been running my own instance of coturn, but as this led to problems…

TorstenS
- 127
- 10
1
vote
1 answer
WebRTC android implementation not working when one of the device is connected to WiFi
I have developed a video streaming app that streams video from one android device to another (and not the other way around). When both devices are on their individual LTE network the app works fine. But when one of the devices is connected to WiFi…

CanniZarro
- 53
- 8
1
vote
0 answers
WebRTC issue - Hololens unable to send video offer
we developed a fully working webRTC UWP environment starting from this project (https://github.com/webrtc-uwp/PeerCC/tree/Mosa/20180320-peercc-unity).
We developed a Desktop app and a HoloLens app to communicate with each other. Everything was good…

Franz
- 11
- 3
1
vote
0 answers
WebRTC Peer Connection Errors
I have built a vuejs super basic One - on - One webRTC video chat. I use PubNub for Signaling, and Xirsys for ICE.
But I get this error on the 'call'. However the page does load fine.
Errors InvalidStateError: Failed to set remote offer sdp: Called…

Benjamin Schroeder
- 73
- 1
- 8
1
vote
1 answer
iOS WebRTC P2P Connection with ICE Server
I have an ios app written in swift setup with AppRTC code from here.
I have the app setup on two phone and everything works when connecting to googles http://appr.tc. I would like to take google's apprtc out. When I setup both apps with ICE servers…

Alex Pelletier
- 4,933
- 6
- 34
- 58
1
vote
1 answer
Connecting to signalling server with xirsys and simplewebsocket
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 :…

NaijaProgrammer
- 2,892
- 2
- 24
- 33
1
vote
1 answer
PubBub WebRTC Android Demo is Not Connecting from Android to Android
When I tried the demo app https://kevingleason.me/AndroidRTC/, it was working as expected.
But when I tried with two android devices, I can make a call and receive call, but they don't get connected. In both devices, its own camera feed is…

solar
- 31
- 3
1
vote
2 answers
Codelab(bitbucket.org) example step 6, not working across network
I am reposting this question as I didn't get working solution previously. Sorry for the inconvenience caused.
I have hosted the example (basic video chat application which use node.js for signalling) shown in step 6 of codelab webrtc demo tutorials…

AgR
- 21
- 4
1
vote
1 answer
XirSys WebRTC secure connection
Setting up my simplewebrtc.html video chat room
Google Chrome browser decides http connections are no longer supported (https only)
I get my SSL certificate - and end up with this problem...
Mixed Content: The page at…

Jimmy Canadezo
- 161
- 1
- 10
1
vote
1 answer
How to hook into XirSys' signaling server instead of Priologic
I'm using EasyRTC to develop a video chat app. The ICE configuration is set up following the guide on XirSys site:
easyrtc.on("getIceConfig", function(connectionObj, callback){
var iceConfig = [];
…

Sorin Comanescu
- 4,829
- 3
- 29
- 38
0
votes
0 answers
WebRtc video chat: not all users see each other
I use WebRtс to create a general video chat for 3 users, but the following happens: 1 user sees 2, but these two users see only the first one. This problem is not reproducible if users are on my local network, although I have configured STUN/TURN…

user70485
- 1
- 1
0
votes
1 answer
How to use turn server?
I am using xirsys turn server.
Now I want to connect client A which is behind symmetric NAT with client B which is also behind symmetric NAT.
On which port should I listen on client A?
To which ip and port should I connect to establish tcp…
user15136000