...
All HMI Applications in TSENTRY are viewed using the TSENTRY Screen Explorer, or Texplore, which acts as a container application for displaying and navigating between HMI screens. Texplore uses the various services to exchange information with the TSENTRY host in order to provide a secure yet highly customizable front end to any control system.
...
Texplore
...
Overview
The TSENTRY Screen Explorer, or Texplore, is the application used to display HMI screens to a user. Texplore is simply an application for browsing the TSENTRY HMI subsystem, much like Internet Explorer is an application for browsing the Internet. Texplore provides much of the common framework for an HMI such as connecting to a TSENTRY host, reading the HMI configuration file, providing a login screen, and managing the navigation between screens within the HMI application, but by itself does not define any specific HMI screens.
Texplore relies on several processes running on the TSENTRY controller to provide it with information as it operates as the HMI client browser. These are:
The NtRtInfo service, which exposes static information from the TSENTRY controller to client objects in a request/reply architecture.
The Tsecurity service, which provides authentication and authorization services to client objects.
The GsmOpcSvr process, which exposes the values of individual variables in global memory on the TSENTRY controller.
The TrendSrv process, which exposes sampled or trended values of variables in global memory on the TSENTRY controller.
...
Expand | ||
---|---|---|
| ||
The instructions for installing Texplore on a client workstation are laid out in the Workstation Configuration section. |
...
Expand | ||
---|---|---|
| ||
One screen can link to another in a variety of different methods:
The Texplore application internally has a TPRI.Tscreen.TscreenMgr object that manages navigation between screens. In either of the cases above, this TscreenMgr object will use the ScreenID name to find the appropriate new screen as follows:
For instance, suppose the application configuration file has the following
When the application is started, a MyNamespace1.MainMenu object will be loaded from the MyAssembly1.dll assembly, assigned a ScreenID of “MainMenu”, and initially presented to the user. This occurs because this screen is marked with the If the NtRtMenu screen has a CmdButton on it whose LinkedScreen property is set to “SubMenu”, the TscreenMgr will immediately find the SubMenu screen in its list of registered screens and activate it. However, if the CmdButton on the MainMenu screen instead specifies “OtherScreen” in its LinkedScreen property, the TscreenMgr will find that there is no screen currently registered with that ScreenID. Therefore it will check if the MyAssembly1.dll assembly contains a class by the name MyNamespace1.OtherScreen; if it finds one then that screen will be immediately registered, created and activated. If this class does not exist then the navigation will be canceled. Consequently, only top-level menus must be specified in the ScreenConfig section of the application configuration file as long as all classes corresponding to screens linked from those menus are located in the same namespace as the top-level menu. |
...