opensipstack-devel Mailing List for OpenSIPStack (Page 28)
Brought to you by:
joegenbaclor
You can subscribe to this list here.
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(5) |
Jun
(12) |
Jul
(4) |
Aug
(3) |
Sep
(24) |
Oct
(45) |
Nov
(41) |
Dec
(67) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(51) |
Feb
(93) |
Mar
(54) |
Apr
(76) |
May
(114) |
Jun
(133) |
Jul
(124) |
Aug
(180) |
Sep
(53) |
Oct
(41) |
Nov
(109) |
Dec
(92) |
2008 |
Jan
(52) |
Feb
(40) |
Mar
(29) |
Apr
(40) |
May
(83) |
Jun
(68) |
Jul
(30) |
Aug
(72) |
Sep
(50) |
Oct
(48) |
Nov
(25) |
Dec
(80) |
2009 |
Jan
(9) |
Feb
(2) |
Mar
(32) |
Apr
(67) |
May
|
Jun
(7) |
Jul
(7) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
(6) |
Dec
(2) |
2010 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
(10) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
(1) |
Oct
|
Nov
(5) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
(5) |
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <jo...@op...> - 2008-03-17 04:49:26
|
I am not sure I fully understood what you are trying to do but for your question about OnCreateClientSession, the override for this is in RegisterSessionManager: SIPSession * RegisterSessionManager::OnCreateClientSession( const ProfileUA & profile, const OString & sessionId ) { PWaitAndSignal lock( m_SessionsMutex ); if( m_RegisterSessionsByURI.Contains( sessionId.c_str() ) ) return m_RegisterSessionsByURI.GetAt( sessionId.c_str() ); RegisterSession * regSession = new RegisterSession( *this, profile, sessionId ); regSession->EnableEncryption( m_EncryptedClientRegistrations ); OString uri = regSession->GetURI().AsString(); m_RegisterSessionsByURI.SetAt( uri.c_str(), regSession ); return regSession; } sebastian pastor wrote: > Hi, > > I'm trying to add to OSSPhone the ability of managing subscriptions but not > dialog-event type so i decided to not use RFC3265 or RFC3680 classes. > So I'm going to imitate the way OSSPhone sends REGISTERs and has an active > Registration… > A doubt has appeared when analyzing the code, particularly the flow to do a > login. I think the only method that really fill the request is > ConstructRegister (which is called from the constructor of > UACORE::RegisterSession). But the only time that an object of that class is > created is by the line *RegisterSession * regSession = > (RegisterSession*)m_OSSUserAgent->GetRegistrar()->CreateClientSession( > GetProfile(), sessionId.str() );* in OPAL::OpalOSSEndPoint and that last > method calls UACORE::SIPSessionManager::OnCreateClientSession and finally > for that method you can find: > > SIPSession * SIPSessionManager::OnCreateClientSession( > const ProfileUA & /*profile*/, > const OString & /*sessionId*/ > ) > { > */// since we dont know what client session to create > /// we must force implementors to return their own descendant here > * PAssertAlways( PUnimplementedFunction ); > *return NULL; > *} > > So I thought that finally that regSession object is not created and NULL is > returned. > But my surprise is that, of course, the request is constructed properly and > the OSSPhone application gets registered to a SIP Server when pressing Login > button. > What is missing in my analysis??? > > I created an structure of classes similar to that one for registration > sessions but for subscriptions and instead of sending SUBSCRIBEs it still > sends REGISTERs!!… I'm going bananas. > > Thanks in advance. > Best Regards, > > -Sebastian- > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > |
From: sebastian p. <seb...@gm...> - 2008-03-16 20:06:15
|
Hi, I'm trying to add to OSSPhone the ability of managing subscriptions but not dialog-event type so i decided to not use RFC3265 or RFC3680 classes. So I'm going to imitate the way OSSPhone sends REGISTERs and has an active Registration… A doubt has appeared when analyzing the code, particularly the flow to do a login. I think the only method that really fill the request is ConstructRegister (which is called from the constructor of UACORE::RegisterSession). But the only time that an object of that class is created is by the line *RegisterSession * regSession = (RegisterSession*)m_OSSUserAgent->GetRegistrar()->CreateClientSession( GetProfile(), sessionId.str() );* in OPAL::OpalOSSEndPoint and that last method calls UACORE::SIPSessionManager::OnCreateClientSession and finally for that method you can find: SIPSession * SIPSessionManager::OnCreateClientSession( const ProfileUA & /*profile*/, const OString & /*sessionId*/ ) { */// since we dont know what client session to create /// we must force implementors to return their own descendant here * PAssertAlways( PUnimplementedFunction ); *return NULL; *} So I thought that finally that regSession object is not created and NULL is returned. But my surprise is that, of course, the request is constructed properly and the OSSPhone application gets registered to a SIP Server when pressing Login button. What is missing in my analysis??? I created an structure of classes similar to that one for registration sessions but for subscriptions and instead of sending SUBSCRIBEs it still sends REGISTERs!!… I'm going bananas. Thanks in advance. Best Regards, -Sebastian- |
From: Robert V. <ro...@dc...> - 2008-03-14 13:08:08
|
Ok, So i got the source from the CSV (OpenSipStack and ATLSIP) and I have the same errors. Using dependency walker, the exported functions is now listed at least. The "module not found" error returned by regsvr32 seems to indicate on a missing dependency? The three listed are: LIBVPB.DLL; MSVCR80.DLL; DWMAPI.DLL. If this is the case, where would I be able to find the files? Regards, Robert Vos ----- Original Message ----- From: "Ilian Jeri C. Pinzon" <ip...@so...> To: <ope...@li...> Sent: Friday, March 14, 2008 1:14 PM Subject: Re: [OpenSIPStack] ATLSIP compiling issues > Yep. You should. The downloads section is not updated yet. Sorry for that. > > Regards, > Ilian > > Robert Vos wrote: >> Ilian, >> >> I got the code from http://www.opensipstack.org/downloads.html. >> >> Should I rather get the code from the CVS? >> >> Regards, >> Robert >> >> ----- Original Message ----- >> From: "Ilian Jeri C. Pinzon" <ip...@so...> >> To: <ope...@li...> >> Sent: Friday, March 14, 2008 12:07 PM >> Subject: Re: [OpenSIPStack] ATLSIP compiling issues >> >> >> >>> Hi, >>> >>> Robert Vos wrote: >>> >>>> Hi, >>>> >>>> I am having lots of issues regarding atlsip dll's. When I compile the >>>> solution (using MVS 2005) the dll gets created. When I then attempt to >>>> register the dll, I get an error: Module not found. (The dll that comes >>>> with >>>> the OOS phone binary registers fine, and I have successfully used it in >>>> my >>>> own test app.). Attempting to register the AxInterop.ATLSIPLib.1.0.dll >>>> returns with error: Module was loaded, but the DllRegisterServer entry >>>> point >>>> was not found. >>>> >>>> >>> You don't need to register the Interop dlls. Just ATLSIP.dll. The >>> Interop dlls are used by .NET projects. You can look at a reference C++ >>> .NET project at OSSPhone\vc80 project under ATLSIP. >>> >>> Did you get your code from CVS head? Building the project from there >>> should be easy. >>> >>> Regards, >>> Ilian >>> >>>> Running Dependency walker on the dll's gives: >>>> >>>> Release build: ATLSIP.dll (Does not register) >>>> >>>> Modules missing: LIBVPB.dll >>>> MSVCR80.dll >>>> DWMAPI.dll >>>> >>>> OSS Binary release ATLSIP.dll (Registers fine) >>>> >>>> Modules missing: MSVCR80.dll >>>> DWMAPI.dll >>>> >>>> AxInterop.ATLSIPLib.1.0.dll >>>> >>>> Modules missing: DWMAPI.dll >>>> Also, the required dll exported functions are not listed in the >>>> exported >>>> functions list (it is empty) >>>> >>>> >>>> Could this LIBVPB.dll be the problem? If it is, where would I find it? >>>> If >>>> not, is it perhaps my developing platform? >>>> >>>> Sorry to keep bugging with questions, but I really have no idea how to >>>> tackle this problem >>>> >>>> Regards, >>>> Robert Vos >>>> >>>> ----- Original Message ----- >>>> From: "Joegen E. Baclor" <joe...@gm...> >>>> To: <ope...@li...> >>>> Sent: Friday, March 14, 2008 4:44 AM >>>> Subject: Re: [OpenSIPStack] DLL Compile? >>>> >>>> >>>> >>>> >>>>> Try running dependency walker against the DLL. you might be missing >>>>> some of them. >>>>> >>>>> http://www.dependencywalker.com/ >>>>> >>>>> >>>>> Robert Vos wrote: >>>>> >>>>> >>>>>> Hi, >>>>>> >>>>>> It's me again. I'm getting an error when I atemp to compile ATLSIP. >>>>>> >>>>>> It compiles and creates the ATLSIP.dll. but then exits with: >>>>>> >>>>>> Performing registration >>>>>> >>>>>> 2>Project : error PRJ0019: A tool returned an error code from >>>>>> "Performing >>>>>> registration" >>>>>> >>>>>> 2>Build log was saved at "file://e:\Werk\Sip\Open >>>>>> Source\OpenSipStack\atlsip\Release\BuildLog.htm" >>>>>> >>>>>> 2>ATLSIP - 1 error(s), 63 warning(s) >>>>>> >>>>>> ========== Rebuild All: 1 succeeded, 1 failed, 0 skipped ========== >>>>>> >>>>>> >>>>>> If then attempt to use regsvr32 on the dll, it returns with an error >>>>>> that >>>>>> the module can not be found. >>>>>> >>>>>> Any ideas? >>>>>> >>>>>> Regards, >>>>>> Robert >>>>>> >>>>>> >>>>>> ------------------------------------------------------------------------- >>>>>> This SF.net email is sponsored by: Microsoft >>>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>>>> _______________________________________________ >>>>>> opensipstack-devel mailing list >>>>>> ope...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>> ------------------------------------------------------------------------- >>>>> This SF.net email is sponsored by: Microsoft >>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>>> _______________________________________________ >>>>> opensipstack-devel mailing list >>>>> ope...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>> >>>>> >>>> ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel |
From: Robert V. <ro...@dc...> - 2008-03-14 11:21:41
|
Ok, thanks! Regards, Robert ----- Original Message ----- From: "Ilian Jeri C. Pinzon" <ip...@so...> To: <ope...@li...> Sent: Friday, March 14, 2008 1:14 PM Subject: Re: [OpenSIPStack] ATLSIP compiling issues > Yep. You should. The downloads section is not updated yet. Sorry for that. > > Regards, > Ilian > > Robert Vos wrote: >> Ilian, >> >> I got the code from http://www.opensipstack.org/downloads.html. >> >> Should I rather get the code from the CVS? >> >> Regards, >> Robert >> >> ----- Original Message ----- >> From: "Ilian Jeri C. Pinzon" <ip...@so...> >> To: <ope...@li...> >> Sent: Friday, March 14, 2008 12:07 PM >> Subject: Re: [OpenSIPStack] ATLSIP compiling issues >> >> >> >>> Hi, >>> >>> Robert Vos wrote: >>> >>>> Hi, >>>> >>>> I am having lots of issues regarding atlsip dll's. When I compile the >>>> solution (using MVS 2005) the dll gets created. When I then attempt to >>>> register the dll, I get an error: Module not found. (The dll that comes >>>> with >>>> the OOS phone binary registers fine, and I have successfully used it in >>>> my >>>> own test app.). Attempting to register the AxInterop.ATLSIPLib.1.0.dll >>>> returns with error: Module was loaded, but the DllRegisterServer entry >>>> point >>>> was not found. >>>> >>>> >>> You don't need to register the Interop dlls. Just ATLSIP.dll. The >>> Interop dlls are used by .NET projects. You can look at a reference C++ >>> .NET project at OSSPhone\vc80 project under ATLSIP. >>> >>> Did you get your code from CVS head? Building the project from there >>> should be easy. >>> >>> Regards, >>> Ilian >>> >>>> Running Dependency walker on the dll's gives: >>>> >>>> Release build: ATLSIP.dll (Does not register) >>>> >>>> Modules missing: LIBVPB.dll >>>> MSVCR80.dll >>>> DWMAPI.dll >>>> >>>> OSS Binary release ATLSIP.dll (Registers fine) >>>> >>>> Modules missing: MSVCR80.dll >>>> DWMAPI.dll >>>> >>>> AxInterop.ATLSIPLib.1.0.dll >>>> >>>> Modules missing: DWMAPI.dll >>>> Also, the required dll exported functions are not listed in the >>>> exported >>>> functions list (it is empty) >>>> >>>> >>>> Could this LIBVPB.dll be the problem? If it is, where would I find it? >>>> If >>>> not, is it perhaps my developing platform? >>>> >>>> Sorry to keep bugging with questions, but I really have no idea how to >>>> tackle this problem >>>> >>>> Regards, >>>> Robert Vos >>>> >>>> ----- Original Message ----- >>>> From: "Joegen E. Baclor" <joe...@gm...> >>>> To: <ope...@li...> >>>> Sent: Friday, March 14, 2008 4:44 AM >>>> Subject: Re: [OpenSIPStack] DLL Compile? >>>> >>>> >>>> >>>> >>>>> Try running dependency walker against the DLL. you might be missing >>>>> some of them. >>>>> >>>>> http://www.dependencywalker.com/ >>>>> >>>>> >>>>> Robert Vos wrote: >>>>> >>>>> >>>>>> Hi, >>>>>> >>>>>> It's me again. I'm getting an error when I atemp to compile ATLSIP. >>>>>> >>>>>> It compiles and creates the ATLSIP.dll. but then exits with: >>>>>> >>>>>> Performing registration >>>>>> >>>>>> 2>Project : error PRJ0019: A tool returned an error code from >>>>>> "Performing >>>>>> registration" >>>>>> >>>>>> 2>Build log was saved at "file://e:\Werk\Sip\Open >>>>>> Source\OpenSipStack\atlsip\Release\BuildLog.htm" >>>>>> >>>>>> 2>ATLSIP - 1 error(s), 63 warning(s) >>>>>> >>>>>> ========== Rebuild All: 1 succeeded, 1 failed, 0 skipped ========== >>>>>> >>>>>> >>>>>> If then attempt to use regsvr32 on the dll, it returns with an error >>>>>> that >>>>>> the module can not be found. >>>>>> >>>>>> Any ideas? >>>>>> >>>>>> Regards, >>>>>> Robert >>>>>> >>>>>> >>>>>> ------------------------------------------------------------------------- >>>>>> This SF.net email is sponsored by: Microsoft >>>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>>>> _______________________________________________ >>>>>> opensipstack-devel mailing list >>>>>> ope...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>> ------------------------------------------------------------------------- >>>>> This SF.net email is sponsored by: Microsoft >>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>>> _______________________________________________ >>>>> opensipstack-devel mailing list >>>>> ope...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>> >>>>> >>>> ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel |
From: Ilian J. C. P. <ip...@so...> - 2008-03-14 11:14:10
|
Yep. You should. The downloads section is not updated yet. Sorry for that. Regards, Ilian Robert Vos wrote: > Ilian, > > I got the code from http://www.opensipstack.org/downloads.html. > > Should I rather get the code from the CVS? > > Regards, > Robert > > ----- Original Message ----- > From: "Ilian Jeri C. Pinzon" <ip...@so...> > To: <ope...@li...> > Sent: Friday, March 14, 2008 12:07 PM > Subject: Re: [OpenSIPStack] ATLSIP compiling issues > > > >> Hi, >> >> Robert Vos wrote: >> >>> Hi, >>> >>> I am having lots of issues regarding atlsip dll's. When I compile the >>> solution (using MVS 2005) the dll gets created. When I then attempt to >>> register the dll, I get an error: Module not found. (The dll that comes >>> with >>> the OOS phone binary registers fine, and I have successfully used it in >>> my >>> own test app.). Attempting to register the AxInterop.ATLSIPLib.1.0.dll >>> returns with error: Module was loaded, but the DllRegisterServer entry >>> point >>> was not found. >>> >>> >> You don't need to register the Interop dlls. Just ATLSIP.dll. The >> Interop dlls are used by .NET projects. You can look at a reference C++ >> .NET project at OSSPhone\vc80 project under ATLSIP. >> >> Did you get your code from CVS head? Building the project from there >> should be easy. >> >> Regards, >> Ilian >> >>> Running Dependency walker on the dll's gives: >>> >>> Release build: ATLSIP.dll (Does not register) >>> >>> Modules missing: LIBVPB.dll >>> MSVCR80.dll >>> DWMAPI.dll >>> >>> OSS Binary release ATLSIP.dll (Registers fine) >>> >>> Modules missing: MSVCR80.dll >>> DWMAPI.dll >>> >>> AxInterop.ATLSIPLib.1.0.dll >>> >>> Modules missing: DWMAPI.dll >>> Also, the required dll exported functions are not listed in the exported >>> functions list (it is empty) >>> >>> >>> Could this LIBVPB.dll be the problem? If it is, where would I find it? >>> If >>> not, is it perhaps my developing platform? >>> >>> Sorry to keep bugging with questions, but I really have no idea how to >>> tackle this problem >>> >>> Regards, >>> Robert Vos >>> >>> ----- Original Message ----- >>> From: "Joegen E. Baclor" <joe...@gm...> >>> To: <ope...@li...> >>> Sent: Friday, March 14, 2008 4:44 AM >>> Subject: Re: [OpenSIPStack] DLL Compile? >>> >>> >>> >>> >>>> Try running dependency walker against the DLL. you might be missing >>>> some of them. >>>> >>>> http://www.dependencywalker.com/ >>>> >>>> >>>> Robert Vos wrote: >>>> >>>> >>>>> Hi, >>>>> >>>>> It's me again. I'm getting an error when I atemp to compile ATLSIP. >>>>> >>>>> It compiles and creates the ATLSIP.dll. but then exits with: >>>>> >>>>> Performing registration >>>>> >>>>> 2>Project : error PRJ0019: A tool returned an error code from >>>>> "Performing >>>>> registration" >>>>> >>>>> 2>Build log was saved at "file://e:\Werk\Sip\Open >>>>> Source\OpenSipStack\atlsip\Release\BuildLog.htm" >>>>> >>>>> 2>ATLSIP - 1 error(s), 63 warning(s) >>>>> >>>>> ========== Rebuild All: 1 succeeded, 1 failed, 0 skipped ========== >>>>> >>>>> >>>>> If then attempt to use regsvr32 on the dll, it returns with an error >>>>> that >>>>> the module can not be found. >>>>> >>>>> Any ideas? >>>>> >>>>> Regards, >>>>> Robert >>>>> >>>>> >>>>> ------------------------------------------------------------------------- >>>>> This SF.net email is sponsored by: Microsoft >>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>>> _______________________________________________ >>>>> opensipstack-devel mailing list >>>>> ope...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>> >>>>> >>>>> >>>>> >>>>> >>>> ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Robert V. <ro...@dc...> - 2008-03-14 10:25:34
|
Ilian, I got the code from http://www.opensipstack.org/downloads.html. Should I rather get the code from the CVS? Regards, Robert ----- Original Message ----- From: "Ilian Jeri C. Pinzon" <ip...@so...> To: <ope...@li...> Sent: Friday, March 14, 2008 12:07 PM Subject: Re: [OpenSIPStack] ATLSIP compiling issues > Hi, > > Robert Vos wrote: >> Hi, >> >> I am having lots of issues regarding atlsip dll's. When I compile the >> solution (using MVS 2005) the dll gets created. When I then attempt to >> register the dll, I get an error: Module not found. (The dll that comes >> with >> the OOS phone binary registers fine, and I have successfully used it in >> my >> own test app.). Attempting to register the AxInterop.ATLSIPLib.1.0.dll >> returns with error: Module was loaded, but the DllRegisterServer entry >> point >> was not found. >> > You don't need to register the Interop dlls. Just ATLSIP.dll. The > Interop dlls are used by .NET projects. You can look at a reference C++ > .NET project at OSSPhone\vc80 project under ATLSIP. > > Did you get your code from CVS head? Building the project from there > should be easy. > > Regards, > Ilian >> Running Dependency walker on the dll's gives: >> >> Release build: ATLSIP.dll (Does not register) >> >> Modules missing: LIBVPB.dll >> MSVCR80.dll >> DWMAPI.dll >> >> OSS Binary release ATLSIP.dll (Registers fine) >> >> Modules missing: MSVCR80.dll >> DWMAPI.dll >> >> AxInterop.ATLSIPLib.1.0.dll >> >> Modules missing: DWMAPI.dll >> Also, the required dll exported functions are not listed in the exported >> functions list (it is empty) >> >> >> Could this LIBVPB.dll be the problem? If it is, where would I find it? >> If >> not, is it perhaps my developing platform? >> >> Sorry to keep bugging with questions, but I really have no idea how to >> tackle this problem >> >> Regards, >> Robert Vos >> >> ----- Original Message ----- >> From: "Joegen E. Baclor" <joe...@gm...> >> To: <ope...@li...> >> Sent: Friday, March 14, 2008 4:44 AM >> Subject: Re: [OpenSIPStack] DLL Compile? >> >> >> >>> Try running dependency walker against the DLL. you might be missing >>> some of them. >>> >>> http://www.dependencywalker.com/ >>> >>> >>> Robert Vos wrote: >>> >>>> Hi, >>>> >>>> It's me again. I'm getting an error when I atemp to compile ATLSIP. >>>> >>>> It compiles and creates the ATLSIP.dll. but then exits with: >>>> >>>> Performing registration >>>> >>>> 2>Project : error PRJ0019: A tool returned an error code from >>>> "Performing >>>> registration" >>>> >>>> 2>Build log was saved at "file://e:\Werk\Sip\Open >>>> Source\OpenSipStack\atlsip\Release\BuildLog.htm" >>>> >>>> 2>ATLSIP - 1 error(s), 63 warning(s) >>>> >>>> ========== Rebuild All: 1 succeeded, 1 failed, 0 skipped ========== >>>> >>>> >>>> If then attempt to use regsvr32 on the dll, it returns with an error >>>> that >>>> the module can not be found. >>>> >>>> Any ideas? >>>> >>>> Regards, >>>> Robert >>>> >>>> >>>> ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel |
From: Ilian J. C. P. <ip...@so...> - 2008-03-14 10:07:39
|
Hi, Robert Vos wrote: > Hi, > > I am having lots of issues regarding atlsip dll's. When I compile the > solution (using MVS 2005) the dll gets created. When I then attempt to > register the dll, I get an error: Module not found. (The dll that comes with > the OOS phone binary registers fine, and I have successfully used it in my > own test app.). Attempting to register the AxInterop.ATLSIPLib.1.0.dll > returns with error: Module was loaded, but the DllRegisterServer entry point > was not found. > You don't need to register the Interop dlls. Just ATLSIP.dll. The Interop dlls are used by .NET projects. You can look at a reference C++ .NET project at OSSPhone\vc80 project under ATLSIP. Did you get your code from CVS head? Building the project from there should be easy. Regards, Ilian > Running Dependency walker on the dll's gives: > > Release build: ATLSIP.dll (Does not register) > > Modules missing: LIBVPB.dll > MSVCR80.dll > DWMAPI.dll > > OSS Binary release ATLSIP.dll (Registers fine) > > Modules missing: MSVCR80.dll > DWMAPI.dll > > AxInterop.ATLSIPLib.1.0.dll > > Modules missing: DWMAPI.dll > Also, the required dll exported functions are not listed in the exported > functions list (it is empty) > > > Could this LIBVPB.dll be the problem? If it is, where would I find it? If > not, is it perhaps my developing platform? > > Sorry to keep bugging with questions, but I really have no idea how to > tackle this problem > > Regards, > Robert Vos > > ----- Original Message ----- > From: "Joegen E. Baclor" <joe...@gm...> > To: <ope...@li...> > Sent: Friday, March 14, 2008 4:44 AM > Subject: Re: [OpenSIPStack] DLL Compile? > > > >> Try running dependency walker against the DLL. you might be missing >> some of them. >> >> http://www.dependencywalker.com/ >> >> >> Robert Vos wrote: >> >>> Hi, >>> >>> It's me again. I'm getting an error when I atemp to compile ATLSIP. >>> >>> It compiles and creates the ATLSIP.dll. but then exits with: >>> >>> Performing registration >>> >>> 2>Project : error PRJ0019: A tool returned an error code from "Performing >>> registration" >>> >>> 2>Build log was saved at "file://e:\Werk\Sip\Open >>> Source\OpenSipStack\atlsip\Release\BuildLog.htm" >>> >>> 2>ATLSIP - 1 error(s), 63 warning(s) >>> >>> ========== Rebuild All: 1 succeeded, 1 failed, 0 skipped ========== >>> >>> >>> If then attempt to use regsvr32 on the dll, it returns with an error that >>> the module can not be found. >>> >>> Any ideas? >>> >>> Regards, >>> Robert >>> >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Robert V. <ro...@dc...> - 2008-03-14 09:58:10
|
Hi, I am having lots of issues regarding atlsip dll's. When I compile the solution (using MVS 2005) the dll gets created. When I then attempt to register the dll, I get an error: Module not found. (The dll that comes with the OOS phone binary registers fine, and I have successfully used it in my own test app.). Attempting to register the AxInterop.ATLSIPLib.1.0.dll returns with error: Module was loaded, but the DllRegisterServer entry point was not found. Running Dependency walker on the dll's gives: Release build: ATLSIP.dll (Does not register) Modules missing: LIBVPB.dll MSVCR80.dll DWMAPI.dll OSS Binary release ATLSIP.dll (Registers fine) Modules missing: MSVCR80.dll DWMAPI.dll AxInterop.ATLSIPLib.1.0.dll Modules missing: DWMAPI.dll Also, the required dll exported functions are not listed in the exported functions list (it is empty) Could this LIBVPB.dll be the problem? If it is, where would I find it? If not, is it perhaps my developing platform? Sorry to keep bugging with questions, but I really have no idea how to tackle this problem Regards, Robert Vos ----- Original Message ----- From: "Joegen E. Baclor" <joe...@gm...> To: <ope...@li...> Sent: Friday, March 14, 2008 4:44 AM Subject: Re: [OpenSIPStack] DLL Compile? > > Try running dependency walker against the DLL. you might be missing > some of them. > > http://www.dependencywalker.com/ > > > Robert Vos wrote: >> Hi, >> >> It's me again. I'm getting an error when I atemp to compile ATLSIP. >> >> It compiles and creates the ATLSIP.dll. but then exits with: >> >> Performing registration >> >> 2>Project : error PRJ0019: A tool returned an error code from "Performing >> registration" >> >> 2>Build log was saved at "file://e:\Werk\Sip\Open >> Source\OpenSipStack\atlsip\Release\BuildLog.htm" >> >> 2>ATLSIP - 1 error(s), 63 warning(s) >> >> ========== Rebuild All: 1 succeeded, 1 failed, 0 skipped ========== >> >> >> If then attempt to use regsvr32 on the dll, it returns with an error that >> the module can not be found. >> >> Any ideas? >> >> Regards, >> Robert >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel |
From: Joegen E. B. <joe...@gm...> - 2008-03-14 02:44:53
|
Try running dependency walker against the DLL. you might be missing some of them. http://www.dependencywalker.com/ Robert Vos wrote: > Hi, > > It's me again. I'm getting an error when I atemp to compile ATLSIP. > > It compiles and creates the ATLSIP.dll. but then exits with: > > Performing registration > > 2>Project : error PRJ0019: A tool returned an error code from "Performing > registration" > > 2>Build log was saved at "file://e:\Werk\Sip\Open > Source\OpenSipStack\atlsip\Release\BuildLog.htm" > > 2>ATLSIP - 1 error(s), 63 warning(s) > > ========== Rebuild All: 1 succeeded, 1 failed, 0 skipped ========== > > > If then attempt to use regsvr32 on the dll, it returns with an error that > the module can not be found. > > Any ideas? > > Regards, > Robert > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Robert V. <ro...@dc...> - 2008-03-13 09:47:52
|
Hi, It's me again. I'm getting an error when I atemp to compile ATLSIP. It compiles and creates the ATLSIP.dll. but then exits with: Performing registration 2>Project : error PRJ0019: A tool returned an error code from "Performing registration" 2>Build log was saved at "file://e:\Werk\Sip\Open Source\OpenSipStack\atlsip\Release\BuildLog.htm" 2>ATLSIP - 1 error(s), 63 warning(s) ========== Rebuild All: 1 succeeded, 1 failed, 0 skipped ========== If then attempt to use regsvr32 on the dll, it returns with an error that the module can not be found. Any ideas? Regards, Robert |
From: Joegen E. B. <joe...@gm...> - 2008-03-12 09:54:53
|
I know people who were able to use the DLL in delphi. Aparently delphi supports COM components which is what ATLSIP is. You may download the code from cvs using atlsip as the module. Robert Vos wrote: > Ilian, > > Thanks for the info. I'm going to use Delphi, so the ALTSIP.dll should work > fine? Moving over to .NET later down the line though, so could you perhaps > just tell me where I can find the code for the .NET dll's? > > Regards, > Robert Vos > > ----- Original Message ----- > From: "Ilian Jeri C. Pinzon" <ip...@so...> > To: <ope...@li...> > Sent: Wednesday, March 12, 2008 11:11 AM > Subject: Re: [OpenSIPStack] DLL Compile? > > > >> Robert Vos wrote: >> >>> Hi, >>> >>> Not to be a bother, but just a quick Q. The ALTSIP.dll created from the >>> >>> >> If you're using C++ only, ATLSIP.dll will do fine for you. The dlls >> below are .NET versions. >> >> >>> ALTSIP project, is this the same as the AxInterop.ATLSIPLib.dll or the >>> Interop.ATLSIPLib.dll used in the OSSPhone project? >>> >>> If not, where is the code for the OSSPhone dll's located? >>> >>> Regards, >>> Robert Vos >>> >>> ----- Original Message ----- >>> From: "Joegen E. Baclor" <joe...@gm...> >>> To: <ope...@op...>; >>> <ope...@li...> >>> Sent: Tuesday, March 11, 2008 12:34 PM >>> Subject: Re: [OpenSIPStack] DLL Compile? >>> >>> >>> >>> >>>> Hi Robert, >>>> >>>> OpenSIPStack windows build is only available as a static library at this >>>> point. Of course you may painstakingly DLLEXPORT the classes but that >>>> will be quite a challenge. Your best bet would be to implement a >>>> simple wrapper just like the SoftPhoneInterface for the ATLSIP COM DLL. >>>> >>>> Joegen >>>> >>>> ope...@op... wrote: >>>> >>>> >>>>> Hi, >>>>> >>>>> Has anyone managed to compile the OpenSipStack to dll? I am trying to >>>>> do >>>>> so, but have had no luck. I have also not been able to find a solution >>>>> to convert .lib to .dll that I have been able to do. >>>>> >>>>> Any help will REALY be apretiated. >>>>> >>>>> Regards, >>>>> >>>>> Robert Vos >>>>> >>>>> ------------------------------------------------------------------------- >>>>> This SF.net email is sponsored by: Microsoft >>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>>> _______________________________________________ >>>>> opensipstack-devel mailing list >>>>> ope...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>> >>>>> >>>>> >>>>> >>>>> >>>> ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Robert V. <ro...@dc...> - 2008-03-12 09:30:48
|
Ilian, Thanks for the info. I'm going to use Delphi, so the ALTSIP.dll should work fine? Moving over to .NET later down the line though, so could you perhaps just tell me where I can find the code for the .NET dll's? Regards, Robert Vos ----- Original Message ----- From: "Ilian Jeri C. Pinzon" <ip...@so...> To: <ope...@li...> Sent: Wednesday, March 12, 2008 11:11 AM Subject: Re: [OpenSIPStack] DLL Compile? > Robert Vos wrote: >> Hi, >> >> Not to be a bother, but just a quick Q. The ALTSIP.dll created from the >> > If you're using C++ only, ATLSIP.dll will do fine for you. The dlls > below are .NET versions. > >> ALTSIP project, is this the same as the AxInterop.ATLSIPLib.dll or the >> Interop.ATLSIPLib.dll used in the OSSPhone project? >> >> If not, where is the code for the OSSPhone dll's located? >> >> Regards, >> Robert Vos >> >> ----- Original Message ----- >> From: "Joegen E. Baclor" <joe...@gm...> >> To: <ope...@op...>; >> <ope...@li...> >> Sent: Tuesday, March 11, 2008 12:34 PM >> Subject: Re: [OpenSIPStack] DLL Compile? >> >> >> >>> Hi Robert, >>> >>> OpenSIPStack windows build is only available as a static library at this >>> point. Of course you may painstakingly DLLEXPORT the classes but that >>> will be quite a challenge. Your best bet would be to implement a >>> simple wrapper just like the SoftPhoneInterface for the ATLSIP COM DLL. >>> >>> Joegen >>> >>> ope...@op... wrote: >>> >>>> Hi, >>>> >>>> Has anyone managed to compile the OpenSipStack to dll? I am trying to >>>> do >>>> so, but have had no luck. I have also not been able to find a solution >>>> to convert .lib to .dll that I have been able to do. >>>> >>>> Any help will REALY be apretiated. >>>> >>>> Regards, >>>> >>>> Robert Vos >>>> >>>> ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel |
From: Ilian J. C. P. <ip...@so...> - 2008-03-12 09:11:34
|
Robert Vos wrote: > Hi, > > Not to be a bother, but just a quick Q. The ALTSIP.dll created from the > If you're using C++ only, ATLSIP.dll will do fine for you. The dlls below are .NET versions. > ALTSIP project, is this the same as the AxInterop.ATLSIPLib.dll or the > Interop.ATLSIPLib.dll used in the OSSPhone project? > > If not, where is the code for the OSSPhone dll's located? > > Regards, > Robert Vos > > ----- Original Message ----- > From: "Joegen E. Baclor" <joe...@gm...> > To: <ope...@op...>; > <ope...@li...> > Sent: Tuesday, March 11, 2008 12:34 PM > Subject: Re: [OpenSIPStack] DLL Compile? > > > >> Hi Robert, >> >> OpenSIPStack windows build is only available as a static library at this >> point. Of course you may painstakingly DLLEXPORT the classes but that >> will be quite a challenge. Your best bet would be to implement a >> simple wrapper just like the SoftPhoneInterface for the ATLSIP COM DLL. >> >> Joegen >> >> ope...@op... wrote: >> >>> Hi, >>> >>> Has anyone managed to compile the OpenSipStack to dll? I am trying to do >>> so, but have had no luck. I have also not been able to find a solution >>> to convert .lib to .dll that I have been able to do. >>> >>> Any help will REALY be apretiated. >>> >>> Regards, >>> >>> Robert Vos >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Robert V. <ro...@dc...> - 2008-03-12 08:34:54
|
Hi, Not to be a bother, but just a quick Q. The ALTSIP.dll created from the ALTSIP project, is this the same as the AxInterop.ATLSIPLib.dll or the Interop.ATLSIPLib.dll used in the OSSPhone project? If not, where is the code for the OSSPhone dll's located? Regards, Robert Vos ----- Original Message ----- From: "Joegen E. Baclor" <joe...@gm...> To: <ope...@op...>; <ope...@li...> Sent: Tuesday, March 11, 2008 12:34 PM Subject: Re: [OpenSIPStack] DLL Compile? > Hi Robert, > > OpenSIPStack windows build is only available as a static library at this > point. Of course you may painstakingly DLLEXPORT the classes but that > will be quite a challenge. Your best bet would be to implement a > simple wrapper just like the SoftPhoneInterface for the ATLSIP COM DLL. > > Joegen > > ope...@op... wrote: >> Hi, >> >> Has anyone managed to compile the OpenSipStack to dll? I am trying to do >> so, but have had no luck. I have also not been able to find a solution >> to convert .lib to .dll that I have been able to do. >> >> Any help will REALY be apretiated. >> >> Regards, >> >> Robert Vos >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel |
From: Robert V. <ro...@dc...> - 2008-03-11 10:43:14
|
Ok, Thanks for the quick reply! Guess I'll need to slog it out with my zero C++ knowledge ... I suppose it can't be that difficult to copy the SoftPhoneInterface method. Regards, Robert ----- Original Message ----- From: "Joegen E. Baclor" <joe...@gm...> To: <ope...@op...>; <ope...@li...> Sent: Tuesday, March 11, 2008 12:34 PM Subject: Re: [OpenSIPStack] DLL Compile? > Hi Robert, > > OpenSIPStack windows build is only available as a static library at this > point. Of course you may painstakingly DLLEXPORT the classes but that > will be quite a challenge. Your best bet would be to implement a > simple wrapper just like the SoftPhoneInterface for the ATLSIP COM DLL. > > Joegen > > ope...@op... wrote: >> Hi, >> >> Has anyone managed to compile the OpenSipStack to dll? I am trying to do >> so, but have had no luck. I have also not been able to find a solution >> to convert .lib to .dll that I have been able to do. >> >> Any help will REALY be apretiated. >> >> Regards, >> >> Robert Vos >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel |
From: Joegen E. B. <joe...@gm...> - 2008-03-11 10:34:18
|
Hi Robert, OpenSIPStack windows build is only available as a static library at this point. Of course you may painstakingly DLLEXPORT the classes but that will be quite a challenge. Your best bet would be to implement a simple wrapper just like the SoftPhoneInterface for the ATLSIP COM DLL. Joegen ope...@op... wrote: > Hi, > > Has anyone managed to compile the OpenSipStack to dll? I am trying to do so, but have had no luck. I have also not been able to find a solution to convert .lib to .dll that I have been able to do. > > Any help will REALY be apretiated. > > Regards, > > Robert Vos > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: <ope...@op...> - 2008-03-11 10:09:20
|
Hi, Has anyone managed to compile the OpenSipStack to dll? I am trying to do so, but have had no luck. I have also not been able to find a solution to convert .lib to .dll that I have been able to do. Any help will REALY be apretiated. Regards, Robert Vos |
From: Vamsee k. <vam...@gm...> - 2008-02-29 06:54:51
|
To subscribe the digest -- Vamsee Krishna.N.S. |
From: Joegen E. B. <joe...@gm...> - 2008-02-27 12:10:46
|
Hi, Download ATLSIP module from CVS and take a look at the OSSPhone sample. The SoftphoneInterface class is a complete softphone implementation. All you need to do is to subclass it and override the various virtual methods starting with the Event keyword. virtual void Event_IncomingCall( const OString & eventInfo = OString::Empty() ) = 0; virtual void Event_OutgoingCallRinging( const OString & eventInfo = OString::Empty() ) = 0; The OSSPhone sample shows the basics how to implement these callbacks. Joegen ope...@op... wrote: > Hi, > > > I am looking for some form of documentation on how to go about writing a simple softphone app with OpenSIPStack. Just simple steps to take from compiling to through to final product. Things like what objects need to be initialized and in what order they are needed. > > > Any help wil be apretiated. > > > Regards, > > > Robert Vos > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: <ope...@op...> - 2008-02-27 07:13:14
|
Hi, I am looking for some form of documentation on how to go about writing a simple softphone app with OpenSIPStack. Just simple steps to take from compiling to through to final product. Things like what objects need to be initialized and in what order they are needed. Any help wil be apretiated. Regards, Robert Vos |
From: <jo...@op...> - 2008-02-23 00:38:27
|
Hikmet Cengiz wrote: > Hi Joegen, > > I can have OpenSBC to register to our usual SIP Server for a couple of > accounts using sip trunk config. This part is fine. > > However, I'm confused what the *config parameters for the softphone* should > be (UserID, AccountID, Password, Registrar and outboundProxy) to use these > trunk accounts. > > Based on this sample xml: > > <siptrunk trunk-name="mysipserver.com" route-set="mysipserver.com" > sip-domain="mysipserver.com" expires="10"> > > <trunk-accounts> > > <account user-name="1001" auth-user-name="1001" auth-password="1001" > inboundroute="sip:90...@ex..." expires="3600" />.... > For instance, this one is not working... > The inbound route maps 10...@my... to 90...@ex... In the above example, it is assumed that example.solegy.com is a host that resolves to the OpenSBC main trunk. > SOFTPHONE CONFIG: > UserID: 1001 > AccountID: 1001 > Password: 1001 > Registrar: example.solegy.com > OutboundProxy: localhost > You must register your softphone as 9001 not 1001. Be sure that 9001 has an account configured in Local Domain accounts. > Thanks... > Hikmet Cengiz > > On Tue, Feb 19, 2008 at 6:57 AM, jo...@op... < > joe...@gm...> wrote: > > >> Hikmet Cengiz wrote: >> >>> Thanks Joegen! >>> >>> So if SIP Trunking is meant for enabling multiple UA purpose, it would >>> >> be a >> >>> great idea to use openSBC and atlsip all together in my application. >>> >>> -As SIP Trunking is a new term for me, could you please give an example >>> >> how >> >>> to configure OpenSBC SIP Trunk? (Would normally not ask this question, >>> >> but >> >>> could not find a specific page at OpenSBC HTTP Admin site) >>> >>> >> There is a short tutorial here about SIP trunks >> http://www.opensourcesip.org:8080/clearspacex/docs/DOC-1040 >> >> CAVEAT: when pasting the XML onto HTTP admin, make sure you enclose it >> with <root> </root> or the XML parser won't recognize your config >> >>> -And instead of registering to my usual SIP Server, do I have to >>> >> register to >> >>> my local OpenSBC in this case? >>> >> Yes. You register to OpenSBC and let OpenSBC register on your behalf to >> the SIP provider. >> >> >>> How will the atlsip instance identify each >>> user? >>> >>> >> You may need to modify OpenSBC a bit and add a custom header that would >> preserve the original request-uri. Trace through >> >> BOOL SBCSIPTrunkRoutingHandler::B2BRouteCall( >> B2BUAConnection & connection, >> SIPMessage & invite, >> BOOL /*ignoreRegistrations*/ >> ) >> >> >> >>> Thanks! >>> Hikmet Cengiz >>> >>> >>> On Feb 19, 2008 5:45 AM, Joegen E. Baclor <joe...@gm...> >>> >> wrote: >> >>> >>>> Hikmet Cengiz wrote: >>>> >>>> >>>>> Hi everyone, >>>>> >>>>> For a load test project I am in need of creating multiple softphone >>>>> instances in my application. (using either atlsiplib.dll or >>>>> >>>>> >>>> axatlsiplib.dll) >>>> >>>> >>>>> I think opensipstack is not designed to be used this way, (i.e. >>>>> >>>>> >>>> regardless >>>> >>>> >>>>> of how many instances are created, all are the same objects; hence >>>>> >>>>> >>>> singleton >>>> >>>> >>>>> pattern) >>>>> >>>>> 1) What needs to be done to enable instantiating many of these UA's >>>>> >> all >> >>>> of >>>> >>>> >>>>> which can have different accountIDs, registrars etc and all can >>>>> >>>>> >>>> register, >>>> >>>> >>>>> place calls or accept calls independent of each other? >>>>> >>>>> >>>>> >>>> OpenSBC SIP Trunking feature does exactly this. >>>> >>>> >>>> >>>> >>>>> 2) Will this cause any conflicts using the system resources? >>>>> >>>>> >>>>> >>>> Why don't you run both your softphone and OpenSBC in the same PC. >>>> Configure opensbc SIP Trunk to send a number of registration for >>>> multiple UA. You can then map these accounts to your ATLSIP softphone >>>> instance. >>>> >>>> With little imagination, you can even combine OpenSBC and ATLSIP and >>>> function as one application. >>>> >>>> >>>> >>>> >>>>> Many thanks in advance! >>>>> Any ideas- suggestions for load test in OSS are welcomed. >>>>> >>>>> Hikmet Cengiz >>>>> >>>>> >>>>> >> ------------------------------------------------------------------------- >> >>>>> This SF.net email is sponsored by: Microsoft >>>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>>> _______________________________________________ >>>>> opensipstack-devel mailing list >>>>> ope...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>> >>>>> >>>>> >>>>> >>>>> >> ------------------------------------------------------------------------- >> >>>> This SF.net email is sponsored by: Microsoft >>>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >> ------------------------------------------------------------------------- >> >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > |
From: Hikmet C. <hik...@gm...> - 2008-02-22 18:58:12
|
Hi Joegen, I can have OpenSBC to register to our usual SIP Server for a couple of accounts using sip trunk config. This part is fine. However, I'm confused what the *config parameters for the softphone* should be (UserID, AccountID, Password, Registrar and outboundProxy) to use these trunk accounts. Based on this sample xml: <siptrunk trunk-name="mysipserver.com" route-set="mysipserver.com" sip-domain="mysipserver.com" expires="10"> <trunk-accounts> <account user-name="1001" auth-user-name="1001" auth-password="1001" inboundroute="sip:90...@ex..." expires="3600" />.... For instance, this one is not working... SOFTPHONE CONFIG: UserID: 1001 AccountID: 1001 Password: 1001 Registrar: example.solegy.com OutboundProxy: localhost Thanks... Hikmet Cengiz On Tue, Feb 19, 2008 at 6:57 AM, jo...@op... < joe...@gm...> wrote: > Hikmet Cengiz wrote: > > Thanks Joegen! > > > > So if SIP Trunking is meant for enabling multiple UA purpose, it would > be a > > great idea to use openSBC and atlsip all together in my application. > > > > -As SIP Trunking is a new term for me, could you please give an example > how > > to configure OpenSBC SIP Trunk? (Would normally not ask this question, > but > > could not find a specific page at OpenSBC HTTP Admin site) > > > > There is a short tutorial here about SIP trunks > http://www.opensourcesip.org:8080/clearspacex/docs/DOC-1040 > > CAVEAT: when pasting the XML onto HTTP admin, make sure you enclose it > with <root> </root> or the XML parser won't recognize your config > > > > -And instead of registering to my usual SIP Server, do I have to > register to > > my local OpenSBC in this case? > > Yes. You register to OpenSBC and let OpenSBC register on your behalf to > the SIP provider. > > > How will the atlsip instance identify each > > user? > > > > You may need to modify OpenSBC a bit and add a custom header that would > preserve the original request-uri. Trace through > > BOOL SBCSIPTrunkRoutingHandler::B2BRouteCall( > B2BUAConnection & connection, > SIPMessage & invite, > BOOL /*ignoreRegistrations*/ > ) > > > > Thanks! > > Hikmet Cengiz > > > > > > On Feb 19, 2008 5:45 AM, Joegen E. Baclor <joe...@gm...> > wrote: > > > > > >> Hikmet Cengiz wrote: > >> > >>> Hi everyone, > >>> > >>> For a load test project I am in need of creating multiple softphone > >>> instances in my application. (using either atlsiplib.dll or > >>> > >> axatlsiplib.dll) > >> > >>> I think opensipstack is not designed to be used this way, (i.e. > >>> > >> regardless > >> > >>> of how many instances are created, all are the same objects; hence > >>> > >> singleton > >> > >>> pattern) > >>> > >>> 1) What needs to be done to enable instantiating many of these UA's > all > >>> > >> of > >> > >>> which can have different accountIDs, registrars etc and all can > >>> > >> register, > >> > >>> place calls or accept calls independent of each other? > >>> > >>> > >> OpenSBC SIP Trunking feature does exactly this. > >> > >> > >> > >>> 2) Will this cause any conflicts using the system resources? > >>> > >>> > >> Why don't you run both your softphone and OpenSBC in the same PC. > >> Configure opensbc SIP Trunk to send a number of registration for > >> multiple UA. You can then map these accounts to your ATLSIP softphone > >> instance. > >> > >> With little imagination, you can even combine OpenSBC and ATLSIP and > >> function as one application. > >> > >> > >> > >>> Many thanks in advance! > >>> Any ideas- suggestions for load test in OSS are welcomed. > >>> > >>> Hikmet Cengiz > >>> > >>> > >> > ------------------------------------------------------------------------- > >> > >>> This SF.net email is sponsored by: Microsoft > >>> Defy all challenges. Microsoft(R) Visual Studio 2008. > >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >>> _______________________________________________ > >>> opensipstack-devel mailing list > >>> ope...@li... > >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > >>> > >>> > >>> > >>> > >> > ------------------------------------------------------------------------- > >> This SF.net email is sponsored by: Microsoft > >> Defy all challenges. Microsoft(R) Visual Studio 2008. > >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >> _______________________________________________ > >> opensipstack-devel mailing list > >> ope...@li... > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > >> > >> > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > |
From: <jo...@op...> - 2008-02-22 12:34:15
|
Static variables and singleton are normally reported as leaks. You may safely ignore this. You may also try making calls and incrementing the number of calls each time. You can then compare the amount of leaks from the last one. If they grow with the number of calls, then it could only be a leak. Joegen Zeljko Covic wrote: > Hi, everyone. > > I am first time on this forum. > > I have compiled and linked opensipstack lib on Vista > using Visual Studio 2008. Then I gave a try to MFC > OSSPhone sample. After running it in debug mode and > closin the application, Visual Studio reported a lot of > memory leaks. > > I haven't found any mention to such problem in the > archive of this forum. Am I doing something wrong? > > Visual Studio has rudimentary support to trace memory > leaks sources, so I have no clue where to start. > > Thanks, Zele. > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > |
From: Joegen E. B. <joe...@gm...> - 2008-02-22 12:27:51
|
ATLSIP compiles as an ActiveX control. I am not sure about Delphi, but if it can use ActiveX, then the answer is yes. Joegen ope...@op... wrote: > Hi, > > I am looking for a SIP DLL. I found the OpenSIPStack but havn't had time to play around with it yet. Could someone just tell me if it compiles to a DLL or not? > > I'm going to use it in Delphi, and as such a DLL would be nice to use (don't have C++ experiance). > > Thanks, > Robert Vos > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: <ope...@op...> - 2008-02-22 11:48:52
|
Hi, I am looking for a SIP DLL. I found the OpenSIPStack but havn't had time to play around with it yet. Could someone just tell me if it compiles to a DLL or not? I'm going to use it in Delphi, and as such a DLL would be nice to use (don't have C++ experiance). Thanks, Robert Vos |