SetConferencingServiceData Message

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.

This message is used to set parameters for the entire conferencing service.

Components

Component Type

XML Element

Request

SetConferencingServiceDataRequest

Reply

SetConferencingServiceDataReply

Remarks

A caller must be a member of the Administrator role.

The Office Live Meeting service no longer supports exception redirection in any SetConferencingServiceData message.

Only maxInactiveInterval can be changed by the administrator.

Example

This example shows how to readjust the session time-out value of a conference center, clear the Extended Registration requirement, and allow Office Communicator users to bypass a meeting lobby. Adjusting the session time-out value of a Conference Center can be a response to users complaints that browser sessions timed out too quickly.

Note that allowFastLobbyJoin should only be set to True when forceExtendedRegistration is set to False. Extended registration requires that an attendee supply an email address and company name before admittance to a meeting. For this reason, a user cannot bypass the meeting lobby when Extended Registration is enforced.

When allowFastLobbyJoin is set to False, you should not include the fastLobbyStaticUsernameStringOption Element.

The following code shows a request sent to the conference center.

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
  <SetConferencingServiceDataRequest>
    <OptionList>
      <BooleanOption name="audioEmbedded" value="True"/>
      <BooleanOption name="enableAudioVOIP" value="True"/>
      <DecimalOption name="maxInactiveInterval" value="2400"/>
      <BooleanOption value="False" name="forceExtendedRegistration" />
      <BooleanOption value="True" name="allowFastLobbyJoin" />
      <StringOption value="OCUser" name="fastLobbyStaticUsername" />
    </OptionList>
  </SetConferencingServiceDataRequest>
</PlaceWareConfCenter>

The following shows a reply returned from the conference center when the request is processed successfully.

<PlaceWareConfCenter>
  <SetConferencingServiceDataReply/>
</PlaceWareConfCenter>

See Also

Concepts

SetConferencingServiceDataRequest Element

SetConferencingServiceDataReply Element