[sr-dev] mediaproxy-ng failed to rewrite sdp from jssip ws client

2013-07-12 Thread Juha Heinanen
i tried what happens when i make rtpproxy_answer("co2sp") call on 200 ok from jssip ws client. mediaproxy-ng replied with failed to rewrite sdp error. i don't know if there is something wrong in jssip sdp or if there is a bug in mediaproxy-ng. -- juha Jul 12 12:00:35 siika /usr/sbin/sip-proxy[2

[sr-dev] mediaproxy-ng failed to rewrite sdp from jssip ws client

2013-10-25 Thread Juha Heinanen
> Peter Dunkley writes: > I've been using mediaproxy-ng with JsSIP on Chrome for a couple of months > now. It works fine for me and I was running a live demo using it for this > at AstriCon two weeks ago. peter, when jssip client calls regular sip client, i made the same rtpproxy_offer(co1spr)/

Re: [sr-dev] mediaproxy-ng failed to rewrite sdp from jssip ws client

2013-07-12 Thread Richard Fuchs
On 07/12/13 05:08, Juha Heinanen wrote: > i tried what happens when i make rtpproxy_answer("co2sp") call on 200 ok > from jssip ws client. mediaproxy-ng replied with failed to rewrite sdp > error. i don't know if there is something wrong in jssip sdp or if > there is a bug in mediaproxy-ng. It w

Re: [sr-dev] mediaproxy-ng failed to rewrite sdp from jssip ws client

2013-07-12 Thread Juha Heinanen
Richard Fuchs writes: > It would help to see the SDP from the offer as well, most like the > problem can be found there. Currently there's a known issue when the > offer SDP contains multiple streams multiplexed on the same RTP port, > i.e. audio and video (and also RTCP) on the same port like Chr

Re: [sr-dev] mediaproxy-ng failed to rewrite sdp from jssip ws client

2013-07-12 Thread Richard Fuchs
On 07/12/13 09:09, Juha Heinanen wrote: > Richard Fuchs writes: > >> It would help to see the SDP from the offer as well, most like the >> problem can be found there. Currently there's a known issue when the >> offer SDP contains multiple streams multiplexed on the same RTP port, >> i.e. audio and

Re: [sr-dev] mediaproxy-ng failed to rewrite sdp from jssip ws client

2013-10-25 Thread Peter Dunkley
Hi Juha, You need to use the '-' and '+' flags for adding/removing ICE candidates. Regards, Peter On 25 October 2013 12:14, Juha Heinanen wrote: > > Peter Dunkley writes: > > > I've been using mediaproxy-ng with JsSIP on Chrome for a couple of months > > now. It works fine for me and I was

Re: [sr-dev] mediaproxy-ng failed to rewrite sdp from jssip ws client

2013-10-25 Thread Juha Heinanen
Peter Dunkley writes: > You need to use the '-' and '+' flags for adding/removing ICE > candidates. i tried by calling rtpproxy_offer(co1sp+r) on invite from jssip. that caused replacement of jssip candidates with mediaproxy-ng candidates and callee got this kind of sdp: v=0. o=- 57105547135088

Re: [sr-dev] mediaproxy-ng failed to rewrite sdp from jssip ws client

2013-10-25 Thread Peter Dunkley
Hi, There are also issues with mediaproxy-ng when you try to have multiple streams. An audio only call or a video only call should work, but SDP with two m-lines has never worked for me. Regards, Peter On 25 October 2013 14:50, Juha Heinanen wrote: > Peter Dunkley writes: > > > You need to

Re: [sr-dev] mediaproxy-ng failed to rewrite sdp from jssip ws client

2013-10-25 Thread Juha Heinanen
Peter Dunkley writes: > There are also issues with mediaproxy-ng when you try to have multiple > streams. An audio only call or a video only call should work, but SDP with > two m-lines has never worked for me. yes, that is likely the problem. did you configure your jssip client somehow to use

Re: [sr-dev] mediaproxy-ng failed to rewrite sdp from jssip ws client

2013-10-25 Thread Juha Heinanen
Juha Heinanen writes: > yes, that is likely the problem. did you configure your jssip client > somehow to use only one media stream? it was easy. in custom.js: Settings = { videoDisabledByDefault: true }; after that i was able to make call between jssip client and regular sip client. -- ju