Interstage Application Server シングル・サインオン運用ガイド
目次 索引 前ページ次ページ

第7章 認証サーバ間連携> 7.4 カスタマイズ> 7.4.2 Webブラウザに表示するメッセージのカスタマイズ

7.4.2.6 認証を行うシステムの設定および確認待ち画面用タグの仕様

 相手シングル・サインオンシステムに対して、認証を行うシステムの設定、または認証を行うシステムの確認中に表示される画面に組み込まれているタグの仕様について以下に説明します。


 メッセージファイル“200watching_communication_ja.html”にあらかじめ組み込まれているタグを示します。
 なお、以下の例に記載されている左端の数字は、編集時に注意が必要な行がわかるように追記したものであり、実際のメッセージファイルには記載されていません。

 1:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 2:<html lang="ja">
 3:<head>
 4:<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
 5:<title> </title>
 6:<meta http-equiv="Content-Script-Type" content="text/javascript">
 7:<script type="text/javascript">
 8:<!―
 9:var docTitle = "Waiting";
10:var statusMsg = "          しばらくお待ちください。          ";
11:var timer;
12:
13:function showItem( idDiv, idLayer )
14:{
15:    if ( document.getElementById )
16:    {
17:        document.getElementById(idDiv).style.visibility = "visible";
18:    }
19:    else
20:    if ( document.layers )
21:    {
22:        document.layers[idLayer].visibility = "show";
23:    }
24:    else
25:    if ( document.all )
26:    {
27:        document.all(idDiv).style.visibility = "visible";
28:    }
29:{
30:
31:function disp(){
32:    statusMsg = statusMsg.substring(1, statusMsg.length) + statusMsg.substring(0, 1);
33:    window.status = statusMsg;
34:    setTimeout( 'disp()', 250 );
35:    return;
36:}
37:
38:function communicationsend(){
39:    parent.communication.location.href = "<!--SSO_CDS_RESPONSE_PATH-->";
40:    return;
41:}
42:
43:function autosend(){
44:    showItem( "divMsg", "layerMsg" );
45:    parent.document.title=docTitle;
46:    disp();
47:    return;
48:}
49:// -->
50:</script>
51:</head>
52:<body onload="autosend()">
53:
54:<noscript>
55:Please enable JavaScript on your browser.
56:</noscript>
57:
58:<layer id="layerMsg" visibility="hidden">
59:<div id="divMsg" style="visibility: hidden">
60:<table border="0">
61:<tr><td>
62:認証サーバ間連携の処理を実行中です。
63:</td></tr>
64:</table>
65:<h3 align="right">Interstage Single Sign-on</h3>
66:</div>
67:</layer>
68:</body>
69:</html>

 メッセージファイルを編集する際には、以下の点に注意してください。


目次 索引 前ページ次ページ

Copyright 2008 FUJITSU LIMITED