Questions tagged [xmppframework]

XMPPFramework implements the XMPP protocol in Objective-C and Swift for iOS and Mac platforms.

An XMPP Framework in Objective-C for the Mac / iOS development community.

XMPPFramework provides a core implementation of RFC-3920 (the xmpp standard), along with the tools needed to read & write XML. It comes with multiple popular extensions (XEP's), all built atop a modular architecture, allowing you to plug-in any code needed for the job. Additionally the framework is massively parallel and thread-safe. Structured using GCD, this framework performs well regardless of whether it's being run on an old iPhone, or on a 12-core Mac Pro. (And it won't block the main thread... at all)

864 questions
32
votes
2 answers

Better Way to implement the chat application using XMPP on Android?

Hi i want to implement the Chat application in android using XMPP (To avoid the GCM notifications because GCM uses request response process). i have done the 70 perc functionality using Smack library and OpenFire server. but after completion of…
AndroidDev
  • 1,191
  • 3
  • 16
  • 35
28
votes
4 answers

Storing messages using XMPPFramework for ios?

I'm not sure how to use the XMPPFramework's core data to store incoming messages. Does anyone have any tutorials on how to do this? I see User objects, which in turn can have many "resources". Is each message received supposed to be a new…
user798719
  • 9,619
  • 25
  • 84
  • 123
19
votes
3 answers

XMPPFramework - How to create a MUC room and invite users?

I am using Robbiehanson's iOS XMPPFramework. I am trying to create a MUC room and invite a user to the group chat room but it is not working. I am using the following code: XMPPRoom *room = [[XMPPRoom alloc]…
Naveed Rafi
  • 2,503
  • 5
  • 32
  • 40
19
votes
3 answers

XMPPFramework - Implement Group Chat (MUC)

I am working on the iOS chat client. Can anyone please help me with the Multi-User Chat? I have implemented Robbiehanson's XMPPFramework. Can anyone please let me know how to get list of group and create a group in server with this framework? Thanks…
Satish
  • 1,012
  • 2
  • 15
  • 32
17
votes
1 answer

Undefined symbols for architecture armv7 when adding CocoaAsyncSocket

I am trying to use XMPPFramework with an iOS5 project (ARC) under xcode 4.2.1 but I am facing this problem. Once I add CocoaAsyncSocket to my project as part of preparing my project to use XMPPFramework as in 1I get the following error. I have seen…
Future2020
  • 9,939
  • 1
  • 37
  • 51
16
votes
2 answers

Build a chat application in ios using XMPP

I am trying to build a chat application in ios. I came across XMPP for ios. I am bit confused on how to move forward. Here are my doubts: Do I need to create an XMPP server to implement this application? Or are there any existing servers/services…
Zach
  • 9,989
  • 19
  • 70
  • 107
14
votes
3 answers

Up to date instructions on how to install XMPPFramework manually?

I'm having a really tough time getting XMPPFramework to work. I've followed every direction written on the net, and XCode is not finding any of my XMPPFramework classes. Expected specifier-qualifier-list before 'XMPPStream' XMPP.h: No such file…
user798719
  • 9,619
  • 25
  • 84
  • 123
14
votes
5 answers

XMPPFramework - Retrieve Archived Messages From Openfire Server

I am developing a chat app for iPhone using XMPP and openfire server,OpenFire server is storing all the chat history between users but When I try to retrieve the chat history for a particular user I get only the date and the number of chat messages…
Piyush Kashyap
  • 1,965
  • 1
  • 14
  • 16
10
votes
5 answers

Options for real-time web notifications and updates using Comet/XMPP vs WebSocket technologies on a Microsoft stack?

I am scoping out the architectural options for a project that will render live updates (like Facebook) of user activities - logins, photos, etc. Two main UI components of this are an auto-updating scrolling area where new notifications will be…
ElHaix
  • 12,846
  • 27
  • 115
  • 203
10
votes
1 answer

OS X ejabberd, New user register by XMPPFramework

I'm new for ejabberd. I want to add new user on server through my iOS App. I tried with many code that was find out from the Google but no one can solve my issue. I set module to…
iPatel
  • 46,010
  • 16
  • 115
  • 137
10
votes
3 answers

xmpp messages are lost when client connection lost suddently

I am using ejabberd server and ios xmppframework. there are two clients, A and B. When A and B are online, A can send message to B successfully. If B is offline, B can receive the message when B is online again. But when B is suddenly/unexpectedly…
xhsoldier
  • 575
  • 6
  • 31
10
votes
1 answer

XMPP iOS Framework detect internet disconnection issue with OpenFire server

I have implemented chatting application using XMPP iOS Framework with OpenFire server. Fortunately, application is running successfully but I am facing one issue of internet disconnection in application. When user is getting logout or went in…
Jayeshkumar Sojitra
  • 2,501
  • 4
  • 31
  • 44
10
votes
1 answer

Enable BOSH services in XMPP IOS framework (XMPPFramework) to create chat based app

I have implemented Chat based application. I can able to do many functionality with https://github.com/robbiehanson/XMPPFramework library. It is very good library. But after some days my server side guys included bash services in server. My server…
Govindarao Kondala
  • 2,862
  • 17
  • 27
10
votes
1 answer

FileTransfer using XmppFrameWork in ios

i have implemented some code of file transfer by using this tutorial : Please Click Here. and the code which i am using : - (void)sendToOtherDevice:(NSData *)fileData receiverJid:(NSString *)receiverJid { XMPPJID *jid = [XMPPJID…
Deepak Kumar
  • 295
  • 5
  • 17
10
votes
1 answer

XMPPFrameWork didNotAuthenticate in Facebook

I had been using a AppId, which is created in Facebook a few months ago for my iOS chat application. Now I have to use the newly created AppId for release. If I am using the old AppId then the XMPP will get authenticated and able to chat with…
ani
  • 440
  • 1
  • 5
  • 15
1
2 3
57 58