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?
...
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...
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 ...
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...
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://...
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...
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("...
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...
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...
Without timeout? Or is there even a timeout?
...
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?
...
How do I extract the SID and RID values used in the BOSH transport protocol for XMPP? Specifically, I'm using xmpphp.
...
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
...
Some client subscribe a node, I want to know how to get the subscriber.
Is there some plugins in the Openfire can do this?
...
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.
...
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 ...
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'>
<head><title>The request failed</title></head>
<body><p><big>...
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...
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...
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...