1

I am working on VOIP app. I am using VOIP API. The issue which i am facing is whenever app goes in background all my sockets like SIPSocket and RTPSocket is getting closed. It seems some how i can keep those sockets open while my app goes to background.Let me know if anyone have done to solve this.

Claus Jørgensen
  • 25,882
  • 9
  • 87
  • 150

1 Answers1

0

I guess you're using the VoIP app from a InProc WinRT component? You need to use it OutProc, or it won't run in the background.

See VoIP apps for Windows Phone 8 and our ChatterBox VoIP sample

The ChatterBox sample also have the necessary tooling for registering OutProc interfaces with your managed app.

Claus Jørgensen
  • 25,882
  • 9
  • 87
  • 150
  • can you send me some link i read about that InProc Winrt component? I know you guyz are using in Chatterbox VOIP Sample but i am having hard time to understand it. – user1634576 Apr 19 '13 at 18:42
  • I don't think we have more documentation than already provided. But I wouldn't recommend making your own VoIP app, unless you have a deep technical understanding of these topics. – Claus Jørgensen Apr 20 '13 at 09:48
  • my entire sip stack is in managed code.....can i use that and some how integrate in InProc WinRT component .... or do i have to rewrite the entire code in native code. – user1634576 Jun 20 '13 at 18:03
  • i have created my code the only issue is i am not sure how you are adding InProc WinRT component as my all sip sockets are getting closed when app goes in background. – user1634576 Jun 21 '13 at 17:52