接続の確立
Visual Studio 2022 でSSIS を有効化
Visual Studio 2022 を使用している場合、SSIS を使用するにはSQL Server Integration Services プロジェクト拡張機能をインストールする必要があります。
- 拡張機能 -> 拡張機能の管理に移動します。
- 拡張機能の管理ウィンドウの検索ボックスで"SQL Server Integration Services Projects 2022" を検索し、リストから拡張機能を選択します。
- ダウンロードをクリックします。
- Visual Studio を終了し、ダウンロードしたMicrosoft.DataTools.IntegrationServices.exe インストーラーを実行します。デフォルト設定でインストーラーを進めてください。
- Visual Studio を開きます。これで、"Integration Services Project" プロジェクトテンプレートが利用可能になるはずです。
Garoon 接続マネージャーの追加
新しい接続マネージャーを以下のように作成します。
- "Integration Services Project" テンプレートを使用してVisual Studio プロジェクトを作成します。
- 接続マネージャーウィンドウ内で右クリックし、メニューから新しい接続を選択します。
- 説明カラムでCData Garoon Connection Manager を選択し、追加...をクリックします。
- 次のセクションで説明するように、本製品 を設定します。
または、既存のプロジェクトがあり、CData Garoon Source またはCData Garoon Destination がある場合:
- データフローでCData Garoon Source またはDestination コンポーネントを右クリックします。
- 編集...を選択し、編集ウィンドウを開きます。
- 接続マネージャー:の横にある新規作成...ボタンをクリックします。ドロップダウンのセレクターを使用して接続マネージャーを作成します。
- 次のセクションで説明するように、本製品 を設定します。
Garoon への接続
認証値に加えて、下記のパラメータを使いGaroon に接続しデータを取得します。
- Url:アカウントのURL。
NOTE:サポートされているバージョンで許容されるURL 形式は以下のとおりです。
- Cloud 版:https://(subdomain).cybozu.com
- Package 版(Windows 環境):http://(server IP address or host name)/scripts/(installation identifier)/grn.exe
- Package 版(Linux 環境):http://(server IP address or host name)/cgi-bin/(installation identifier)/grn.cgi
Garoon への認証
Garoon は、以下の認証メソッドをサポートしています。
パスワード
Garoon への認証には、以下を設定する必要があります。
- User:アカウントのユーザー名。
- Password:アカウントのパスワード。
- AuthScheme:AuthScheme をPassword に設定。
Additional Security
In addition to the mentioned authentication schemes, Garoon offers additional security in the form of both an additional Basic Auth header, and an SSL Certificate.Basic
Garoon environments using basic authentication will need to pass additional basic credentials. To do so, specify the following:
- BasicAuthUser - The basic login name.
- BasicAuthPassword - The basic password.
クライアントSSL
In addition to your authentication information, Garoon may be configured to require an SSL certificate to accept requests. To do so, set the following:
- SSLClientCert - The file containing the certificate of the SSL Cert. Or alternatively, the name of the certificate store for the client certificate.
- SSLClientCertType - The type of certificate.
- SSLClientCertSubject - (Optional) If searching for a certificate in the certificate store, the store is searched for subjects containing the value of the property.
- SSLClientCertPassword - If the certificate store is of a type that requires a password, this property is used to specify that password to open the certificate store.