Hello,
I've written an open-source Jabber-NET client, called RealJabber at
http://www.realjabber.org .... (it has a mode where text is
transmitted live while you type -- real time text based on
http://xmpp.org/extensions/xep-0301.html )
I need to update my prototype software with some requirement (section
5 of xep-0301)
Basically I need to automatically respond to:
<iq from='ro...@montague.lit/orchard'
id='disco1'
to='jul...@capulet.lit/balcony'
type='get'>
<query xmlns='
http://jabber.org/protocol/disco#info'/>
</iq>
With the following response:
<iq from='jul...@capulet.lit/balcony'
id='disco1'
to='ro...@montague.lit/orchard'
type='result'>
<query xmlns='
http://jabber.org/protocol/disco#info'>
<feature var='urn:xmpp:rtt:0'/>
</query>
</iq>
What is the easiest way to do this in jabber-net? I have been unable
to find good documentation on how to do this properly with jabber-net.
Thanks!
Mark Rejhon