IM-RPA 利用ガイド 第2版 2020-12-01

IM-RPA 利用ガイド 第2版 2020-12-01

7.2. 設定ファイル

7.2.1. 概要

UiPath連携 に関する設定です。
モジュール
UiPath連携
フォーマットファイル(xsd)
WEB-INF/schema/im-uipath-config.xsd
設定場所
WEB-INF/conf/im-uipath-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<im-uipath-config
    xmlns="http://intra-mart.co.jp/uipath/im-uipath-config"
    mlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://intra-mart.co.jp/uipath/im-uipath-config ../schema/im-uipath-config.xsd ">

  <orchestrator id="default" use-insecure-ssl="true">
    <url>https://xxx.xxx.xxx.xxx/</url>
    <tenancyName>Default</tenancyName>

    <authentication>
      <username>username</username>
      <password>password</password>
    </authentication>
  </orchestrator>
</im-uipath-config>

7.2.2. リファレンス

7.2.2.1. テナント別設定

タグ名 orchestrator
テナント毎の UiPath Orchestrator接続に関する設定を定義します。

【設定項目】

<im-uipath-config>
  <orchestrator id="default" use-insecure-ssl="true"></orchestrator>
</im-uipath-config>

必須項目 ×
複数設定
設定値・設定する内容 orchestrator タグを親とするタグ
単位・型 なし
省略時のデフォルト値 なし
親タグ im-uipath-config

【属性】

属性名 説明 必須 デフォルト値
id
テナントID
このタグの設定の対象となるテナントIDを指定してください。
× なし
use-insecure-ssl
セキュアでないSSLを利用するか否か
UiPath Orchestratorへの接続にhttpsプロトコルを利用する場合は true を設定してください。
× なし

7.2.2.2. URL設定

タグ名 url
UiPath OrchestratorのURLを設定します。

【設定項目】

<im-uipath-config>
  <orchestrator id="default" use-insecure-ssl="true">
    <url>http://xxx.xxx.xxx.10/</url></orchestrator>
</im-uipath-config>

必須項目
複数設定 ×
設定値・設定する内容 UiPath OrchestratorへのURL
単位・型 URL
省略時のデフォルト値 なし
親タグ orchestrator

7.2.2.3. テナント名設定

タグ名 tenancyName
UiPath Orchestratorのテナント名を設定します。

【設定項目】

<im-uipath-config>
  <orchestrator id="default" use-insecure-ssl="true">
    <tenancyName>Default</tenancyName></orchestrator>
</im-uipath-config>

必須項目
複数設定 ×
設定値・設定する内容 UiPath Orchestrator上で管理するテナント名
単位・型 文字列
省略時のデフォルト値 なし
親タグ orchestrator

7.2.2.4. 認証設定

タグ名 authentication
UiPath Orchestratorへの接続時の認証設定です。

【設定項目】

<im-uipath-config>
  <orchestrator id="default" use-insecure-ssl="true"><authentication></authentication>
  </orchestrator>
</im-uipath-config>

必須項目
複数設定 ×
設定値・設定する内容 authentication タグを親とするタグ
単位・型 なし
省略時のデフォルト値 なし
親タグ orchestrator

7.2.2.5. ユーザ名設定

タグ名 username
UiPath Orchestratorへの接続時のユーザ名設定です。

【設定項目】

<im-uipath-config>
  <orchestrator id="default" use-insecure-ssl="true"><authentication>
      <username>username</username></authentication>
  </orchestrator>
</im-uipath-config>

必須項目 ×
複数設定 ×
設定値・設定する内容 UiPath Orchestratorへ接続する際のユーザ名
単位・型 文字列
省略時のデフォルト値 なし
親タグ authentication

7.2.2.6. パスワード設定

タグ名 password
UiPath Orchestratorへの接続時のパスワード設定です。

【設定項目】

<im-uipath-config>
  <orchestrator id="default" use-insecure-ssl="true"><authentication><password>your password</password>
    </authentication>
  </orchestrator>
</im-uipath-config>

必須項目 ×
複数設定 ×
設定値・設定する内容 UiPath Orchestratorへ接続する際のパスワード
単位・型 文字列
省略時のデフォルト値 なし
親タグ authentication