Home

Configuring Tomcat for Single Sign On Support

シングル・サイン・オンのサポートのためにTomcatを設定する


[Introduction] [Requirements] [Security]

Introduction

はじめに

In many large web sites, it is desireable to recognize an authenticated user the first time that he or she tries to access a protected area in any web application, and then recognize that authenticated user across other web applications in the same environment without requiring the user to log in again. Tomcat supports that capability if it is configured as described in this document.

大多数のWebサイトでは、どのWebアプリケーションでも、最初に保護された場所にアクセスしようとするとユーザ認証が行なわれ、それからユーザーを再度認証する必要なくもう一度同じ環境において他のWebアプリケーションを横断して認証されたユーザーを認識することは望まれる。 この文書で記述されるように構成されるならば、Tomcatはその機能をサポートします。

Configuration Requirements

構成必要条件

To successfully configure Tomcat for "single sign on" support, the following requirements must be taken into account:

「シングル・サイン・オン」をサポートしたTomcatの設定を成功させるためには、以下の必要条件がアカウントに利用されなければなりません:

The system administrator must configure the $CATALINA_HOME/conf/server.xml file as follows to enable "single sign on" support:

システム管理者は、「シングル・サイン・オン」サポートを有効にするために $CATALINA_HOME/conf/server.xmlファイルを以下のように設定しなければなりません。

Security Considerations

セキュリティ考慮

Because the "single signon support" implementation utilizes cookies to maintain use identity across applications, the same risks of information exposure apply here as when cookies are used to maintain session identity within a single web application. If you are concerned that attackers may try to impersonate an ongoing session, you should run across a secure network connection (such as an SSL connection using the https protocol).

「シングル・サインオン・サポート」実装は、アプリケーションを横断してユーザの識別を維持するためにクッキーを利用するので、クッキーがある時が一つのWebアプリケーションの範囲内でセッション独自性を維持するので、情報露出の同じ危険はここであてはまります。 あなたが心配するならば、その攻撃者は進行中のセッションに扮しようと試みるかもしれません、あなたはセキュアなネットワーク接続(例えばhttpsプロトコルを使っているSSL接続)を横断して実行するはずです。



$Id: singlesignon.html,v 1.1.1.1 2003/04/09 15:16:22 ytp Exp $