XMPP (Extensible Messaging and Presence Protocol) is an open, standard protocol for fast delivery of real-time messages.

learn more… | top users | synonyms (1)

0
votes
0answers
4 views

Openfire Cluster Hazelcast Plugin Issues

Windows Server 2003R2/2008R2/2012, Openfire 3.8.1, Hazelcast 1.0.4, MySQL 5.5.30-ndb-7.2.12-cluster-gpl-log We've set up 5 servers in Openfire Cluster. Each of them in a different subnet, subnets are ...
-1
votes
1answer
25 views

XMPP or HTTP. Which one scales better?

The author of Professional XMPP Programming with JavaScript and jQuery claims that stateless protocols like HTTP are much better to scale, as servers dont have to exchange the state among them, while ...
0
votes
0answers
7 views

How to xmpp web-chat multiple tabs

i have web-chat from xmpp-server Openfire 3.8.1 and StropheJS. Connection is by XMPPHP. A Strophe attached session from cookie. If web-chat open in two tabs are window, strophe is disconnecting. How ...
2
votes
0answers
47 views

Is it good to use only GCM for developing chat applications for android ditching XMPP?

A lot of applications like WhatsApp rely on GCM to send notifications to device when the device is idle or the app is running in background. The GCM message just tells the app to sync from the server ...
0
votes
0answers
15 views

Create Group in ASmack

I'm newbie in asmack.. How do I create a group in a group tab in asmack? I have tried createGroup(String name) as shown here link but it seems that it is only makes a group in user tab. Does anybody ...
1
vote
1answer
80 views

Enabling mod_proxy65 on ejabberd server installed on ec2 ubuntu instance

I am working on a iOS chat application, so for media transfer to work i need to enable mod_proxy65, and i have enabled the same in ejabberd.cfg file with their default setting: {mod_proxy65[]}. on ...
1
vote
1answer
36 views

XMPP vs. HTML5 Websocket?

We are making a website where we are trying to develop a chat application, we have already built one using Comet, however due to speed factors we decided to make one in XMPP. However, with HTML5 ...
0
votes
1answer
14 views

How do I use Presence Probes with agsxmpp and C#

How can I retrieve a contact's current presence information using XMPP Presence Probes? Thanks in advance.
0
votes
1answer
33 views

No session IQ response from the google talk server using XMPP

I am trying to mimic the XMPP stream to connect to the google talk servers. I am however facing a problem when sending the session IQ: The problem: I don't receive a response from the server in any ...
0
votes
0answers
17 views

How can I compile the swiften XMPP library for usage with Android?

I tried to compile swiften (a XMPP client library) into a lib for Android JNI but failed. Is there anyone successed? Any suggestion would be appreciated. I compiled swiften as follow steps: ...
3
votes
1answer
44 views

Asmack for facebook chat doesn't work with PrivacyListManager

I am working in an android application and I have integrated facebook chat into my android application successfully with aSmack. But when I login to the facebook chat with aSmack libary, my facebook ...
2
votes
0answers
44 views

Xmpp protocol + ejabber server: Turn connection fails with feature-not-implemented error on IOS Application

I am using https://github.com/robbiehanson/XMPPFramework xmpp framework for iOS. while trying to make TURN Connection I get below error for iq sent to establish the connection. while debugging the ...
-1
votes
1answer
22 views

Android File sharing between users

I want to know the ways of sharing files to another user in android.Like XMPP, If i open the file in my android mobile ,I want to share that file to another user.i don't want to use XMPP. Please guide ...
0
votes
0answers
7 views

Trying to associate Ejabberd MUC with LDAP Groups

I have Ejabberd connected to OpenLdap as the login security device. I have groups enabled in OpenLdap. I was wondering if it's possible to create conference rooms from those groups, and only allow ...
0
votes
0answers
12 views

Getting Passwords thru Cookies (Or some other way)

We have a Cisco Jabber Client - but without the persistent muc room functionality. It is configurable though, and we were able to embed our HTML Jabber their IE rendering engine so users can now go to ...
0
votes
1answer
19 views

How to send a packet from Server to Client (from a function) Ejabbered

I am looking for a function. A global function that might do me the work of sending the stream packet to the client. in function A (Server, From, attrs)-> I construct the xml element PacketToBeSent ...
0
votes
1answer
11 views

