jabber

Standalone php jabber client in browser without javascript

Hi all, Is there any way to maintain stream from php to the jabber server without javascript to keep the client side live? Some low end mobile do not support javascript, so to maintain permanent connection to server is key question? any hacks? ...

Python Jabber/XMPP client library for Twisted

I am looking for a Python library for writing Jabber/XMPP clients using the Twisted framework. ...

Google-Talk invisibility

Hello I was trying to create an XMPP and a Jabber chat-program. I was unable to set chat state to 'Invisible'. I would love to hear from users experience if this is possible and how they do that. I don't mind to use any .NET assembly for it. ...

How to init twisted reactor in the right way?

hi, i have a class MyJabber which init a basic jabber account that print the incoming messages to stdout + put them into a queue. The code that add the client to the reactor is this: def addReactor(self): print 'inside AddReactor' factory = client.basicClientFactory(self.jid, self.option['jabber']['password']) print "factory initiali...

XMPPHP gTalk stream_select error

Hello All, i'm working on a IM Bot that will send a simple IM to GTalk account, but I'm having trouble using the XMPPHP library. The authentication works fine and it looks like the first message sends correctly, but the last message receives an error from google code: 503. You can view the errors here: Example Method Here is the sa...

XMPP server-to-server - traffic optimization?

I'm working on a design for a xmpp chat solution which involves some servers and where at least one server is connected with serious bandwidth limitations. Assuming, we have two servers A and B, some users 0..n connected to Server A and some conferences 0..m provided by Server B. Now assume, some users enter a conference room and a mes...

Twisted connectionLost Event

Hey there, I use the twisted.words.protocols.jabber.client.XMPPClientFactory . Do you know how I can callback a function when the connection gets lost (for example WiFi-connection is down)? thank you for your help! ...

pyxmpp: quick tutorial for creating a muc client?

I'm attempting to write a quick load-test script for our ejabberd cluster that simply logs into a chat room, posts a couple of random messages, then exits. We had attempted this particular test with tsung, but according to the authors, the muc functionality did not make it into this release. pyxmpp seems to have this functionality, but...

Getting a Jabber status via Python

I'm developing a website using the Django framework, and I need to retrieve Jabber (okay, Google Talk) statuses for a user. Most of the Jabber python libraries seem like an incredible amount of overkill (and overhead) for a simple task. Is there any simple way to do this? I know very little about XMPP/Jabber, though of course I'm willi...

Where is the full JID value when using xmpppy?

Where do I find the full JID value after connecting and authenticating against a Jabber server when using the xmpppy library? I need the full JID for a subsequent Iq call to the server. Specifying the bare JID ([email protected]) results in the following error: If set, the 'from' attribute must be set to the user's full JID I have ...

Strophe javascript prevent disconnection on some delay

Hello, I am developing javascript XMPP application which uses Strophe library to connect to Jabber server. I need to engage the thread for about 5-10 seconds when Strophe connects to the server. Thread is engaged by running java applet and after it releases the thread it goes back to handle XMPP events, however at the moment I cannot man...

Webmessenger, IM, Chat Clients - Jabber based? (like Facebook)

Hi, does anyone know a AJAX based chat client that connects to a Jabber server, and does the same things as Facebook or Netlog chatbar, plus Multi User Chat (MUC). I love the UI of cometchat.com/demo (left side of the chatbar is for MUC, right side Web-IM for my friends) The only client I found until now is http://www.ijab.im/ - which ...

How make video call with ejabberd ?

How make video call with ejabberd ( like msn and skype ) ? ...

How do I set a Jabber status with python-xmpp?

How do I set a GChat or jabber status via python? Right now I've got this: import xmpp new_status = "blah blah blah" login = 'email' pwd = 'password' cnx = xmpp.Client('gmail.com') cnx.connect( server=('talk.google.com',5223) ) cnx.auth(login, pwd, 'botty') pres = xmpp.Presence() pres.setStatus(new_status) cnx.send(pres) I...

Python (Twisted) - reading from fifo and sending read data to multiple protocols

Hi, Im trying to write some kind of multi protocol bot (jabber/irc) that would read messages from fifo file (one liners mostly) and then send them to irc channel and jabber contacts. So far, I managed to create two factories to connect to jabber and irc, and they seem to be working. However, I've problem with reading the fifo file - I...

XMPP/jabber client help

I want to develop a chat application with floowing features 1)user A visits website clinks on chat . 2)Website picks another user B who is single(who is not paired) and pairs him with A. 3)Now A and B can chat till they want. Now here neight A or B are registered member of website.Neight they ave any accouunt. Can i develop such thi...

running my own jabber/xmpp server

Can i make my own jabber server.So that if i run my website xyz then people should be be able to get theri jabber id from my website by registering on my website. Is there any open source implementation of jabber server that i can use? ...

Why do I have to send multiple messages to my Jabber bot before it will logout?

I am trying to make my own Jabber bot but i have run into a little trouble. I have gotten my bot to respond to messages, however, if I try to change the bot's presence then it seems as though all of the messages you send to the bot get delayed. What I mean is when I run the script I change the presence so I can see that it is online....

How can I make my Perl Jabber bot an event-driven program?

I'm trying to make a Jabber bot and I am having trouble keeping it running while waiting for messages. How do I get my script to continuously run? I have tried calling a subroutine that has a while loop that I, in theory, have set up to check for any messages and react accordingly but my script isn't behaving that way. Here is my sour...

Right way to create [self]respawning app in python

I am using jabber bot written in python to log some MUC talks. Sometimes it drops on some network or XMPP problems. In this case I have to start it again by myself. The goal is to make it "self-respawning". I have some variants about how to do it. Bot is one process. Another process monitors its activity and starts it if bot died. Mai...