Top
ETERNUS SF AdvancedCopy Manager V16.9.1 Operation Guide for Copy Control Module
FUJITSU Storage

C.2.2 XML format of Execution Type Command

The XML format of execution type command is follows:

The display example for each XML format shows the followings.

Display Example of Execution Result Message Only

Display Example of Execution Result Including Detail Information

Information

If the error occurs when the command is executed (e.g. parameter error), the command outputs the error information like as follows.

  • Without the -xml option

    > acec start -g
    ccm1001 An invalid argument was specified.
    
    Usage:
            acec start -g COPY-GROUP(EC) [-p PAIR] [-r] [-xml]
            acec start -g COPY-GROUP(REC) [-p PAIR] [-r]
                    [-transfer {sync [-split {auto|manual}]|through|consist|stack}]
                    [-recovery {auto|manual}]
                    [-skip]
                    [-xml]
    
  • With the -xml option

    > acec start -g -xml
    <?xml version="1.0" encoding="UTF-8"?>
    <Response version="1.0">
      <ReturnCode>1</ReturnCode>
      <Message>ccm1001 An invalid argument was specified.</Message>
    </Response>

The warning message by executing the command is output as follows.

  • Without the -xml option

    > acec reverse -g group01
    
    ET001/0x1:ET001/0x6
    # DATE : 2008/06/24 16:28:00 - << EC Change >>
    Warning:ccm7001 The target logical volume is write protected. target logical volume=ET001/0x1
    
    ET001/0x2:ET001/0x7
    # DATE : 2008/06/24 16:28:00 - << EC Change >>
    
      Succeeded : 2
      Failed    : 0
  • With the -xml option

    > acec reverse -g group01 -xml
    <?xml version="1.0" encoding="UTF-8"?>
    <Response version="1.0">
        <ReturnCode>0</ReturnCode>
        <Message>Successful completion.</Message>
        <ResultList>
            <Result>
                <Object>ET001/0x1:ET001/0x6</Object>
                <Status>Succeeded</Status>
                <Message>Warning:ccm7001 The target logical volume is write protected. target logical volume=ET001/0x1</Message>
                <Detail>DATE : 2008/06/24 16:28:00 - &lt;&lt; EC Change &gt;&gt;</Detail>
            </Result>
            <Result>
                <Object>ET001/0x2:ET001/0x7</Object>
                <Status>Succeeded</Status>
                <Message></Message>
                <Detail>DATE : 2008/06/24 16:28:00 - &lt;&lt; EC Change &gt;&gt;</Detail>
            </Result>
        </ResultList>
    </Response>