4.5 Query for the Details of a Conference

The following example is a getConference request from a protocol client application to the Focus Factory.

 SERVICE sip:alice@contoso.com;gruu;opaque=app:conf:focusfactory SIP/2.0
 From: sip:alice@contoso.com;tag=f7588dc66124429ab736;epid=1
 To: sip:alice@contoso.com;gruu;opaque=app:conf:focusfactory;tag=ccb81c3509
 Call-ID: 5a27d6b1a82f4668be39db975d6fe184
 CSeq: 5 SERVICE
 Content-Type: application/cccp+xml
 ...Other SIP headers...
  
 <request C3PVersion="1"
          requestId="5" 
          from="sip:alice@contoso.com"
          to="sip:alice@contoso.com;gruu;opaque=app:conf:focusfactory"
          xmlns="urn:ietf:params:xml:ns:cccp"
          xmlns:msci="http://schemas.microsoft.com/rtc/2005/08/confinfoextensions">
   <getConference>
     <conferenceKeys msci:conference-id="SDFBSD12"/>
 <msci:encryption-key>
   <msci:x509-certificate>123213789BC234D</msci:x509-certificate>
 </msci:encryption-key>
   </getConference>
 </request>

The following example is a getConference response from a Focus Factory to a protocol client application.

 SIP/2.0 200 OK
 From: sip:alice@contoso.com;tag=f7588dc66124429ab736;epid=1
 To: sip:alice@contoso.com;gruu;opaque=app:conf:focusfactory;tag=ccb81c3509
 Call-ID: 5a27d6b1a82f4668be39db975d6fe184
 CSeq: 5 SERVICE
 Content-Type: application/cccp+xml
 ...Other SIP headers...
  
 <response C3PVersion="1"
           requestId="5" 
       from="sip:alice@contoso.com;gruu;opaque=app:conf:focusfactory"
           to="sip:alice@contoso.com"
           code="success"
           xmlns="urn:ietf:params:xml:ns:cccp"
           xmlns:msci="http://schemas.microsoft.com/rtc/2005/08/confinfoextensions">
   <getConference>
     <conference-info entity=""
                      version="2"
                      xmlns="urn:ietf:params:xml:ns:conference-info">
       <conference-description>
         <subject>Conference subject 2</subject>
         <msci:conference-id>SDFBSD12</msci:conference-id>        
         <msci:expiry-time>2006-01-10T17:11:47Z</msci:expiry-time>
         <msci:admission-policy>openAuthenticated</msci:admission-policy>
         <msci:organizer-roaming-data>
           <AnyOrganizerXml/>
         </msci:organizer-roaming-data>
         <msci:notification-data>
           <AnyParticipantXml/>
         </msci:notification-data>
       </conference-description>
       <users>
         <user entity="sip:bob@contoso.com">
           <roles>
             <entry>presenter</entry>
           </roles>
         </user>
       </users>
       <msci:conference-view>       
         <msci:entity-view entity="chat"/>
         <msci:entity-view entity="meeting">
           <msci:entity-settings>
             <settings 
               xmlns="http://schemas.microsoft.com/rtc/2005/08/dataconfinfoextensions">
               <app-viewing-behavior>enableWithFullSharing</app-viewing-behavior>
               <conferencing-type>collaboration</conferencing-type>
             </settings>
           </msci:entity-settings>
         </msci:entity-view>
       </msci:conference-view>
     </conference-info>
   </getConference>
 </response>