MeetingReply Element

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Represents a meeting in a reply.

Syntax

<MeetingReply>
    <OptionList>...</OptionList>
</MeetingReply>

The following sections describe attributes, parent elements, and child elements.

Attributes

None.

Element Information

Parent Elements

Element

Occurrence

CreateMeetingRequest

1

ModifyMeetingReply

1

ListMeetingsReply

1

Child Element

Element

Occurrence

OptionList

1

Remarks

An option only appears in the OptionList element if the meeting has that option and if the option is specified in the FieldList element in the corresponding request. For a list of read/write and read-only options, see CreateMeetingRequest. You can request the meeting option values to be returned in the reply by listing them in the FieldList element within the CreateMeetingRequest element.

For an access-controlled meeting in which an audienceACL or presenterACL option is present and the partialSuccessOK attribute is set to true in the original CreateMeetingRequest, if a specified audience or presenter in the meeting’s ACL does not exist or cannot be authenticated, the returned MeetingReply element will contain audienceListInvalid or presenterListInvalid options:

audienceListInvalid is a string list containing names of the users who are specified in the audienceACL option when a meeting is created. The list is of the StringListOption type. It is returned in an OptionList element contained in MeetingReply as part of the CreateMeetingReply response.

presenterListInvalid is a string list containing names of the users who are specified in the presenterACL option when a meeting is created, but do not exist. The list is of the StringListOption type. It is returned in an OptionList element contained in MeetingReply as part of the CreateMeetingReply response.

The following is an XML snippet showing the use of audienceListInvalid and presenterListInvalid

Request to create an access-controlled meeting:

<PlaceWareConfCenter authUser="admin" authPassword="admin">
   <CreateMeetingRequest maxUsers="20" name="MeetingNamekick" title="Tailspin Toys 2000 Kickoff" partialSuccessOK="True">
      <OptionList>
         <TimeOption name="startTime" value="2008-11-01T18:00:00Z" />
         <TimeOption name="endTime" value="2008-11-01T20:00:00Z" />
         <StringOption name="timeZone" value="America/Los_Angeles" />
         <BooleanOption name="enableAudioBroadcast" value="True" />
         <BooleanOption name="enableAudioVOIP" value="True" />
         <StringListOption name="audienceACL">
            <String>admin</String>
            <String>unknownAttendee1</String>
            <String>unknownAttendee2</String>
         </StringListOption>
         <StringListOption name="presenterACL">
            <String>admin</String>
            <String>unknownPresenter1</String>
            <String>unknownPresenter2</String>
         </StringListOption>
      </OptionList>
      <FieldList>
         <Name>mid</Name>
         <Name>enableAudioBroadcast</Name>
         <Name>enableAudioVOIP</Name>
      </FieldList>
   </CreateMeetingRequest>
</PlaceWareConfCenter>

Response from the access-controlled meeting request:

<PlaceWareConfCenter>
   <CreateMeetingReply>
      <MeetingReply>
         <OptionList>
            <StringOption value="w6f0kj1cnq36f89p" name="mid">
            </StringOption>
            <BooleanOption value="True" name="enableAudioBroadcast">
            </BooleanOption>
            <BooleanOption value="True" name="enableAudioVOIP">
            </BooleanOption>
            <StringListOption name="audienceListInvalid">
               <String>unknownattendee2</String>
               <String>unknownattendee1</String>
            </StringListOption>
            <StringListOption name="presenterListInvalid">
               <String>unknownpresenter2</String>
               <String>unknownpresenter1</String>
            </StringListOption>
         </OptionList>
      </MeetingReply>
   </CreateMeetingReply>
</PlaceWareConfCenter>

The enableRecordingExpiration, recordingExpirationTimeAmount, recordingExpirationTimeType, and status options have been added to this element in Live Meeting service API Update for Live Meeting 2007.

For a list of read/write and read-only options that can appear in the OptionList child element, see CreateMeetingRequest.

See Also

Concepts

CreateMeeting Message

ListMeetingsReply Element