voip

XMPP chat app got rejected for using VoIP service as background mode

雨燕双飞 提交于 2019-11-29 16:10:10
问题 I Have done a XMPP chat app in which I am using Voip service for getting the Voip key in order to recieve the chat message when I am in background. The functionality all worked fine but the app store is rejecting the app with a response as given below: 2.16: Multitasking apps may only use background services for their intended purposes: VoIP, audio playback, location, task completion, local notifications, etc. 2.16 We found that your app uses a background mode but does not include

VOIP Using Phonegap

给你一囗甜甜゛ 提交于 2019-11-29 13:24:24
Is there's anyway I can implement VOIP Client using Ionic Framework ? Theres a SDK for the VOIP but regarding the connection and everything, is it possible or should I go native ? Thanks It is possible to use VOIP SDK's in Javascript. These SDK's rely on WebRTC to work, and this is not always available in older Android versions for example. These frameworks are however stable enough to work in a browser on your desktop. You have several complications with Cordova instead of native. In Javascript you have a lot less control on connection and the OS in general. For example: when you are using

PJSUA2 sip android native app

百般思念 提交于 2019-11-29 11:20:58
Here I'm developing an application using native android in ubuntu 14.04LTS eclipse adt for android. Build, configure, and make everything went perfect. After that I imported pjsua2 sample app into eclipse, I then added native library support but when I run on emulator it throws an error. The error log, 10-25 06:12:09.489: E/AndroidRuntime(1571): FATAL EXCEPTION: main 10-25 06:12:09.489: E/AndroidRuntime(1571): Process: org.pjsip.pjsua2.app, PID: 1571 10-25 06:12:09.489: E/AndroidRuntime(1571): java.lang.UnsatisfiedLinkError: Couldn't load libpjsua2.so from loader dalvik.system.PathClassLoader

Use SIP in iPhone app

戏子无情 提交于 2019-11-29 10:29:48
问题 I want to build an iPhone app which has the option to make calls over SIP (VoIP) but at this moment I have no idea how to start. Does anyone have some information about this topic, or maybe a demo project which I can use to implement the SIP functionality? Thanks in advance! 回答1: You could check out siphon. 回答2: For this project you'll need a SIP server to handle SIP requests from the iPhone clients. Yes, not so simple is it? There are open source SIP implementations (like this one) which you

VOIP app is not wake up in time if set 15 min for setKeepAliveTimeout method

 ̄綄美尐妖づ 提交于 2019-11-29 10:25:57
问题 I've developed app which should process some data every 15 min. So I added voip flag into plist file. And use setKeepAliveTimeout with 900 sec(15 min). Also added background task functionality which processes some data. Processing of data takes up to 10 seconds. The problem is that app wakes up NOT in time. Sometimes after 12 min, sometimes after 16 min etc. But I need exactly in 15 min. How to solve the following problem? iOS version is 5.0+ If it's iOS's specific please provide me official

ios audio unit remoteIO playback while recording

那年仲夏 提交于 2019-11-29 09:58:42
问题 I have been charged to add VOIP into an game (cross-platform, so can't use the Apple gamekit to do it). For 3 or 4 days now, i'm trying to get my head wrap around audio unit and remoteIO... I have overlooked tens of examples and such, but every time it is only applying a simple algorithm to the input PCM and play it back on the speaker. According to Apple's documentation in order to do VOIP we should use kAudioSessionCategory_PlayAndRecord. UInt32 audioCategory = kAudioSessionCategory

UILocalNotification does not fire after 10 minutes in background

六月ゝ 毕业季﹏ 提交于 2019-11-29 08:56:33
I have a VoIP application. Which is working fine. Call is working in foreground and background. Following steps are done: UIBackgroundModes => voip in Info.plist Configured one of the app’s sockets for VoIP usage. Before moving to the background, setKeepAliveTimeout:handler: is called Configured audio session to handle transitions to and from active use. To ensure a better user experience on iPhone, used the Core Telephony framework to adjust behavior in relation to cell-based phone calls; To ensure good performance for VoIP app, used the System Configuration framework to detect network

VOIP on Android libraries or sample code

喜夏-厌秋 提交于 2019-11-29 07:56:09
Thanks in advance. I am working on a VOIP application on Android. Are there any open-source code, libraries or sample applications, for VOIP software developers to quickly create VOIP apps? Thanks in advance. actually i don't know the process for using voip in android app.. so how to use voip in app. I think you probably want the SIP package . 来源: https://stackoverflow.com/questions/10734519/voip-on-android-libraries-or-sample-code

what mechanisms used by Whatsapp and Viber for Chatting and messaging

試著忘記壹切 提交于 2019-11-29 01:59:10
问题 I am searching some thing about Whatsapp and Viber. They are providing Free calls ans SMS and Chatting functionality over VOIP. Can any one identify what kind of Mechanisms are used by both application . Means For Chat what kind of protocols are used and other details. and any other code which may be usefull to create chat applications like these. please provide some details. 回答1: Whatsapp uses a custom XMPP server, Viber uses their own SIP voip server. There are some opensource libraries for

Python SIP library [closed]

依然范特西╮ 提交于 2019-11-29 00:44:47
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 months ago . I need to write python application connect to trixbox that run as SIP server. But I not found any library that implement in python. I found SIP SKD at http://www.vaxvoip.com/ but it not support python. Can anyone suggest me an alternative to VaxVoip? Thank you. 回答1: There are Python bindings for the PJSUA API.