Im using ejabberd + stanza io to build a realtime messaging and audio calling website. ive managed to make my first audio call
from chrome(on PC) -> chrome(on mac) with no errors
the problem occurs when i try to make the call
from chrome(on mac) to firefox(on pc) or vice versa
the chrome browser log is showing
Could not process WebRTC answer
by using the chrome://webrtc-internals
debugger tool ive figured out that setremotedescription
failed with the error:
`Failed to set remote answer sdp: Called with SDP without ice-ufrag and ice-pwd`
this is what im using to start a call:
var session = client.jingle.createMediaSession('full JID');
session.addStream(localAudio_stream); // getUserMedia stream
session.start();
what am i doing wrong? how can firefox successfully establish a call but chrome cant (tested on opera to with the same result (failure))