vote up 1 vote down star
1

I am using a PacketListener to receive XMPP packets.

If I receive the following:

<presence from="jeanne@belle.com" to="betty@belle.com" type="subscribe"/>

is the XMPP server expecting me to respond immediately ?

  • Motivation: I want to cache all these subscription requests and allow the recipient to selectively ACCEPT/DENY (à la facebook invitations).
  • Is there an API in which I can request for all subscription requests from openfire ?
flag

1 Answer

vote up 2 vote down check

You do NOT need to reply immediately or even in a given session; the server stores the fact that you have a pending inbound subscription, and will re-inform you of the pending subscription every time you log in. Therefore, there should be no need to request the list either.

link|flag
Thanks. I wonder if you know of any forums that discusses XMPP. – Jacques René Mesrine May 12 at 2:08
1  
The xmpp.org site is where you want to go. Specifically, the mailing lists at xmpp.org/about/discuss.shtml. – Joe Hildebrand May 14 at 21:06
Thank you very much – Jacques René Mesrine May 28 at 6:31

Your Answer

Get an OpenID
or

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