Backing Up Application

This manual is in pilot operation.

Overview

This function is the same as "Backing Up Application" performed via fusion_place [Manager]. It extracts all data contained in the application from the database. Only users with Designer or Administrator privileges can execute this request.

How to Write a Request

Below is an example request for "Backing Up Application":

<request type="BACKUP_APPLICATION" desc="Application Backup">
  <parameters>
    <parameter name="APPLICATION" value="SAMPLE1"/> (1)
  </parameters>
  <contents> (2)
  </contents>
</request>
1 "Application" parameter
2 Request Content (Not required)

Parameters

Specify the target application.

Parameter Required Key Description

APPLICATION

Yes

None

Specify the label of the target application.

Request Content

There is no "Request Content."

Response Content

Below is an example response for "Backing Up Application":

<response type="BACKUP_APPLICATION" desc="Application Backup">
  <returned-contents> (1)
    1f8b080...
  </returned-contents>
  <result>
    <code>SUCCESSFUL</code> (2)
    <started-at time-zone="Asia/Tokyo">2016/04/28 09:50:04.227</started-at>
    <ended-at time-zone="Asia/Tokyo">2016/04/28 09:50:07.827</ended-at>
    <messages>
    </messages>
  </result>
</response>
1 Returned Content
2 Processing Result Code

Returned Content

The returned content is the application backup data expressed in hexadecimal format. When this data is converted to binary format and saved as a file, it becomes an application backup file. Using that file, you can create a new application to restore the backed-up application.

When using the Requester, you can use the hex2bin option in external mode to convert the returned content to binary format and save it as a file.

Message

If the result code is "SUCCESSFUL," nothing is displayed in the message field.

If the result code is anything other than "SUCCESSFUL," a message is displayed indicating the warning or error details.