I am using xmpppy libary to write a XMPP IM robot.

I want to act on disconnects, but I don't know how to detect disconnects. This could happen if your Jabber server crashes or if you have lost your internet connection.

I found the callback, RegisterDisconnectHandler(self, DisconnectHandler), but it didn't work for the network failure, it only works when I explicitly call the method "disconnect".

How do I detect a network failure or server crash?

link|improve this question
feedback

1 Answer

Did you try waiting 30 minutes after the network failure? Depending on your network stack's settings, it could take this long to detect. However, if you're not periodically sending on the socket, you may never detect the outage. This is why many XMPP stacks periodically send a single space character, using an algorithm like:

  1. Set timer to N seconds
  2. On sending a stanza, reset the timer to N
  3. When the timer fires, send a space.
link|improve this answer
Could Please give some detials about how to send such a stanza? – BerSerK Sep 29 '11 at 10:06
The space character isn't a stanza. You should just be able to do send(" "). – Joe Hildebrand Sep 29 '11 at 16:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.