|
Oracle Business Intelligence Enterprise Editionデプロイメント・ガイド > Oracle Business IntelligenceへのSingle Sign-On製品の実装 > サンプルの構成ファイル >
Microsoft IISの使用によるユーザー認証の実行
<?xml version="1.0"?>
<WebConfig> <ServerInstance> <!-- other settings ... --> <Listener> <Firewall> <Allow address="127.0.0.1"/> <Allow address="192.168.1.100/> <Allow address="192.168.1.101/> </Firewall> <!-- other settings ... --> </Listener> <!-- other settings ... --> <CredentialStore> <CredentialStorage type="file" path="<OracleBIData>/web/config/credentialstore.xml" passphrase="another_secret"/> <!-- other settings ... --> </CredentialStore> <!-- other settings ... --> <Auth> <SSO enabled="true"> <ParamList> <!--IMPERSONATE param is used to get the authenticated user's username and is required --> <Param name="IMPERSONATE" source="serverVariable" nameInSource="REMOTE_USER" stripWindowsDomain="true"/> </ParamList> </SSO> </Auth> <!-- other settings ... --> </ServerInstance> </WebConfig>
この結果、接続文字列は次の形式になります。
UID=Impersonator;PWD=secret;IMPERSONATE=testuser;
|