Tagged Questions
2
votes
1answer
282 views
Send XMPP message to LDAP group
My requirement is to notify group of people if our backup fails. We've got an OpenFire XMPP server, and I'm planning on using one of the many Python libraries for sending XMPP messages.
Is it ...
0
votes
1answer
406 views
Jabber bot - how to get presence updates?
I'm using the following code to connect to xmpp server (python + xmppy):
c = xmpp.Client("localhost", debug=[])
c.connect(("127.0.0.1", 5222))
c.auth("test","test")
c.sendInitPresence()
...
0
votes
1answer
222 views
XMPP— openfire,PHP and python web service
I am planning to integrate real time notifications into a web application that I am currently working on. I have decided to go with XMPP for this and selected openfire server which i thought to be ...
0
votes
1answer
314 views
handle client disconnect with openfire server If the client is idle for 5mins
I wrote a demo about chatting with other clients with pyxmpp2,but when the client is idle for about 5 minutes the server would disconnect with the client,openfire cannot config the timeout,so I ...
0
votes
1answer
521 views
XMPPPY with Openfire
I'm trying to simply connect XMPPPY to Openfire, send a message, then close. The problem is that I keep getting
(Python 2.6)
import xmpp
pwd = "password"
...
0
votes
1answer
66 views
I need to authenticate against one db with python and openfire. How do I do this?
How would one go about authenticating against a single db using Python and openfire? Is there a simple module that will do this?