mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
eec0df386c
also s;jabber.org/jeps;xmpp.org/extensions;
60 lines
No EOL
1.9 KiB
HTML
60 lines
No EOL
1.9 KiB
HTML
<html>
|
|
<head>
|
|
<title>Group Chat Invitations</title>
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="header">Group Chat Invitations</div><p>
|
|
|
|
The group chat invitation packet extension is used to invite other
|
|
users to a group chat room.
|
|
|
|
<ul>
|
|
<li><a href="#send">Inviting Other Users</a></li>
|
|
<li><a href="#listen">Listen for Invitations</a></li>
|
|
</ul>
|
|
|
|
<p>
|
|
<b>XEP related:</b> N/A -- this protocol is outdated now that the Multi-User Chat (MUC) XEP is available
|
|
(<a href="http://www.xmpp.org/extensions/xep-0045.html">XEP-45</a>). However, most
|
|
existing clients still use this older protocol. Once MUC support becomes more
|
|
widespread, this API may be deprecated.
|
|
|
|
<hr>
|
|
|
|
<p><div class="subheader"><a name="send">Inviting Other Users</a></div><p>
|
|
|
|
To use the GroupChatInvitation packet extension
|
|
to invite another user to a group chat room, address a new message to the
|
|
user and set the room name appropriately, as in the following code example:
|
|
|
|
<pre>
|
|
Message message = new Message(<font color="#0000FF">"user@chat.example.com"</font>);
|
|
message.setBody(<font color="#0000FF">"Join me for a group chat!"</font>);
|
|
message.addExtension(new GroupChatInvitation(<font color="#0000FF">"room@chat.example.com"</font>));
|
|
con.sendPacket(message);
|
|
</pre>
|
|
|
|
The XML generated for the invitation portion of the code above would be:
|
|
|
|
<pre>
|
|
<x xmlns="jabber:x:conference" jid="room@chat.example.com"/>
|
|
</pre><p>
|
|
|
|
<hr>
|
|
<div class="subheader"><a name="listen">Listening for Invitations</a></div><p>
|
|
|
|
To listen for group chat invitations, use a PacketExtensionFilter for the
|
|
<tt>x</tt> element name and <tt>jabber:x:conference</tt> namespace, as in the
|
|
following code example:
|
|
|
|
<pre>
|
|
PacketFilter filter = new PacketExtensionFilter(<font color="#0000FF">"x"</font>, <font color="#0000FF">"jabber:x:conference"</font>);
|
|
<font color="#3f7f5f">// Create a packet collector or packet listeners using the filter...</font>
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html> |