Share via


InfoWarnFaultList 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 list of informational, warning, and error messages as returned from a mass transfer operation when uploading a resource to a conference center.

Syntax

<InfoWarnFaultList>
    <Fault>...</Fault>
    <InfoWarn>...</InfoWarn>
</InfoWarnFaultList>

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

Attributes

None.

Element Information

Parent Element

Element

Occurrence

MassTransferReply

1

ListMeetingsReply

1

Child Elements

Element

Occurrence

Fault

0 or more

InfoWarn

0 or more

Remarks

An attempt to upload a resource to the conference center might not succeed. In either case, an InfoWarnFaultList element is returned to indicate the status of the uploading operation.

Example

The following example shows a request to upload a resource. The GetURLRequest element is used to retrieve the URL for the resource to be uploaded, but in the ensuing HTTPS POST, a file that is not ESS-compliant is uploaded, resulting in an error being returned.

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
  <GetURLRequest>
    <StringQuery fieldName="name" operator="=" value="kick"/>
    <OptionList>
      <DecimalOption name="bytes" value="102963"/>
      <BooleanOption name="isUpload" value="True"/>
      <EnumerationOption name="resourceType" value="ESS">
        <String>ESS</String>
        <String>PWP</String>
        <String>WindowsMediaMovieRecording</String>
        <String>WindowsMediaMovieRecordingDownload</String>
        <String>BasicRecording</String>
      </EnumerationOption>
      <BooleanOption name="showSlideSet" value="True"/>
      <StringOption name="uploadName" value="strategy-slides"/>
    </OptionList>
  </GetURLRequest>
</PlaceWareConfCenter>

The following code shows a reply from a failed request of mass transfer to upload a presentation slide set to a conference center.

<PlaceWareConfCenter>
   <MassTransferReply>
      <InfoWarnFaultList>
         <InfoWarn>
            <Code>Warn.Client.BadData.Zip.Entry.Missing.Version</Code>
            <Message>No version Zip entry</Message>
            <OptionList>
               <TimeOption name="time" value="Wed Nov 23 16:23:18 PST 2005" />
               <StringOption name="fieldName" value="strategy-slides" />
            </OptionList>
         </InfoWarn>
         <InfoWarn>
            <Code>Warn.Client.BadData.Zip.Entry.Missing</Code>
            <Message>No slides.xml Zip entry</Message>
            <OptionList>
               <TimeOption name="time" value="Wed Nov 23 16:23:18 PST 2005" />
               <StringOption name="entryName" value="slides.xml" />
               <StringOption name="fieldName" value="strategy-slides" />
            </OptionList>
         </InfoWarn>
      <Fault>
         <Code>Client.BadSyntax.Empty.SlideSet</Code>
         <Message>Slide set contains no valid slides</Message>
         <OptionList>
            <TimeOption name="time" value="Wed Nov 23 16:23:18 PST 2005" />
            <StringOption name="fieldName" value="strategy-slides" />
          </OptionList>
         </Fault>
      </InfoWarnFaultList>
   </MassTransferReply>
</PlaceWareConfCenter>

See Also

Concepts

Error and Status Messages