<abstract>This specification defines an extension to XMPP Jingle for transferring a session (such as a voice call) from one person to another.</abstract>
&LEGALNOTICE;
<number>0251</number>
<status>Experimental</status>
<type>Standards Track</type>
<sig>Standards</sig>
<approver>Council</approver>
<dependencies>
<spec>XMPP Core</spec>
<spec>XEP-0166</spec>
</dependencies>
<supersedes/>
<supersededby/>
<shortname>NOT_YET_ASSIGNED</shortname>
&diana;
<author>
<firstname>Paul</firstname>
<surname>Chitescu</surname>
<email>paulc@null.ro</email>
</author>
&stpeter;
<revision>
<version>0.1</version>
<date>2008-10-22</date>
<initials>psa</initials>
<remark><p>Initial published version.</p></remark>
</revision>
<revision>
<version>0.0.2</version>
<date>2008-10-22</date>
<initials>psa</initials>
<remark><p>Added XML schema.</p></remark>
</revision>
<revision>
<version>0.0.1</version>
<date>2008-10-21</date>
<initials>dc/pc/psa</initials>
<remark><p>First draft.</p></remark>
</revision>
</header>
<section1topic='Introduction'anchor='intro'>
<p>The &xep0166; extensions to XMPP provide a technology for setup, management, and teardown of multimedia sessions between two entities, with an initial focus on voice over Internet Protocol (VoIP). By design, Jingle has been kept relatively simple and it does not cover the kind of advanced features that are available on the public switched telephone network (PSTN) and traditional private branch exchange (PBX) systems. However, because Jingle and XMPP itself provide an extensible technology for the real-time exchange of XML data, more advanced use cases can be defined through additional extensions. This document specifies one such extension, for the transfer of a session from one entity to another entity; although this extension will likely be used mainly in the context of VoIP interactions, it could also be used for any Jingle application type, such as video chat or screen sharing.</p>
<p>The protocol flow is shown below, where the caller is "caller@world.sun", the attendant is "attendant@office.biz", and the callee is "boss@bigdesk.biz".</p>
<p>First the caller initiates a normal call to the attendant.</p>
<p>Now the attendant decides to transfer the call. It does this by sending a Jingle action of type session-info to the caller, specifying the address of the callee via an <transfer/> element qualified by the "urn:xmpp:jingle:transfer:0" namespace &VNOTE;.</p>
<examplecaption='Attendant transfers the call'><![CDATA[
<iqfrom='attendant@office.biz/desk'
id='transfer1'
to='caller@world.sun/phone'
type='set'>
<jinglexmlns='urn:xmpp:jingle:0'
action='session-info'
initiator='caller@world.sun/phone'
responder='attendant@office.biz/desk'
sid='851ba2'>
<transferxmlns='urn:xmpp:jingle:transfer:0'
to='boss@bigdesk.biz/phone'/>
</jingle>
</iq>
]]></example>
<p>If the caller understands the transfer request, it acknowledges the request (if not, it MUST return a &feature; error as specified in <cite>XEP-0166</cite>).</p>
<examplecaption='Caller acks transfer request'><![CDATA[
<iqfrom='attendant@office.biz/desk'
to='caller@world.sun/phone'
id='transfer1'
type='result'/>
]]></example>
<p>Now the caller puts the attendant on hold.</p>
<examplecaption='Caller puts attendant on hold'><![CDATA[
<iqfrom='attendant@office.biz/desk'
id='hold1'
to='caller@world.sun/phone'
type='set'>
<jinglexmlns='urn:xmpp:jingle:0'
action='session-info'
initiator='caller@world.sun/phone'
sid='851ba2'>
<holdxmlns='urn:xmpp:jingle:apps:rtp:info:0'/>
</jingle>
</iq>
]]></example>
<p>While the attendant is on hold, the caller initiates a new call to the callee. The session-initiation request includes an <transfer/> element that specifies the attendant's address.</p>
<examplecaption='Caller initiates new call to callee'><![CDATA[
<p>The protocol flow is shown below, where the caller is "caller@world.sun", the attendant is "attendant@office.biz", and the callee is "boss@bigdesk.biz".</p>
<p>First the caller initiates a normal call to the attendant.</p>
<p>Now the attendant decides to transfer the call by sending a session-info action to the caller containing details about the attendant's session with the callee.</p>
<examplecaption='Attendant transfers the call'><![CDATA[
<iqfrom='attendant@office.biz/desk'
id='transfer1'
to='caller@world.sun/phone'
type='set'>
<jinglexmlns='urn:xmpp:jingle:0'
action='session-info'
initiator='caller@world.sun/phone'
responder='attendant@office.biz/desk'
sid='851ba2'>
<transferxmlns='urn:xmpp:jingle:transfer:0'
from='attendant@office.biz/desk'
sid='663e9f'
to='boss@bigdesk.biz/phone'/>
</jingle>
</iq>
]]></example>
<p>If the caller understands the transfer request, it acknowledges the request (if not, it MUST return a &feature; error as specified in <cite>XEP-0166</cite>).</p>
<examplecaption='Caller acks transfer request'><![CDATA[
<iqfrom='attendant@office.biz/desk'
id='transfer1'
to='caller@world.sun/phone'
type='result'/>
]]></example>
<p>Now the caller puts the attendant on hold.</p>
<examplecaption='Caller puts attendant on hold'><![CDATA[
<iqfrom='attendant@office.biz/desk'
id='hold1'
to='caller@world.sun/phone'
type='set'>
<jinglexmlns='urn:xmpp:jingle:0'
action='session-info'
initiator='caller@world.sun/phone'
sid='851ba2'>
<holdxmlns='urn:xmpp:jingle:apps:rtp:info:0'/>
</jingle>
</iq>
]]></example>
<p>While the attendant is on hold, the caller initiates a new call to the callee. The session-initiation request includes an <transfer/> element that specifies the attendant's address and the SessionID of the attendant's session with the callee.</p>
<examplecaption='Caller initiates new call to callee'><![CDATA[
<p>The callee identifies an active session with the same from+to+sid and replaces that with the incoming call, so it hangs up on the existing session with the attendant.</p>
<examplecaption='Callee hangs up on attendant'><![CDATA[
<iqfrom='boss@bigdesk.biz/phone'
id='hangup2'
to='attendant@office.biz/desk'
type='set'>
<jinglexmlns='urn:xmpp:jingle:0'
action='session-terminate'
initiator='attendant@office.biz/desk'
sid='663e9f'>
<reason>
<success/>
<transferredxmlns='urn:xmpp:jingle:transfer:0'/>
<text>Attended transfer success</text>
</reason>
</jingle>
</iq>
]]></example>
<p>The callee then acknowledges the session request from the caller.</p>
<p>If an entity supports session transfers, it MUST advertise that fact by returning a feature of "urn:xmpp:jingle:transfer:0" &VNOTE; in response to &xep0030; information requests.</p>
<examplecaption="Service discovery information request"><![CDATA[
<p>In order for an application to determine whether an entity supports this protocol, where possible it SHOULD use the dynamic, presence-based profile of service discovery defined in &xep0115;. However, if an application has not received entity capabilities information from an entity, it SHOULD use explicit service discovery instead.</p>
<p>This specification defines the following XML namespace:</p>
<ul>
<li>urn:xmpp:jingle:transfer:0</li>
</ul>
<p>Upon advancement of this specification from a status of Experimental to a status of Draft, the ®ISTRAR; shall add the foregoing namespaces to the registry located at &NAMESPACES;, as described in Section 4 of &xep0053;.</p>