You can define a console identity string to be displayed in the console banner and in the browser's title bar. This string can be fixed or you can use a variable that is resolved at run time with a Java system property or environment variable.
Welcome consoleadmin - Jupiter
On the login page, the console identity is displayed without the greeting.
Integrated Solutions Console Saturn
The keys that are used to set the console identity string to be displayed in the banner and title bar are defined in an XML <console-property/> element. The required attributes id and value for this element determine the key name and value pairs. The following initial settings are provided in consoleProperties.xml.
Key (id) | Initial setting (value) | Description |
---|---|---|
ISC.CONSOLE.ID | ISC.CONSOLE.ID.CUSTOM | Specifies the ID attribute of another <console-property/> element that contains the actual console identity string |
ISC.CONSOLE.ID.MAXLEN | 27 | Specifies the maximum length of the resolved console identity string. The string will be truncated to this length if necessary. |
ISC.CONSOLE.ID.CUSTOM | empty string | A custom string to be displayed in the banner and title bar. |
ISC.CONSOLE.ID.DEPLOYER. unique_suffix |
None | Specifies a custom string that can be selected
using the Console Identity application under System Administration.
By providing multiple <console-property/> entries with the ISC.CONSOLE.ID.DEPLOYER. unique_suffixid attribute, you can provide multiple identity strings for console users to select from. Each entry of this type should have a distinct unique_suffix from the other entries. If multiple entries are provided with the same unique_suffix, then only the first value with this suffix is displayed in the selection list for the console user. |
<?xml version="1.0" encoding="UTF-8"?> <consoleproperties:ibm-portal-consoleproperties xmlns:consoleproperties= "http://www.ibm.com/websphere/appserver/schemas/6.0/ibm-portal-consoleproperties.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation= "http://www.ibm.com/websphere/appserver/schemas/6.0/ibm-portal-consoleproperties.xsd ibm-portal-consoleproperties.xsd"> <consoleproperties:console-property id="ISC.CONSOLE.ID" value="ISC.CONSOLE.ID.CUSTOM"/> <consoleproperties:console-property id="ISC.CONSOLE.ID.MAXLEN" value="27"/> <consoleproperties:console-property id="ISC.CONSOLE.ID.CUSTOM" value=""/> <consoleproperties:console-property id="ISC.CONSOLE.ID.DEPLOYER.sales" value="Sales & Marketing"/> <consoleproperties:console-property id="ISC.CONSOLE.ID.DEPLOYER.finance" value="Finance"/> <consoleproperties:console-property id="ISC.CONSOLE.ID.DEPLOYER.research" value="Research & Development"/> <consoleproperties:console-property id="ISC.CONSOLE.ID.DEPLOYER.dist" value="Distribution"/> </consoleproperties:ibm-portal-consoleproperties>
<?xml version="1.0" encoding="UTF-8"?> <consoleproperties:ibm-portal-consoleproperties xmlns:consoleproperties= "http://www.ibm.com/websphere/appserver/schemas/6.0/ibm-portal-consoleproperties.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation= "http://www.ibm.com/websphere/appserver/schemas/6.0/ibm-portal-consoleproperties.xsd ibm-portal-consoleproperties.xsd"> <consoleproperties:console-property id="ISC.CONSOLE.ID" value="ISC.CONSOLE.ID.CUSTOM"/> <consoleproperties:console-property id="ISC.CONSOLE.ID.MAXLEN" value="27"/> <consoleproperties:console-property id="ISC.CONSOLE.ID.CUSTOM" value="Platform: %PROCESSOR_ARCHITECTURE% OS: %os.name%"/> </consoleproperties:ibm-portal-consoleproperties>Since the ISC.CONSOLE.ID.MAXLEN key indicates a maximum display of 27 characters, the resulting string, which is resolved at run time, is rendered in the banner as follows for a Windows 2003 Server environment.
Platform: x86 OS: Window...