Subject: Getting conference room description
Hello,
My requirement is to get the detailed information of a specific room. According to this link
http://www.xmpp.org/extensions/xep-0045.html#disco-rooms , I have done.... I am getting the description as specified in Example 6 of this link. But I need to get description as in Example 7 ( where subject, room title, etc.. are specified). What can I do to get the detailed information of the room including subject, room title, etc.... Kindly help me...
The Xml log which I give and get are as follows:
SEND:
<iq xmlns="jabber:client" id="agsXMPP_5" type="get" from="sreedevi@localhost/MiniClient" to="conference.localhost"><query xmlns="http://jabber.org/protocol/disco#items" /></iq>
SEND:
<iq xmlns="jabber:client" id="agsXMPP_6" type="get" from="sreedevi@localhost/MiniClient" to="conference.localhost"><query xmlns="http://jabber.org/protocol/disco#info" /></iq>
RECV:
<iq xmlns="jabber:client" from="conference.localhost" id="agsXMPP_5" to="sreedevi@localhost/MiniClient" type="result">
<query xmlns="http://jabber.org/protocol/disco#items">
<item jid="test@conference.localhost" name="Test" />
<item jid="kochidontnet@conference.localhost" name="Kochi .NET Community" />
</query>
</iq>
RECV:
<iq xmlns="jabber:client" from="conference.localhost" id="agsXMPP_6" to="sreedevi@localhost/MiniClient" type="result">
<query xmlns="http://jabber.org/protocol/disco#info">
<identity type="text" name="Public Chatrooms" category="conference" />
<feature var="http://jabber.org/protocol/muc" />
<feature var="http://jabber.org/protocol/disco#info" />
<feature var="http://jabber.org/protocol/disco#items" />
</query>
</iq>
Thanks in advance,
Sreedevi..
My requirement is to get the detailed information of a specific room. According to this link
http://www.xmpp.org/extensions/xep-0045.html#disco-rooms , I have done.... I am getting the description as specified in Example 6 of this link. But I need to get description as in Example 7 ( where subject, room title, etc.. are specified). What can I do to get the detailed information of the room including subject, room title, etc.... Kindly help me...
The Xml log which I give and get are as follows:
SEND:
<iq xmlns="jabber:client" id="agsXMPP_5" type="get" from="sreedevi@localhost/MiniClient" to="conference.localhost"><query xmlns="http://jabber.org/protocol/disco#items" /></iq>
SEND:
<iq xmlns="jabber:client" id="agsXMPP_6" type="get" from="sreedevi@localhost/MiniClient" to="conference.localhost"><query xmlns="http://jabber.org/protocol/disco#info" /></iq>
RECV:
<iq xmlns="jabber:client" from="conference.localhost" id="agsXMPP_5" to="sreedevi@localhost/MiniClient" type="result">
<query xmlns="http://jabber.org/protocol/disco#items">
<item jid="test@conference.localhost" name="Test" />
<item jid="kochidontnet@conference.localhost" name="Kochi .NET Community" />
</query>
</iq>
RECV:
<iq xmlns="jabber:client" from="conference.localhost" id="agsXMPP_6" to="sreedevi@localhost/MiniClient" type="result">
<query xmlns="http://jabber.org/protocol/disco#info">
<identity type="text" name="Public Chatrooms" category="conference" />
<feature var="http://jabber.org/protocol/muc" />
<feature var="http://jabber.org/protocol/disco#info" />
<feature var="http://jabber.org/protocol/disco#items" />
</query>
</iq>
Thanks in advance,
Sreedevi..