2.2.7.1.2 asyncPrintUIResponse Element

The asyncPrintUIResponse XML element MUST be the root element of the XML documents used in the AsyncUIMessageBoxReply (section 2.2.7.4) and AsyncUICustomUIReply (section 2.2.7.6) client-to-server response formats.

The document markup MUST be schema-valid according to the following XML schema, which refers to additional schema fragments (section 2.2.7). Schema-Validity Assessment of the document's root element MUST result in a value of "valid" for the [validity] property ([XMLSCHEMA1/2] section 3.3.5).

 <xs:element name="asyncPrintUIResponse">
   <xs:complexType>
     <xs:sequence>
       <xs:element name="v1">
         <xs:complexType>
           <xs:sequence>
             <xs:element name="requestClose">
               <xs:complexType>
                 <xs:choice>
                   <xs:element
                     ref="CustomUI"
                    />
                   <xs:element
                     ref="messageBoxUI"
                    />
                 </xs:choice>
               </xs:complexType>
             </xs:element>
           </xs:sequence>
         </xs:complexType>
       </xs:element>
     </xs:sequence>
   </xs:complexType>
 </xs:element>

Child Elements

Element

Type

Description

v1

N/A

A required element within an asyncPrintUIResponse element that MUST contain exactly one requestClose element.

requestClose

N/A

A required element that MUST contain exactly one messageBoxUI or CustomUI element.

CustomUI

CustomUI

 See section 2.2.7.6.1.

messageBoxUI

messageBoxUI

 See section 2.2.7.3.4.