Connecting to Jabber Server Via Proxy in Python (XMPPY)

Trying to connect to jabber with proxy: > JCON = xmpp.Client(server=SERVER, port=PORT, debug=[]) > con=JCON.connect(server=(CONNECT_SERVER, PORT), proxy=(127.0.0.1, 80), ...
-2
votes
0answers
15 views

Android Asmack File Transfer service unavailable error 503 remains unsolved even after trying out the ways suggested in Stack answers

ServiceDiscoveryManager serManager = new ServiceDiscoveryManager(mConnection); FileTransferNegotiator.setServiceEnabled(mConnection, true); FileTransferManager manager = new ...
0
votes
0answers
16 views

android gtalk - MultiUserChat - XMPP - not able to Receive Invitation

I am trying to make a chatserver using gtalk/gmail credentials. I am able to Create an XMPPConnection using one of the accounts that I have used to log in gtalk / gmail app . I am able to send Invite ...
0
votes
0answers
22 views

how to get $roster_array in xmpphp in roster.php from xmpp.php?

i want to fetch rosters(contacts) of my online user with xmpphp library. in this library they create object of roster class in xmpp constructor but they don't use with array attribute for create ...
2
votes
0answers
30 views

Presence listener not working in asmack

I am developing a chat application for Android using asmack. The connection is getting established and I'm able to login also. I've added listener for IQ packets and that is working fine. I have added ...
0
votes
0answers
23 views

XMPP Asmack FileTransfer giving “Could not create file to write too” error when the file is received

I have added the file transfer code to my Android app, i am compressing the file before transferring. When i transfer the file and debug the control comes to my receive file method and when it creates ...
-6
votes
0answers
36 views

Where can i save chat history in android? sqlite, sdcard, remote server (without loading time ), other [closed]

I created a chat application. That is taking a lot of loading time at the time of get the chat history from the remote server. If i will use sqlite then i think it is Ok and remove loading time to get ...
-1
votes
0answers
33 views

Using XMPP in Phonegap [closed]

I'm new to XMPP and phonegap, I'm trying to implement a chat based application using phonegap, i have installed openfire in the server for chat application. Anyone help me out how to implement chat ...
0
votes
1answer
84 views

Facebook Chat API - Python App Engine

I'm trying to use the Facebook chat API in my web service(AppEngine Python). I found some code on line, but any of them help me to make it work. This is the code I'm using, but don't work. What I am ...
1
vote
1answer
31 views

How to send a broadcast message with SmackAPI?

We're developing special devices that uses XMPP to talk to each other. A new API i am developing now, should talk to these devices too. The problem i am facing - all these devices are building little ...
0
votes
0answers
33 views

Getting ejabberd MUC rooms to work with Gmail/Google Talk

I've been having a tough time getting XMPP/Jabber running on the ejabberd server to communicate using a MUC conferencing setup with Google Chat / Gmail / Google Talk. I've setup my DNS to provide ...
0
votes
1answer
13 views

XMPPFramework: Trying to update nickname on VCard

This question is as simple as its title says: I'm trying to update a user nickname on his VCard but I cannot. I'm using this code: dispatch_queue_t queue = dispatch_queue_create("queue", ...
0
votes
1answer
14 views

How Can I Use xmpp4r To Detect The Online/Offline Status Of A Given Jabber ID?

What is the proper xmpp4r way to know if a given contact is online before sending them a message? Can you post sample xmpp4r code for doing this? Here is my use case: If contact online, send ...
-1
votes
0answers
21 views

Create User Using Asmack Android Library

I am using openfire xmpp server , and for client i am using asmack library in android I am able to connect to server but while i am trying to create account for user it is giving error as "Internal ...
0
votes
0answers
18 views

Privacy list: to block user in all openfire channels

My Problem is that I want to ignore a user in private chat but also in public channel (MUC). I resolved this issue in Openfire 3.7.0 with add two JID to my privacy lst: username@servername (to ignore ...
0
votes
0answers
25 views

Smack api and Openfire server presence error

I am developing a chat application using Smack api and I got stuck at receiving presence packets. Tested with Smack 3.2.2 and 3.3.0. These problems involve only using Openfire server 3.8.1. First:I ...
0
votes
0answers
13 views

XMPP Roster Management

I am developing a chat application in android with XMPP.I am using openfire as my chat server.I am struggling with a bug from a long time and the bug is regarding roster management. I found that the ...
0
votes
1answer
58 views

Jabber/XMPP protocol in pure Clojure

I'm looking for Jabber/XMPP protocol implementation in pure Clojure. I'm find xmpp-clj but it a wrapper around the smack jabber/XMPP library.
2
votes
1answer
38 views

ejabberd mod_archive_odbc performance

I am using ejabberd 2.1.12 with mod_archive_odbc configured for mysql database. I checked logs while saving single message and they look terrifying. Ejabberd suppose to be highly scalable xmpp server ...
1
vote
0answers
19 views

Voice Chat with XMPPFramework

Hi I`m a student developer and I have made iPhone mobile chat application with XMPPFramework! I have already made various functions in my App For instance, I made Multi-User Chat and Send/Receive ...
0
votes
1answer
41 views

XMPPFramework/iOS issue: send and recieve subscription

I have a challenge with XMPPFramework today... I've configured ejabberd correctly: server is up and running and registering users correctly by in-band registration. But when I try to send a ...
1
vote
1answer
58 views

How to receive files in Smack in androd?

How to receive transfered file using Smack with Openserver in Android? Here following is a code which I have used to receive a file. But getting error and can not rec any file. ...
0
votes
0answers
47 views

Facebook Chat over XMPP — doesn't work if the other user is not online on facebook

The Facebook Chat over XMPP thing described at https://developers.facebook.com/docs/chat/ seems to have a major flaw that makes it largely unusable. I just tested it with a friend, and it only works ...
1
vote
1answer
40 views

I want to add an external library to jdk 1.6

I want to add an external library I am using eclipse IDE and I followed the following procedure of clicking the preferences - > Java - > Installed JREs - > Edit - > add External JARs and after adding ...
0
votes
0answers
19 views

Migrated AppEngine app to HRD, no longer sending XMPP messages, though logs says message sent

I have a Google AppEngine app that was master/slave and I finally decided to migrate to high replication. I followed all the directions, the code was redeployed, the billing settings were updated.... ...
0
votes
0answers
48 views

how to use xmpp (smack) over talk.google.com server for OWN chat app

private static final String HOST = "talk.google.com"; private static final int PORT = 5222; private static final String SERVICE = "gmail.com"; // establish connection connConfig = new ...
0
votes
0answers
31 views

XMPPFamework deleting roster buddies

I am using xmppframework in iOS and Apache vysper as the XMPP server. I can add and delete users from my iOS client, but when other users delete me from their client (it could be anything, like ...
0
votes
1answer
18 views

FIle downloading using HTTP

I am having trouble finding the correct XEP to use for this specific use case: Initiator (e.g. iOS or Android device) uploads a file to a server and needs to notify the responder (in this case this ...
2
votes
0answers
39 views

Android asmack received iq packets are formatted in wrong way

I am using asmack for implementing chat client application. I am sending an IQ request for fetching previous chats. Though I get all previous chats some of them are broken. Actually output should be ...
0
votes
1answer
31 views

Creating a bot-like configuration with ejabberd?

How to implement a bot with ejabberd? The idea is that on my (Debian 7.0 Wheezy) VPS, I'm running ejabberd and there I have a special bot Jabber user with limited set of commands that he can run. ...
0
votes
0answers
28 views

Clone <tr> from a form and append to another form - but losing links(events)

I am modifying a third party built web client messaging API to increase the number of servers I can search on for chat rooms. THe API is built to search on one server node. The server response is in ...
0
votes
0answers
18 views

Web-based Jabber client does not work in closed environment

I have installed and configured openfire 3.8.1 chat-server on Window server 2008 R2 enterprise. I am using JsJac.js jabber-client library written in javascript. On ...
-1
votes
0answers
22 views

is there an xmpp and jingle library for blackberry, symbian and apple ios sdk

I have an idea of creating a text, voice chatting app \for android, blackberry, symbian and apple ios phones. however, I have downloaded the asmack library for android xmpp and jingle library I am ...
-3
votes
0answers
24 views

is there a way to determine which users are within 100 meters [closed]

there are many Android applications which show users on a map; how can I get the list of people close to me? I'm running openfire and use smack xmpp library. thank you!

1 2 3 4 5 47