mirror of
https://github.com/moparisthebest/xeps
synced 2024-10-31 15:35:07 -04:00
29bee13867
git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@320 4b5297f7-1745-476d-ba37-a9c6900126ab
115 lines
4.3 KiB
XML
115 lines
4.3 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE xep SYSTEM 'xep.dtd' [
|
|
<!ENTITY % ents SYSTEM 'xep.ent'>
|
|
%ents;
|
|
]>
|
|
<?xml-stylesheet type='text/xsl' href='xep.xsl'?>
|
|
<xep>
|
|
<header>
|
|
<title>Software Version</title>
|
|
<abstract>This specification provides canonical documentation of the existing 'jabber:iq:version' namespace currently used within the Jabber community.</abstract>
|
|
&LEGALNOTICE;
|
|
<number>0092</number>
|
|
<status>Active</status>
|
|
<type>Historical</type>
|
|
<sig>Standards</sig>
|
|
<dependencies>
|
|
<spec>XMPP Core</spec>
|
|
</dependencies>
|
|
<supersedes/>
|
|
<supersededby/>
|
|
<shortname>iq-version</shortname>
|
|
<schemaloc>
|
|
<url>http://www.xmpp.org/schemas/iq-version.xsd</url>
|
|
</schemaloc>
|
|
&stpeter;
|
|
<revision>
|
|
<version>1.0</version>
|
|
<date>2003-10-08</date>
|
|
<initials>psa</initials>
|
|
<remark>Per a vote of the Jabber Council, changed status to Active.</remark>
|
|
</revision>
|
|
<revision>
|
|
<version>0.1</version>
|
|
<date>2003-05-22</date>
|
|
<initials>psa</initials>
|
|
<remark>Initial version.</remark>
|
|
</revision>
|
|
</header>
|
|
<section1 topic='Introduction'>
|
|
<p>The Jabber protocols have long included a method for discovering version information about the software running at another entity's JID. This method makes use of the 'jabber:iq:version' namespace and has been documented variously in Internet-Drafts and elsewhere. Because this protocol is not required by &rfc2779;, the 'jabber:iq:version' namespace was removed from &xmppim;. This specification fills the void for canonical documentation.</p>
|
|
</section1>
|
|
<section1 topic='Definition'>
|
|
<p>The 'jabber:iq:version' namespace provides a standard way for Jabber entities to exchange information about the software version used by the entities. The information is communicated in a request/response pair using an <iq/> element that contains a <query/> scoped by the 'jabber:iq:version' namespace. The following children of the <query/> are allowed in an IQ result:</p>
|
|
<ul>
|
|
<li><name/> -- The natural-language name of the software. This element is REQUIRED in a result.</li>
|
|
<li><version/> -- The specific version of the software. This element is REQUIRED in a result.</li>
|
|
<li><os/> -- The operating system of the queried entity. This element is OPTIONAL in a result.</li>
|
|
</ul>
|
|
</section1>
|
|
<section1 topic='Examples'>
|
|
<example caption='Querying Another Entity for its Software Version'><![CDATA[
|
|
<iq
|
|
type='get'
|
|
from='romeo@montague.net/orchard'
|
|
to='juliet@capulet.com/balcony'
|
|
id='version_1'>
|
|
<query xmlns='jabber:iq:version'/>
|
|
</iq>
|
|
]]></example>
|
|
<example caption='Receiving a Reply Regarding Software Version'><![CDATA[
|
|
<iq
|
|
type='result'
|
|
to='romeo@montague.net/orchard'
|
|
from='juliet@capulet.com/balcony'
|
|
id='version_1'>
|
|
<query xmlns='jabber:iq:version'>
|
|
<name>Exodus</name>
|
|
<version>0.7.0.4</version>
|
|
<os>Windows-XP 5.01.2600</os>
|
|
</query>
|
|
</iq>
|
|
]]></example>
|
|
<p>The standard error conditions described in &xep0086; apply (e.g., service unavailable if the entity does not support the namespace).</p>
|
|
</section1>
|
|
<section1 topic='Security Considerations'>
|
|
<p>There are no security features or concerns related to this proposal.</p>
|
|
</section1>
|
|
<section1 topic='IANA Considerations'>
|
|
<p>This document requires no interaction with &IANA;.</p>
|
|
</section1>
|
|
<section1 topic='XMPP Registrar Considerations'>
|
|
<p>The 'jabber:iq:version' namespace is registered in the protocol namespaces registry maintained by the ®ISTRAR;.</p>
|
|
</section1>
|
|
<section1 topic='XML Schema'>
|
|
<code><![CDATA[
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<xs:schema
|
|
xmlns:xs='http://www.w3.org/2001/XMLSchema'
|
|
targetNamespace='jabber:iq:version'
|
|
xmlns='jabber:iq:version'
|
|
elementFormDefault='qualified'>
|
|
|
|
<xs:annotation>
|
|
<xs:documentation>
|
|
The protocol documented by this schema is defined in
|
|
XEP-0092: http://www.xmpp.org/extensions/xep-0092.html
|
|
</xs:documentation>
|
|
</xs:annotation>
|
|
|
|
<xs:element name='query'>
|
|
<xs:complexType>
|
|
<xs:sequence minOccurs='0'>
|
|
<xs:element name='name' type='xs:string' minOccurs='1'/>
|
|
<xs:element name='version' type='xs:string' minOccurs='1'/>
|
|
<xs:element name='os' type='xs:string' minOccurs='0'/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
|
|
</xs:schema>
|
|
]]></code>
|
|
</section1>
|
|
</xep>
|