xmpp

XMPP library for facebook chat

So facebook is opening its chat servers to us... great. I am new to XMPP, so what would be the best JS library to connect to their servers? I googled for a tutorial article, but found nothing. Can someone direct me to one? ...

XMPP bot status message on GAE

Hi , GAE XMPP documentation states that is not possible to set status message for an app ( https://code.google.com/appengine/docs/python/xmpp/overview.html#Google_Talk_User_Status ). On other hand, I've vark IM client has status message set. Obviously it is not hosted on GAE, but it is possible to set status message for app. I hav...

ejabberd mod_offline iphone pushed notifications

Hey guys im totally new with jabber/xmpp but i'm currently developing an 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 need to run a PHP script which gets a Token device and the text message to deliver via ssl ...

Xmpp server to server using protobuf

I am tasked with creating a text messaging system with low bandwidth server to server connections. The other developers already use protobuf to send data for other parts of the system between these same server locations, and it would be helpful to continue that trend for the text messaging portion. Server to client connections are not ba...

How to connect to gtalk in java?

Hi, i am trying to code a small XMPP gtalk client in java. I know there is a lot of libraries that help you that but the RFC is so easy to understand that i decide to write a client by myself. I know that the gtalk server is talk.google.com:5222 but when i try this small program i get this result : HTTP/1.1 302 Found Location: http://...

Using XMPP over GTalk server to enable my app to comunicate without showing the user is online.

Hi! I'm currently writing an Android app that should be able to communicate in real time with another app hosted in Google's app engine. Since I can't use sockets in GAE, I though maybe using XMPP over GTalk server would solve my problem. But that way the Android app would be connected to the users account and thus showing the user as b...

Can Apache Camel send a XMPP presence/pubsub packet to an XMPP endpoint?

I need to receive an update published to a JMS topic, convert it to a XMPP packet (Presence packet or PubSub packet) and route it to an XMPP endpoint. I am using ActiveMQ as JMS provider and Apache camel as routing engine. given below is my route in Camel (to make things simple I read from system.in instead of a jms topic): from("...

real time notifications using xmpp

Hi, I am looking to include two features in my app using xmpp. The first one is a one-to-one chat which is almost complete (using strophe) and the second one is real time notifications just the way it works in facebook. I tried to understand the pubsub system in xmpp but dont feel that it will suit this particular problem. Please correc...

XMPP Handshake (DIGEST-MD5 SASL)

ive got ejabberd as my xmpp server and here is my php code: $stripped = strip_tags($returnTwo); // remove the xml tags from the response stanza $decoded = base64_decode($stripped); // decode the jibberish $regex = "([0-9]{8,})"; // create regex to extract the nonce preg_match($regex, $decoded, $noncearr); // extracts nonce $nonce = $non...

How long can a XMPP Session last?

Without timeout? Or is there even a timeout? ...

XMPP to show presence and without login in a web application?

The main problem is, how would you ensure people can login to the xmpp server securely without having to login again from the web app login page? ...

Get XMPP SID and RID from BOSH in PHP?

How do I extract the SID and RID values used in the BOSH transport protocol for XMPP? Specifically, I'm using xmpphp. ...

XMPP get invisible Instant Messenger users

Hi all, I was thinking about writing a simple XMPP-based application to the list of my contact list from the variety of Instant Messengers (Google Talk, Yahoo Messenger, AIM, ICQ). Any advice how to get started with getting the list of users that are on invisible status? Nicholas ...

In Openfire, how can I get who have subscribed a node?

Some client subscribe a node, I want to know how to get the subscriber. Is there some plugins in the Openfire can do this? ...

Setup BOSH so that it allows for users to login without passwords for a long period of time?

I'm just wondering how one could set this up without the BOSH dying. I have the sid, rid, and everything but I was wondering how long i could automatically log people on for the time of lets say a cookie and how is this achieved. ...

Facebook chat - X-FACEBOOK-PLATFORM authentication

Hi guys, I want to build an XMPP client on android, I've got it running perfect with authentication using Digest-MD-5, however when I try to convert it to X-FACEBOOK-PLATFORM it keeps failing. Could someone tell me why? I've attached the source code. I know it's something really small but I can't seem to figure it out. The source can ...

XMPP via WAP 2.0 on BlackBerry. Can't connect.

Problem: I have XMPP based IM application for BlackBerry. When it tries to connect to server using WAP 2.0 (no wi-fi or BIS coverage available) I'm gettings this error in the XMPP's input stream just after connect stanza is sent: <html xmlns='http://www.w3.org/1999/xhtml'&gt; <head><title>The request failed</title></head> <body><p><big>...

libxml2 vs expat for an XMPP server

I'm trying to create an XMPP library (and later a server) from scratch in a new C-like programming language (although the language itself is irrelevant) as a means to learn what I can about the XMPP protocol and server software development in general. As many of you know, XMPP is messaging protocol based on XML that depends on an enormo...

XMPP Connection Pool

Hello. I'm developing service which communicates with users via my own protocol (persistent socket connection). I need to add possibility for users to send and receive messages via XMPP. So, on server I wish to implement connection pool for XMPP connections, but I think it's already done, but google says nothing... Do you now implementat...

SASL authorization failing while connecting to XMPP server

Hi I am trying to connect to gmail using SMACK API through XMPP server. but getting the error : SASL authentication failed using mechanism PLAIN U can check a glimpse of code. I got it from net only ConnectionConfiguration connConfig = new ConnectionConfiguration("talk.google.com", 5222, "gmail.com"); connection = new XMPPCon...