Hitachi

JP1 Version 11 JP1/Integrated Management - Manager Command and Definition File Reference


Web-based startup definition file (console_xx.jnlp)

Organization of this page

Format

<jnlp
  spec="7.0+"
  codebase="http://connection-target-host-name/JP1IM/"
  href="console_ja.jnlp">
 
  <information>
    <title>JP1/Integrated Management - View/</title>
    <vendor>Hitachi, Ltd.</vendor>
  </information>
 
  <application-desc main-class="JP.co.Hitachi.soft.jp1.im.console.client.start.JCoViewApplet">
      <argument>LANGUAGE=JAPANESE</argument>
      <argument>PORT=port-number</argument>
      <argument>SO_TIMEOUT=socket-timeout-value</argument>
      <argument>TRACE_LEVEL=30</argument>
      <argument>DEBUG=NO</argument>
      <argument>RMI_TIMEOUT=server-processing-timeout-value</argument>
      <argument>SCREEN_TITLE_LOGININFO=ON</argument>
  </application-desc> 
 
...
 
</jnlp>

File

console_ja.jnlp (web-based startup definition file (Japanese))

console_ja.jnlp.model (model file for the web-based startup definition file (Japanese))

console.jnlp (web-based startup definition file (English))

console.jnlp.model (model file for the web-based startup definition file (English))

console_zh.jnlp (web-based startup definition file (Chinese))

console_zh.jnlp.model (model file for the web-based startup definition file (Chinese))

Storage directory

In Windows

Console-path\www\

In UNIX

/opt/jp1cons/www/

Description

This definition file specifies the startup settings and operations (such as the communication timeout value and the port number to be used) of the web-based version of JP1/IM - View when it is used in plug-in free mode.

When the definitions are applied

The definitions take effect when the web-based version of JP1/IM - View starts in plug-in free mode.

Information that is specified

codebase="http://connection-target-host-name/JP1IM/"

Specifies the URL of the web-based version of JP1/IM - View. This setting is required.

PORT=port-number

Specifies the port number for the event console (jp1imevtcon) when the default port number (20115) has been changed. The default value is 20115.

SO_TIMEOUT=socket-timeout-value

Specifies the amount of time in milliseconds to wait for the arrival of reception data (socket timeout value). The default is 2,500 milliseconds.

We recommend that you specify a larger value in an environment where a low-speed line is used or event traffic is heavy.

The range of values that can be specified is from 0x00000001 to 0x0036EE80 (3,600,000 milliseconds).

Make sure that the specified value does not exceed the value of RMI_TIMEOUT (default: 0000EA60) specified in the Web-based startup definition file (console_xx.jnlp).

RMI_TIMEOUT=server-processing-timeout-value

Specifies in milliseconds the timeout value (server processing timeout value) for login, logout, automatic refresh, event status change, event search, user environment setting, severe event setting, automated action setting, filter setting, and command execution operations.

The permitted value range is from 60,000 to 3,600,000 milliseconds; the default is 60,000 milliseconds.

SCREEN_TITLE_LOGININFO=ON

You can prevent the name of the logged-in JP1 user from being displayed in the title of the Event Console window and the List of Action Results window. The ON specification displays the logged-in JP1 user name. The OFF specification hides the logged-in JP1 user name. The default is ON.

Example definition

<jnlp
  spec="7.0+"
  codebase="http://im-server/JP1IM"
  href="console_apl.jnlp">
 
  <information>
    <title>JP1/Integrated Management - View/</title>
    <vendor>Hitachi, Ltd.</vendor>
  </information>
 
  <application-desc main-class="JP.co.Hitachi.soft.jp1.im.console.client.start.JCoViewApplet">
      <argument>LANGUAGE=JAPANESE</argument>
      <argument>PORT=20115</argument>
      <argument>SO_TIMEOUT=2500</argument>
      <argument>TRACE_LEVEL=30</argument>
      <argument>DEBUG=NO</argument>
      <argument>RMI_TIMEOUT=60000</argument>
      <argument>SCREEN_TITLE_LOGININFO=ON</argument>
  </application-desc> 
 
  <resources>
    <j2se version="1.7+"/>
    <jar href="jcoview.jar"/>
    <jar href="hntrlib2j.jar"/>
  </resources>
 
</jnlp>