| 1 | = ログインユーザの定義 = |
| 2 | |
| 3 | !InfoEyes PrintServerではログインユーザをXMLファイルにより管理しています。 |
| 4 | |
| 5 | login.exeを変更することにより任意のデータベースを使用したログインを作成することが可能です。 |
| 6 | |
| 7 | == ユーザ定義ファイルの場所 == |
| 8 | |
| 9 | ユーザ定義ファイルは以下の場所にあります。 |
| 10 | |
| 11 | !InfoEyes !PrintServerインストールディレクトリのFormat/Menus/Users.xml |
| 12 | |
| 13 | == 定義内容 == |
| 14 | |
| 15 | ログインユーザの定義項目は以下です。 |
| 16 | |
| 17 | タグ名:User |
| 18 | ||アトリビュート名||内容|| |
| 19 | ||ID||ユーザID|| |
| 20 | ||Password||パスワード|| |
| 21 | ||Roles||ロール(現バージョンでは未使用)|| |
| 22 | ||MenuID||ユーザが使用するメニューID|| |
| 23 | |
| 24 | == 定義例 == |
| 25 | |
| 26 | {{{ |
| 27 | <?xml version="1.0" encoding="utf-8"?> |
| 28 | <Users> |
| 29 | <User ID="Sample" Password="" Roles="User" MenuID="SampleMenu" /> |
| 30 | </Users> |
| 31 | }}} |