VOIP using XMPP Framework in iPhone

Go To StackoverFlow.com

7

I am able to implement Facebook and Gmail chat with the help of XMPP Framework in my iPhone app. Wanted to know if its possible to implement VOIP(SIP) in a similar manner using XMPP.

2012-04-04 06:40
by sansid1983
Can you be able to send images over xmpp framework in iOS - AMohan 2014-01-28 09:35


8

You can use jingle framework.This is what jingle wiki says: "Jingle is an extension to the Extensible Messaging and Presence Protocol (XMPP) which adds peer-to-peer (P2P) session control (signaling) for multimedia interactions such as in Voice over IP (VoIP) or videoconferencing communications. It was designed by Google and the XMPP Standards Foundation. The multimedia streams are delivered using the Real-time Transport Protocol (RTP). If needed, NAT traversal is assisted using Interactive Connectivity Establishment (ICE)."

The libjingle library, used by Google Talk to implement Jingle, has been released to the public under a BSD license. It implements both the current standard protocol and the older, pre-standard version

Also there is a framework in Google project repository. http://code.google.com/p/libjingle/

Also, one more link related to this: iOS: Open Source VoIP/SIP Objective-C Code

May be this will give you an idea.

2012-04-04 07:12
by UVM
Does it work with iPhone. I didn't find any xcodeproject in the downloaded file - sansid1983 2012-04-04 07:55
personally I have not used this framework.But I think this is developed in C++.so you can easily port or use in IPhone.Also, take a look at the code of client/peerconnectionclient.cc.May be with a little tweak, you can make it work with IPhone as well - UVM 2012-04-04 07:56
Do we need any external server - Shanmugaraja G 2012-07-10 09:29
Are you winning to implement XMPP with video calling ? - Solid Soft 2014-04-29 04:59
is your question about "to develop XMPP with video calling" - UVM 2014-04-29 05:03


1

Its possible to implement VOIP using XMPP. For ios many are providind SDK's which you can easily implement in your code. Among that one of the best is QuickBlox, which is very useful and easy to implement. Its providing P2P video chat, text chat , group chat and file transfer facilities.

But now WebRTC is gaining much popularity for VOIP purposes.WebRTC (Web Real-Time Communication) is an API definition being drafted by the World Wide Web Consortium (W3C) to enable browser to browser applications for voice calling, video chat and P2P file sharing without plugins.

Open Tok is a rather useful product which can be used for VOIP calling in ios devices. They are also providing a basic IOS sdk for easy implementation.

2013-04-17 06:02
by Augustine
Quickblox is not good as it does not support voip services. In killed state, you can not start the app in background - Kuldeep Singh 2016-08-16 11:21


1

checkout these two products:
1- monal: https://itunes.apple.com/us/app/monal/id317711500?mt=8
2- talkonaut: https://itunes.apple.com/us/app/talkonaut/id375113323?mt=8

they both claim to support jingle

2013-06-08 14:41
by vizog
Ads