XMPP (Extensible Messaging and Presence Protocol) is an open, standard protocol for fast delivery of real-time messages.
0
votes
3answers
365 views
xmpp Opera throws security error
gurus of programming!
I had created some chat, based on the book "XMPP programming", so I've included strophe.js and gab.js in my project. Everything is fine, service is working both in IE and ...
0
votes
0answers
9 views
Get Status of Available chat in XMPP using Smack
i am try to get the chat user status. so i used it:-
Roster roster = connection.getRoster();
Presence presence1 = roster.getPresence("9999999999"+"@mmmmm.com");
Mode status = presence1.isAvailable();
...
0
votes
0answers
12 views
jaxl counld not connect openfire via bosh
When I'm running the following code, it comes an error (Fatal error: Maximum execution time of 30 seconds exceeded in E:\wamp\www\chat\vendor\abhinavsingh\jaxl\xep\xep_0206.php on line 123). But when ...
0
votes
0answers
23 views
chat.facebook.com sending presence unavailable? + learn how to send composing
I've noticed that when I send a presence of unavailable to chat.facebook.com using node-xmpp it is different than the ones I receive (I am logging with colours for readability with ANSI escape code ...
0
votes
0answers
4 views
sending XMPP IQ packet to server with ITEM TAG?
I am working in chat application. In which I am using XMPP protocol.I need to send IQ stanza with Item tag.my full IQ stanza as follows.My question is how to add ITEM tag to IQ Stanza?
`<iq ...
-1
votes
0answers
14 views
Xmpp server is working in android 4.2 but it is not working in android 2.2?
I had created a open fire server, it is working quite common for android android 4.2 version but the same thing is not working with the android 2.2 can any body suggest the solution.
-1
votes
0answers
33 views
How to solve java.lang.NoClassDefFoundError? [duplicate]
I am making an Android application which communicates with other client through ejabberd server.
I am using asmack library for communicating with XMPP server. It was working fine but recently started ...
4
votes
2answers
1k views
ejabberd mod_offline iphone pushed notifications
I'm currently developing a chat iPhone app and so far so good for regular configuration for the ejabberd server. I want to implement Push notification when the user is "offline" and to do this I just ...
-3
votes
0answers
16 views
Free XMPP framework for Mono [closed]
I'm trying to build a chat client with Mono, and I need an XMPP framework for this.
I found MatriX XMPP SDK, but it's not free. Is there a free XMPP Framework?
0
votes
1answer
19 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 ...
0
votes
3answers
999 views
enable http-bind on openfire
I am trying to enable BOSH connection over Openfire so that i can create a XMPP client over a web. curretly i am testing it with the strophe.js.
the problem is when i try to fire following url in a ...
0
votes
2answers
258 views
Login exception SASL authentication failed using mechanism DIGEST-MD5 asmack in android
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 ...
0
votes
0answers
18 views
How to configure http://mydomain.in:5280/http-bind on Windows server
I have installed ejabberd server on windows server 2008 and running fine.
The local http bind path working fine.
As I have configured ejabberd for www.mydomain.in and I am using ManagedFusion Rewrite ...
0
votes
0answers
13 views
AndroidCAStore throws NullPointerException warning on 4.2.2 Jellybean
I am using following code for XMPPConnection to get Keystore certificates
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
conf.setTruststoreType("AndroidCAStore");
...
0
votes
2answers
246 views
Google Hangouts and XMPP support
Had a question about Google's support for XMPP. I want to build a mobile chat client on top of google chat that can interoperate with google chat run from within Gmail or any other service. Would ...
0
votes
1answer
38 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
1answer
120 views
Is anyone able to connect with the new Gtalk (Hangouts) using XMPP? [closed]
The change in Google Plus (Hangout is everything now) that came last week seems to have disabled the ability to connect to a Gtalk user with previous IM clients. Google has said the Google Voice will ...
0
votes
1answer
22 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 ...
1
vote
2answers
170 views
'from' attribute missing in ejabberd offline message Packet
I'm trying to write a module, which triggers a HTTP POST to an API when a user receives an offline message in ejabberd. It's for an iOS app which supports Push notifications.
I followed the guide on ...
0
votes
3answers
70 views
Ejabbered and Push Notification
I have integrate chat system in my ios and android app using XMPP. I have used ejabberd 2 in the serverside.Chating sytem works fine.I want to integrate push notification in my chating using APNS and ...
0
votes
1answer
35 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 ...
7
votes
3answers
97 views
How to block anonymous user in XMPP
In order to implement chat functionality in my app, I have integrated XMPP framework in to it. There is no buddy request functionality hence users can send messages to other users without sending a ...
-1
votes
0answers
9 views
XMPP atomic join to multi user chat
There is a way to have an atomic join to multiuserchat?
I'm using openfire and XMPPFramework for iOS.
Currently I can join to same room for 3 times but I need a way to restrict this access to single ...
-1
votes
1answer
33 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 ...
1
vote
2answers
1k views
iPhone :: xmppframework - Retrieve Complete Roster
Hihi all,
I am half way through implementing my xmpp chatting module on iPhone using xmppframework library, having a little question here.
Based on some examples, I have done it this way:
- Once I ...
1
vote
1answer
47 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 ...
2
votes
0answers
56 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
1answer
680 views
Receive Files in Android using asmack
I am trying to receive a file using the asmack jar. I am able to receive text on my android device with no problem but when I set up the file transfer I get an error saying that "does not support ...
1
vote
1answer
90 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
2answers
67 views
real-time text gtalk
Does google talk or gtalk support real-time text(RTT)? If it does is there any example or a snippet of it somewhere? I have seen the proposal of Mark Rejhon, but didn't find any solid proof that ...
1
vote
1answer
51 views
Remove a function from click event
Im very very new to JS and JQuery so please bear with me.
I have a dropdown list - and if you click the list, it will call a function, which will open a floating box (div). Now we want that box to ...
0
votes
1answer
42 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
1answer
20 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
0answers
27 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:
...
5
votes
0answers
856 views
How to receive the file when connecting success in TURNSocket Of XMPPFramework in ios?
I want to use TURNSocket to transfer the file between the two users.
User1: (iphone sumulator)
User2: (Spark user)
Now the socket has connected, and i want to send a file to User1 from User2 via the ...
3
votes
1answer
50 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
49 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 ...
7
votes
2answers
2k views
XMPP web chat: how to resolve multiple tabs/windows?
We have a site and we developed a chat system for it using strophe.js library and ejabberd XMPP server. We use session attachment that was initiated with PHP (using an in-house library). What we do is ...
0
votes
2answers
176 views
python does not connect to local XMPP server
i'm trying to connect my local XMPP server by the code coming below
import xmpp
client = xmpp.Client('localhost',debug=[])
client.connect(server=('localhost',5222))
but i always get this message :
...
-1
votes
1answer
23 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
30 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 ...
0
votes
1answer
20 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 ...
-2
votes
0answers
17 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
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
2answers
149 views
Change status and upload avatar in XMPP
I'm a new XMPP member. I'm developing a iOS chat project. I learned the way to get online buddy, send and receive message :D, very happy.
But today, I'm researching changing my avatar and status and ...
0
votes
1answer
19 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), ...
0
votes
0answers
18 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 ...
-1
votes
1answer
371 views
MultipleChatUser XMPP asmack join
I am new to this OpenFire and asmack, i want the user to have a functionality of Multi Users Chatting so i searched around and i found MUC i have implemented this for creating a room and sending ...
2
votes
0answers
32 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 ...





