On Tue, May 6, 2008 at 9:29 PM, Khurram Aziz <khurram at sharpcoders.net> wrote: > I am trying to use pjsip (Sipek2, http://code.google.com/p/sipek2) with > Televantage (http://www.vertical.com/products-televantage.html) as SIP > Server.... > > I can register with the server; but failing to make/receive calls...I am > attaching relevant pjsip.log if anyone of you can take a look and suggest > the solution.... > > Warning: 399 192.168.10.50 "SDP_GET_SESSION_INFO() failed; > err:7('SDP_ERROR_MALFORMED_NUMBER') [pos 0 on line 'a=rtcp:4001 IN IP4 > 192.168.10.16" Those probably was the reason (while it's too bad the server couldn't take the call because it doesn't recognize an SDP attribute, at least it gives useful info in the response which is commendable). You can disable RTCP advertising in SDP by declaring this in your config_site.h: #define PJMEDIA_HAS_RTCP_IN_SDP 0 Cheers Benny