xmppframework

STUN/TURN/ICE implementation with Ejabberd server and XMPP client iOS

。_饼干妹妹 提交于 2021-01-28 21:31:44
问题 I am using ejabberd-16.04 on my mac and XMPPFramework from robbiehanson . It works fine for chatting, no problem. But now I want to add voice calling into my application. I am using Jingle Protocol for call establishment and it works fine for direct communication (i.e. both caller and callee are in same network). The problem I am facing is for cross-network and I want to implement Jingle ICE for this, NATed clients. 1 Can any one tell me how can I enable and use STUN/TURN module on ejabberd

XMPP connect will error connection-timeout

半腔热情 提交于 2020-02-25 06:21:12
问题 I use swift 4 and ios 10. I am using XMPPFramework and I can't connect to the server. I have this error : stream:error xmlns:stream="http://etherx.jabber.org/streams" connection-timeout xmlns="urn:ietf:params:xml:ns:xmpp-streams" text xmlns="urn:ietf:params:xml:ns:xmpp-streams" lang="en" Idle connection I search for this situation and I didn't find anything in the web. I didn't find any documentation for XMPP framework. if you have a document please send me it. I just have time out error and

XMPP connect will error connection-timeout

点点圈 提交于 2020-02-25 06:20:28
问题 I use swift 4 and ios 10. I am using XMPPFramework and I can't connect to the server. I have this error : stream:error xmlns:stream="http://etherx.jabber.org/streams" connection-timeout xmlns="urn:ietf:params:xml:ns:xmpp-streams" text xmlns="urn:ietf:params:xml:ns:xmpp-streams" lang="en" Idle connection I search for this situation and I didn't find anything in the web. I didn't find any documentation for XMPP framework. if you have a document please send me it. I just have time out error and

XMPP connect will error connection-timeout

不羁的心 提交于 2020-02-25 06:20:18
问题 I use swift 4 and ios 10. I am using XMPPFramework and I can't connect to the server. I have this error : stream:error xmlns:stream="http://etherx.jabber.org/streams" connection-timeout xmlns="urn:ietf:params:xml:ns:xmpp-streams" text xmlns="urn:ietf:params:xml:ns:xmpp-streams" lang="en" Idle connection I search for this situation and I didn't find anything in the web. I didn't find any documentation for XMPP framework. if you have a document please send me it. I just have time out error and

How to get the Message read/unread report in xmpp frame work?

 ̄綄美尐妖づ 提交于 2020-02-01 08:17:04
问题 HI I am developing chat app so i am using xmpp framework.Chatting is working fine but how to get the message delivery like in whatsapp, facebook etc.,i searched for that i found some document here is my code upto now i am implemented in connect Method XMPPMessageDeliveryReceipts* xmppMessageDeliveryRecipts = [[XMPPMessageDeliveryReceipts alloc] initWithDispatchQueue:dispatch_get_main_queue()]; xmppMessageDeliveryRecipts.autoSendMessageDeliveryReceipts = YES; xmppMessageDeliveryRecipts

Login exception SASL authentication failed using mechanism DIGEST-MD5 asmack in android

廉价感情. 提交于 2020-02-01 05:25:08
问题 I m try to connect with Xmpp server,But i m getting exception Login exception SASL authentication failed using mechanism DIGEST-MD5 i use this code ,can any one help me,or code try { if (xmppConnection == null) { ConnectionConfiguration config = new ConnectionConfiguration( SERVER_HOST, SERVER_PORT, SERVICE_NAME); xmppConnection = new XMPPConnection(config); System.out.println("xmppConnection"+xmppConnection); } if (!xmppConnection.isConnected()) { xmppConnection.connect(); System.out.println

How to save and fetch in xmppGroupCoreDataStorageObject?

纵饮孤独 提交于 2020-01-30 09:32:06
问题 Using xmpp-messenger-ios , I have created the group and set its configuration and adds the users into it, then I wants to add the group into the xmppGroupCoreDataStorageObject storage to list it into the OpenChatViewController table view. How I am saving the Group Data into xmppGroupCoreDataStorageObject: public class func addUserInCoreData(jid:String, users: Set<NSObject>) { let moc = OneRoster.sharedInstance.managedObjectContext_roster() as NSManagedObjectContext? let entity =

Trying to install XMPPFramework in my objective c Project using Podfile

风流意气都作罢 提交于 2020-01-25 08:23:06
问题 I am trying to install XMPPFramework in my objective c Project using Podfile.I had write this in my Podfile: platform :ios, ‘8.0’ use_frameworks! target ‘XMPP’ do pod 'XMPPFramework', :git =>"https://github.com/robbiehanson/XMPPFramework.git", :branch => 'master' end But I am getting this Error while pod install this error is show in console.This is the image of console:: Can some one please Help me.Thanks. 回答1: Add this in your pod file, pod 'XMPPFramework' Remove , pod 'XMPPFramework', :git