I'm a student and doing symbian pjsip for my final project,
I'm testing pjsip (symbian_ua) versus xlite voip client,
I have this strange behaviour :
xlite can make call to symbian_ua or symbian_ua_gui , but not the other way around could you explain it to me why ?
I try also setup srtp, do secure signaling really needed ? if so do I have to create a certificate for this session ? if so where should I put this certificate ? on a web server or what ?
On Thu, Jan 7, 2010 at 6:16 AM, Aji Prabowo ajiprabowo90@yahoo.com wrote:
I'm a student and doing symbian pjsip for my final project,
I'm testing pjsip (symbian_ua) versus xlite voip client,
I have this strange behaviour :
xlite can make call to symbian_ua or symbian_ua_gui , but not the other way
around could you explain it to me why ?
Please check the log file and see where the failure was. You can also send
the log file here for us to see.
I try also setup srtp, do secure signaling really needed ? if so do I have
to create a certificate for this session ? if so where should I put this
certificate ? on a web server or what ?
Secure signaling is by default required, but it can be disabled. See
documentation about TLS on how to use/configure it.
-benny
Sorry a bit confuse... where is the location log of symbian built pjsip ?
--- On Thu, 1/7/10, Benny Prijono bennylp@teluu.com wrote:
From: Benny Prijono bennylp@teluu.com
Subject: Re: [pjsip] a Newbie Questions...
To: "pjsip list" pjsip@lists.pjsip.org
Date: Thursday, January 7, 2010, 2:16 PM
On Thu, Jan 7, 2010 at 6:16 AM, Aji Prabowo ajiprabowo90@yahoo.com wrote:
I'm a student and doing symbian pjsip for my final project,
I'm testing pjsip (symbian_ua) versus xlite voip client,
I have this strange behaviour :
xlite can make call to symbian_ua or symbian_ua_gui , but not the other way around could you explain it to me why ?
Please check the log file and see where the failure was. You can also send the log file here for us to see.
I try also setup srtp, do secure signaling really needed ? if so do I have to create a certificate for this session ? if so where should I put this certificate ? on a web server or what ?
Secure signaling is by default required, but it can be disabled. See documentation about TLS on how to use/configure it.
-benny
-----Inline Attachment Follows-----
Visit our blog: http://blog.pjsip.org
pjsip mailing list
pjsip@lists.pjsip.org
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org
Pak Benny,...
found the log, and found following error
13:43:19.796 sip_transport_ Error setting SO_RCVBUF: Invalid operation (PJ_EINVALIDOP) [70013]
13:43:19.796 sip_transport_ Error setting SO_SNDBUF: Invalid operation (PJ_EINVALIDOP) [70013]
--- On Fri, 1/8/10, Aji Prabowo ajiprabowo90@yahoo.com wrote:
From: Aji Prabowo ajiprabowo90@yahoo.com
Subject: Re: [pjsip] a Newbie Questions...
To: "pjsip list" pjsip@lists.pjsip.org
Date: Friday, January 8, 2010, 4:17 AM
Sorry a bit confuse... where is the location log of symbian built pjsip ?
--- On Thu, 1/7/10, Benny Prijono bennylp@teluu.com wrote:
From: Benny Prijono bennylp@teluu.com
Subject: Re: [pjsip] a Newbie Questions...
To: "pjsip list" pjsip@lists.pjsip.org
Date: Thursday, January 7, 2010, 2:16 PM
On Thu, Jan 7, 2010 at 6:16 AM, Aji Prabowo ajiprabowo90@yahoo.com wrote:
I'm a student and doing symbian pjsip for my final project,
I'm testing pjsip (symbian_ua) versus xlite voip client,
I have this strange behaviour :
xlite can make call to symbian_ua or symbian_ua_gui , but not the other way around could you explain it to me why ?
Please check the log file and see where the failure was. You can also send the log file here for us to see.
I try also setup srtp, do secure signaling really needed ? if so do I have to create a certificate for this session ? if so where should I put this certificate ? on a web server or what ?
Secure signaling is by default required, but it can be disabled. See documentation about TLS on how to use/configure it.
-benny
-----Inline Attachment Follows-----
Visit our blog: http://blog.pjsip.org
pjsip mailing list
pjsip@lists.pjsip..org
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org
-----Inline Attachment Follows-----
Visit our blog: http://blog.pjsip.org
pjsip mailing list
pjsip@lists.pjsip.org
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org
On Thu, Jan 14, 2010 at 6:54 AM, Aji Prabowo ajiprabowo90@yahoo.com wrote:
Pak Benny,...
found the log, and found following error
13:43:19.796 sip_transport_ Error setting SO_RCVBUF: Invalid operation
(PJ_EINVALIDOP) [70013]
13:43:19.796 sip_transport_ Error setting SO_SNDBUF: Invalid operation
(PJ_EINVALIDOP) [70013]
That actually is not an error, it's just an info and it can be ignored (in
fact let me just remove it from the code).
finally succeed building standard version of symbian PJSIP, now i'm trying to build with VAS support by adding following lines to config_site.h
#define PJ_SYMBIAN 1
#define PJMEDIA_AUDIO_DEV_HAS_SYMB_MDA 0
#define PJMEDIA_AUDIO_DEV_HAS_SYMB_VAS 1
then clean and rebuild the project but the carbide showed following errors when I try to build :
symb_vas_dev.cpp:(.text+0x3a4): undefined reference to CVoIPUtilityFactory::CreateFactory(CVoIPUtilityFactory*&)' symb_vas_dev.cpp:(.text+0x3d4): undefined reference to CVoIPUtilityFactory::CreateDownlinkStream(TVersion, CVoIPUtilityFactory::TVoIPCallType, CVoIPAudioDownlinkStream*&)'
and alot of CVoIPUtilityFactory:: errors
I thought this got todo with missing VoIPAudioIntfc.lib, which I only found in epoc32/release/armv5/lib So please guide me step by step to build pjsip with vas support please.
Have tried http://trac.pjsip.org/repos/wiki/VAS but not worked also.
Thanks in advance
I'm having the same problem. I have s60 3rd SDK but no "VoIPAudioIntfc.lib" which results in the same errors.
Can't find nokia's SDK API with VoIPAudioIntfc. Any suggestions?
Thanks.
Aji Prabowo wrote: > finally succeed building standard version of symbian PJSIP, now i'm trying to build with VAS support by adding following lines to config_site.h
#define PJ_SYMBIAN 1
#define PJMEDIA_AUDIO_DEV_HAS_SYMB_MDA 0
#define PJMEDIA_AUDIO_DEV_HAS_SYMB_VAS 1then clean and rebuild the project but the carbide showed following errors when I try to build :
symb_vas_dev.cpp:(.text+0x3a4): undefined reference to
CVoIPUtilityFactory::CreateFactory(CVoIPUtilityFactory\*&)' symb\_vas\_dev.cpp:(.text+0x3d4): undefined reference toCVoIPUtilityFactory::CreateDownlinkStream(TVersion, CVoIPUtilityFactory::TVoIPCallType, CVoIPAudioDownlinkStream*&)'
and alot of CVoIPUtilityFactory:: errorsI thought this got todo with missing VoIPAudioIntfc.lib, which I only found in epoc32/release/armv5/lib So please guide me step by step to build pjsip with vas support please.
Have tried http://trac.pjsip.org/repos/wiki/VAS but not worked also.Thanks in advance
Hello.
You must download and install VAS Plugin for SDK.
You may get it from http://wiki.forum.nokia.com/index.php/SDK_API_Plugin
With best regards, Rostyslav Drutsky
From: "Tine Uršič" tine@cde.si
To: "pjsip list" pjsip@lists.pjsip.org
Subj: Re: [pjsip] a Newbie Questions (VAS)
I'm having the same problem. I have s60 3rd SDK but no "VoIPAudioIntfc.lib" which results in the same errors.
Can't find nokia's SDK API with VoIPAudioIntfc. Any suggestions?
Thanks.
Aji Prabowo wrote:
finally succeed building standard version of symbian PJSIP, now i'm trying to build with VAS support by >adding following lines to config_site.h
#define PJ_SYMBIAN 1
#define PJMEDIA_AUDIO_DEV_HAS_SYMB_MDA 0
#define PJMEDIA_AUDIO_DEV_HAS_SYMB_VAS 1
then clean and rebuild the project but the carbide showed following errors when I try to build :
symb_vas_dev.cpp:(.text+0x3a4): undefined reference to CVoIPUtilityFactory::CreateFactory(CVoIPUtilityFactory*&)' symb_vas_dev.cpp:(.text+0x3d4): undefined reference to CVoIPUtilityFactory::CreateDownlinkStream(TVersion, >CVoIPUtilityFactory::TVoIPCallType, CVoIPAudioDownlinkStream*&)'
and alot of CVoIPUtilityFactory:: errors
I thought this got todo with missing VoIPAudioIntfc.lib, which I only found in epoc32/release/armv5/lib So please >guide me step by step to build pjsip with vas support please.
Have tried http://trac.pjsip.org/repos/wiki/VAS but not worked also.
Thanks in advance
I found it later on. Thanks anyway.
I was able to build with VAS support. But now I have a problem - when initiating (or receiving) a call, I get an assertion:
assertion "conf port->info->format.id == PJMEDIA FORMAT L16" failed: file "/Symbian/Carbide/workspace/pjproject-1.6/pjmedia/src/pjmedia/conf switch.c", line 1006
Any ideas? Connected to codecs maybe?
Rostyslav Drutsky wrote: > ```
<pre wrap="">Hello. You must download and install VAS Plugin for SDK. You may get it from <a class="moz-txt-link-freetext" href="http://wiki.forum.nokia.com/index.php/SDK_API_Plugin">http://wiki.forum.nokia.com/index.php/SDK_API_Plugin</a> With best regards, Rostyslav Drutsky ``` > ``` > <pre wrap="">From: "Tine Uršič" <a class="moz-txt-link-rfc2396E" href="mailto:tine@cde.si"><tine@cde.si></a> > To: "pjsip list" <a class="moz-txt-link-rfc2396E" href="mailto:pjsip@lists.pjsip.org"><pjsip@lists.pjsip.org></a> > Subj: Re: [pjsip] a Newbie Questions (VAS) > > > I'm having the same problem. I have s60 3rd SDK but no "VoIPAudioIntfc.lib" which results in the same errors. > > Can't find nokia's SDK API with VoIPAudioIntfc. Any suggestions? > > Thanks. > > Aji Prabowo wrote: > > > finally succeed building standard version of symbian PJSIP, now i'm trying to build with VAS support by >adding following lines to config_site.h > > #define PJ_SYMBIAN 1 > #define PJMEDIA_AUDIO_DEV_HAS_SYMB_MDA 0 > #define PJMEDIA_AUDIO_DEV_HAS_SYMB_VAS 1 > > then clean and rebuild the project but the carbide showed following errors when I try to build : > > symb_vas_dev.cpp:(.text+0x3a4): undefined reference to `CVoIPUtilityFactory::CreateFactory(CVoIPUtilityFactory*&)' > symb_vas_dev.cpp:(.text+0x3d4): undefined reference to `CVoIPUtilityFactory::CreateDownlinkStream(TVersion, >CVoIPUtilityFactory::TVoIPCallType, CVoIPAudioDownlinkStream*&)' > and alot of CVoIPUtilityFactory:: errors > > I thought this got todo with missing VoIPAudioIntfc.lib, which I only found in epoc32/release/armv5/lib So please >guide me step by step to build pjsip with vas support please. > Have tried <a class="moz-txt-link-freetext" href="http://trac.pjsip.org/repos/wiki/VAS">http://trac.pjsip.org/repos/wiki/VAS</a> but not worked also. > > Thanks in advance > > ``` ``` <pre wrap=""> _______________________________________________ Visit our blog: <a class="moz-txt-link-freetext" href="http://blog.pjsip.org">http://blog.pjsip.org</a> pjsip mailing list <a class="moz-txt-link-abbreviated" href="mailto:pjsip@lists.pjsip.org">pjsip@lists.pjsip.org</a> <a class="moz-txt-link-freetext" href="http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org">http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org</a> ```
<pre class="moz-signature" cols="72">--
Tine Uršič
Razvojni inženir
CDE nove tehnologije d.o.o.
Tehnološki park 24
1000 Ljubljana, Slovenija
GSM: +386 0 30 600 619
E-mail: <a class="moz-txt-link-abbreviated" href="mailto:tine@cde.si">tine@cde.si</a>
<a class="moz-txt-link-abbreviated" href="http://www.cde.si">www.cde.si</a>
Solved. I had to disable all codecs in config_site.h and add G.711. Now it works.
Tine Uršič wrote: > I found it later on. Thanks anyway.
I was able to build with VAS support. But now I have a problem - when initiating (or receiving) a call, I get an assertion:
assertion "conf port->info->format.id == PJMEDIA FORMAT L16" failed: file "/Symbian/Carbide/workspace/pjproject-1.6/pjmedia/src/pjmedia/conf switch.c", line 1006
Any ideas? Connected to codecs maybe?
Rostyslav Drutsky wrote: > ```
<pre wrap="">Hello. You must download and install VAS Plugin for SDK. You may get it from <a class="moz-txt-link-freetext" href="http://wiki.forum.nokia.com/index.php/SDK_API_Plugin" moz-do-not-send="true">http://wiki.forum.nokia.com/index.php/SDK_API_Plugin</a> With best regards, Rostyslav Drutsky ``` > ``` > <pre wrap="">From: "Tine Uršič" <a class="moz-txt-link-rfc2396E" href="mailto:tine@cde.si" moz-do-not-send="true"><tine@cde.si></a> > To: "pjsip list" <a class="moz-txt-link-rfc2396E" href="mailto:pjsip@lists.pjsip.org" moz-do-not-send="true"><pjsip@lists.pjsip.org></a> > Subj: Re: [pjsip] a Newbie Questions (VAS) > > > I'm having the same problem. I have s60 3rd SDK but no "VoIPAudioIntfc.lib" which results in the same errors. > > Can't find nokia's SDK API with VoIPAudioIntfc. Any suggestions? > > Thanks. > > Aji Prabowo wrote: > > > finally succeed building standard version of symbian PJSIP, now i'm trying to build with VAS support by >adding following lines to config_site.h > > #define PJ_SYMBIAN 1 > #define PJMEDIA_AUDIO_DEV_HAS_SYMB_MDA 0 > #define PJMEDIA_AUDIO_DEV_HAS_SYMB_VAS 1 > > then clean and rebuild the project but the carbide showed following errors when I try to build : > > symb_vas_dev.cpp:(.text+0x3a4): undefined reference to `CVoIPUtilityFactory::CreateFactory(CVoIPUtilityFactory*&)' > symb_vas_dev.cpp:(.text+0x3d4): undefined reference to `CVoIPUtilityFactory::CreateDownlinkStream(TVersion, >CVoIPUtilityFactory::TVoIPCallType, CVoIPAudioDownlinkStream*&)' > and alot of CVoIPUtilityFactory:: errors > > I thought this got todo with missing VoIPAudioIntfc.lib, which I only found in epoc32/release/armv5/lib So please >guide me step by step to build pjsip with vas support please. > Have tried <a class="moz-txt-link-freetext" href="http://trac.pjsip.org/repos/wiki/VAS" moz-do-not-send="true">http://trac.pjsip.org/repos/wiki/VAS</a> but not worked also. > > Thanks in advance > > ``` ``` <pre wrap=""> _______________________________________________ Visit our blog: <a class="moz-txt-link-freetext" href="http://blog.pjsip.org" moz-do-not-send="true">http://blog.pjsip.org</a> pjsip mailing list <a class="moz-txt-link-abbreviated" href="mailto:pjsip@lists.pjsip.org" moz-do-not-send="true">pjsip@lists.pjsip.org</a> <a class="moz-txt-link-freetext" href="http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org" moz-do-not-send="true">http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org</a> ```<pre class="moz-signature" cols="72">-- Tine Uršič Razvojni inženir CDE nove tehnologije d.o.o. Tehnološki park 24 1000 Ljubljana, Slovenija GSM: +386 0 30 600 619 E-mail: <a class="moz-txt-link-abbreviated" href="mailto:tine@cde.si" moz-do-not-send="true">tine@cde.si</a> <a class="moz-txt-link-abbreviated" href="http://www.cde.si" moz-do-not-send="true">www.cde.si</a>
<pre class="moz-signature" cols="72">--
Tine Uršič
Razvojni inženir
CDE nove tehnologije d.o.o.
Tehnološki park 24
1000 Ljubljana, Slovenija
GSM: +386 0 30 600 619
E-mail: <a class="moz-txt-link-abbreviated" href="mailto:tine@cde.si">tine@cde.si</a>
<a class="moz-txt-link-abbreviated" href="http://www.cde.si">www.cde.si</a>