Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing an Openfire plugin to intercept the Ping message the server sends to the client when the client becomes idle. The system Ping looks like:

<iq from='capulet.lit' to='juliet@capulet.lit/balcony' id='s2c1' type='get'>
  <ping xmlns='urn:xmpp:ping'/>
</iq>

However, when I use a PacketInterceptor to intercept all the packets between the server and the clients, the interceptor is able to intercept all the packets EXCEPT for the Ping. I don't understand what is going on. Any help would be much appreciated!

share|improve this question
Are you able to catch the presence packets? – kincaid Jan 24 at 20:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.