[Standards-JIG] Re: XMPP Ping method?
Piotr Szturmaj
gacek999 at tlen.pl
Fri Nov 3 19:34:11 CST 2006
How about sending keepalive iq from server:
<iq type="get" to="juliet at gmail.com" id="keepalive" />
and this is from XMPP-CORE RFC:
'An entity that receives an IQ request of type "get" or "set" MUST reply
with an IQ response of type "result" or "error" (the response MUST preserve
the 'id' attribute of the request).'
so client should respond with iq stanza with type set to error. This should
work with all clients however it is just a workaround. It would be better if
there will be some XEP regarding keepalives.
something like:
<iq type="get" to="juliet at gmail.com" id="keepalive">
<ping xmlns="jabber:iq:ping"/>
</iq>
respond:
<iq type="result" from="juliet at gmail.com" id="keepalive"/>
when 'id' should be up to implementation
More information about the Standards-JIG
mailing list