<!--
    File:    ClientSetVarsResp.dtd
    Purpose: Document type definition for client response to a 'Set Variables'
             request.

    This file is a part of the WebLogic Process Integrator project,
    from the eCommerce Integration Division of BEA Systems Inc.
    8920 Woodbine Avenue, Suite 400, Markham, Ontario, Canada L3R 9W9.
    http://www.beasys.com

    Copyright (c) 2000 BEA Systems Inc.
    All rights reserved.
-->

<!--
    Use the XPath function to extract the returned value, for example:
        XPath("/set-variables/child::variable[attribute::name="<var-name>"]/child::text()")
    or (using the shortened syntax):
        XPath("/set-variables/variable[@name="<var-name>"]/text()")
-->

<!ELEMENT set-variables (variable+)>
<!ELEMENT variable (#PCDATA)>
<!ATTLIST variable name NMTOKEN #REQUIRED>
