Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Go to .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/MigrationUtility folder.
  2. Open export.xml  and do the following: 

    1. Provide the location of Adeptia Installation directory till Adeptia Server folder in the <SourceInstallDir> tag, for example, C:\/Program Files\/Adeptia Suite 6.5/AdeptiaSuite-6.5.3\/AdeptiaServer.

    2. Provide the location where you want to create the export zip along with the file name in the <TargetZipLoc> tag, for example, C:\Users\Admin\Desktop\Export/AdeptiaSuite/export.zip.
    3. Specify either “A” to export all objects(Single activity) or “P” to export Process Flows or “PA” to export both Process Flows and all objects in the <ExportType> tag.
    4. Type the group name to which activity belongs in the <Groups> tag, for example, DevelopGroup. Set the value of export to “yes” and "no" for other groups. For example, DevelopGroup.Go to the Activities XML tag corresponding to Set the activity id of the group. In our case, it is , for example, 002 for “DevelopGroup”.
      Image Removed
      Image Added

    5. Type the name /or entity ID of the activity for a particular service that you want to export under <name> and <id> tags respectively for the service<Activities> tag. Ensure that you are adding the name or entityid in the specified ActivityId. The format of EntityId is: <id>192168001079133433195450000006<<id>EntiityID</id>.
      Image RemovedThe format of name is: <name>Name</name>.

      Image Added

      Info

      Wildcard characters (“*” and “?”) are also supported in the name of the activity.

      “*” stands for zero or more characters and “?” stands for a single character. If an activity name under the <name> tag for a particular object contains either of the two characters then all the objects at the source end matching the <name> before “*”(and multiple characters after it) and all characters before “?” (and only one character after it) that belongs to the exported group will be migrated.

      For example,

      For exporting all File Source activities starting with “FS_” you need to specify the following:

       

      <activity name="FileSource">
      <name>FS_*</name>
      </activity>

      For exporting File Source activities with entity id = “010000036202128947281839100086” and “010000036202133067542452000039”, you need to specify the following:

       

      <activity name="FileSource">
      <id>010000036202128947281839100086</id>
      <id>010000036202133067542452000039</id>
      </activity>
    6. Remove the highlighted lines from the bottom of export.xml. If these lines are left out then server-configure.properties and custom classes will also be migrated.

      Image RemovedImage Added

    7. Save the file.

  3. Open Command Prompt (Windows) or Terminal (Linux).
  4. Go to the directory .../<AdeptiaInstallFolder>/ AdeptiaServer/ServerKernel folder.
  5. Run the following command:

...