start portlet menu bar

HCLSoftware: Fueling the Digital+ Economy

Display portlet menu
end portlet menu bar
Close
Select Page

HCL Z and I Emulator for Web Client is a plug-in free, web-based terminal emulator. Unlike HCL Z and I Emulator for Web, ZIE for Web Client does not download any binaries that run on the client machine. ZIE for Web Client reads the existing session definitions from Z and I Emulator for Web server and allows users to connect to their System z and System i hosts through an HTML5 compatible browser.

In addition to the Application Programming Interfaces (APIs) provided with the Host Access Toolkit, Z and I Emulator for Web also provides specialized public APIs, called Session Manager APIs, that provide support for embedding host sessions in Web pages using JavaScript. These JavaScript-based APIs help application developers manage host sessions and text-based interactions with host sessions. The APIs are available through the Z and I Emulator for Web Session Manager.
The APIs are divided into following four sets:

  • Session Manager APIs provide start, stop, connect, disconnect, and display session functions. In addition, get methods are provided to retrieve active session IDs. Session Manager APIs support the management of multiple instances of a session as well as multiple sessions. By providing support for Session Manager API in ZIE for Web Client, application developers can now automate their interaction with host, thereby enhancing their productivity.
  • Presentation Space APIs
  • Z and I Emulator for Web Functions APIs
  • Error Reporting APIs

How to configure
1.    Include Session Manager API JavaScript file in the <head> section of the application (webpage)
Code snippet:
<script src=”https://<IP_of_ZIEWeb_Server>:<port>/zieweb/js/sessionManagerAPI.js”>
Example:
<script src=” 
https://localhost:8080/zieweb/js/sessionManagerAPI.js“> </script>

2.    Create an object of the sessionManagerAPI. inside JavaScript <script> tags
Code snippet:
var hod_applet = new hod_session(); 

3.    To start working with the API, first connection needs to be established using the following API function call:
Code snippet:
hod_applet.createConnection(url); 
**URL: should be the url of the ZIEWeb page
Example: https://<ip-address>:<port-number>/zieweb/Cached.html

4.    Once the connection is established and ZIE for Web Client window is opened, make API calls using the java script object.
Code snippet: 
var returnValue=hodApplet.getSessionID(),
var returnValue=hodApplet.connectSession()

5.    The sample application page should be placed on the same application server (WAS) where ZIE for Web Client is installed.

Demo application

Picture

Including the API in Sample Code

Picture

Creating Object of The Session Manager API

Picture

Creating Connection with HACPEE Application

Picture

Calling an API Service

Picture

Download the Source Code:

index api html file

Comment wrap
Mainframes | October 27, 2022
IMPORT/EXPORT the CUSTOMIZED ATTRIBUTES
The ZIE for Web-Client provides an additional capability to import/export the customized attributes (i.e., saved delta changes).
Mainframes | October 27, 2022
HANDLING HOST FUNCTION KEYS EXTERNALLY
The ZIE for Web-Client provides an additional capability to handle the Host function keys in a customized way.