intra-mart Accel Platform 設定ファイルリファレンス 第34版 2024-04-01

統合Windows認証パス設定

概要

統合Windows認証機能のパス(URL)毎の設定を行います。
モジュール 統合Windows認証モジュール
フォーマットファイル(xsd) WEB-INF/schema/im-sso-windows-path-config.xsd
設定場所 WEB-INF/conf/im-sso-windows-path-config/{任意のファイル名}.xml

<?xml version="1.0" encoding="UTF-8"?>
<im-sso-windows-path-config
    xmlns="http://www.intra-mart.jp/sso-windows/config/im-sso-windows-path-config"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.intra-mart.jp/sso-windows/config/im-sso-windows-path-config ../../schema/im-sso-windows-path-config.xsd">

  <no-authentication>
    <path>url_to_disable_windows_authentication</path>
    <path regex="true">url_to_disable_windows_authentication/.*</path>
  </no-authentication>

</im-sso-windows-path-config>

リファレンス

統合Windows認証を行わない設定

タグ名 no-authentication
統合Windows認証を行わないURLを設定します。

【設定項目】

<im-sso-windows-path-config>
  <no-authentication>
    <path>url_to_disable_windows_authentication</path>
    <path regex="true">url_to_disable_windows_authentication/.*</path>
  </no-authentication>
</im-sso-windows-path-config>

必須項目 ×
複数設定
設定値・設定する内容
path 統合Windows認証を行わないURL
単位・型 なし
省略時のデフォルト値 なし
親タグ im-sso-windows-path-config

統合Windows認証を行わないURLの設定

タグ名 path
統合Windows認証を行わないURLを設定します。
regex=”false” を指定した場合、または regex を指定しない場合、静的にパスを指定したものとして扱われます。
regex=”true” を指定した場合、正規表現でマッチするパスを指定したものとして扱われます。
URLにはコンテキストパスを含めずに、スラッシュから始める形で設定してください。
例えば、サイトマップを指定する場合 <path>/menu/sitemap</path> のように設定します。

【設定項目】

<no-authentication>
  <path>url_to_disable_windows_authentication</path>
  <path regex="true">url_to_disable_windows_authentication/.*</path>
</no-authentication>

必須項目 ×
複数設定
設定値・設定する内容 統合Windows認証を行わないURLを指定します。
単位・型 なし
省略時のデフォルト値 なし
親タグ no-authentication

【属性】

属性名 説明 必須 デフォルト値
regex
パスの内容が正規表現で書かれているかを指定します。
値に true を記述することで、タグの値が正規表現として扱われます。
× false