Hi, Please any body tell me is it possible to implement internet radio with pjsip stack, we have a requirement of implementing internet radio in windows mobile and we need to broadcast thought sip stack to registered users, please suggest me any good link or material Thanks and Regards Nijaling Khot Telephone: 080-4058-7949 -----Original Message----- From: pjsip-bounces@xxxxxxxxxxxxxxx [mailto:pjsip-bounces at lists.pjsip.org] On Behalf Of pjsip-request at lists.pjsip.org Sent: Monday, May 11, 2009 10:04 PM To: pjsip at lists.pjsip.org Subject: pjsip Digest, Vol 21, Issue 32 Send pjsip mailing list submissions to pjsip at lists.pjsip.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org or, via email, send a message with subject or body 'help' to pjsip-request at lists.pjsip.org You can reach the person managing the list at pjsip-owner at lists.pjsip.org When replying, please edit your Subject line so it is more specific than "Re: Contents of pjsip digest..." Today's Topics: 1. Re: APS in PjSIP 1.1 APS Direct (Srivatsan Deenadayalan) 2. Re: FW: : Error while calling PJSUA API (Stefan Buschmann) ---------------------------------------------------------------------- Message: 1 Date: Mon, 11 May 2009 21:33:56 +0530 From: Srivatsan Deenadayalan <srivatsan@xxxxxxxxxxx> Subject: Re: APS in PjSIP 1.1 APS Direct To: pjsip list <pjsip at lists.pjsip.org> Message-ID: <4A084C6C.9020909 at ongobiz.com> Content-Type: text/plain; charset="us-ascii" An HTML attachment was scrubbed... URL: <http://lists.pjsip.org/pipermail/pjsip_lists.pjsip.org/attachments/20090511/357ad18f/attachment-0001.html> ------------------------------ Message: 2 Date: Mon, 11 May 2009 18:34:26 +0200 From: Stefan Buschmann <s_buschmann@xxxxxx> Subject: Re: FW: : Error while calling PJSUA API To: pjsip list <pjsip at lists.pjsip.org> Message-ID: <4A085392.10400 at gmx.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Senthil schrieb: > [root at hdesk4 myproject]# g++ -idirafter > /usr/src/linux/pjproject-1.2/pjlib/include -idirafter > /usr/src/linux/pjproject-1.2/pjlib-util/include -idirafter > /usr/src/linux/pjproject-1.2/pjmedia/include -idirafter > /usr/src/linux/pjproject-1.2/pjsip/include -idirafter > /usr/src/linux/pjproject-1.2/pjnath/include -o myapp2.cpp-v myapp2.cpp > Seems to me like you are only including the pjsip headers (-idirafter), but not linking against the libraries. Therefore you get unresolved symbols by the linker. After you have built pjsip, you should have static libraries flying around somewhere in your build directory (libpjsip.a, libpjsua.a etc.). Link your application against those libraries by adding them to the linker line, e.g. like this: c++ ... -lpjsip -lpjsua. Of course you have to make sure that the compiler can find those libraries, which can be done with the -L option. I suggest you to use a Makefile or higher level build scripts (like e.g. CMake) to simplify things. Compiling and linking by hand is painful ;-) The Makefile template by pjsip worked well for me and should be a good starting point. If it didn't work for you, find the reason. One possible reason could be that it did not find the path to pjsua libraries, be sure to edit it and enter the correct path. This is not really a pjsip problem but rather a C++ beginners question, which is why you didn't have great luck getting answers on this list. Perhaps you should have a deeper look into how to use libraries with C++ and ask for help e.g. on a C++ mailing list. Regards, Stefan ------------------------------ _______________________________________________ pjsip mailing list pjsip at lists.pjsip.org http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org End of pjsip Digest, Vol 21, Issue 32 ************************************* DISCLAIMER: This email (including any attachments) is intended for the sole use of the intended recipient/s and may contain material that is CONFIDENTIAL AND PRIVATE COMPANY INFORMATION. Any review or reliance by others or copying or distribution or forwarding of any or all of the contents in this message is STRICTLY PROHIBITED. If you are not the intended recipient, please contact the sender by email and delete all copies; your cooperation in this regard is appreciated.