Pathway/iTS Web Client Programming Manual (H06.03+, J06.03+)
Table Of Contents
- HP NonStop Pathway/iTS Web Client Programming Manual
- Legal Notices
- Contents
- What's New in This Manual
- About This Manual
- 1 Introduction to Pathway/iTS Web Clients
- 2 How to Compile, Build, and Maintain a Pathway/iTS Web Client
- 1. Prepare the SCREEN COBOL Object File
- 2. Create a Configuration File
- 3. Run the Converter
- 4. Modify Java or SCREEN COBOL Code as Needed
- 5. Run PROFDBM to Set Up the User Profile Database
- 6. Build the Converted Client
- 7. Deploy the Web Client
- 8. Customize the Screens
- 9. Specify the Port Number of the Router Process
- 10. Configure Pathway Servers for User Profiles and User Conversion Routines
- 11. Tune the Application for Performance by Changing the Session-Length Parameter
- 12. Maintain the Client
- 3 Logon Security and User Profiles
- 4 User-Written User Conversion Procedures for Web Clients
- 5 SCREEN COBOL-to-Web Conversion Mappings
- 6 Java Import Package Reference
- 7 Introduction to Pathway/iTS 1.1
- A Client Error Messages
- B SCREEN COBOL Features Not Supported for Web Conversion
- Index
- Content Feedback

User-Written User Conversion Procedures for Web
Clients
HP NonStop Pathway/iTS Web Client Programming Manual—520270-003
4-2
Build Your User Conversion Library
Build Your User Conversion Library
Assuming that the appropriate SLIB, ILIB, and TLIB files are in place and your user
conversion object file has been compiled without errors, build the user conversion
library, binding it to the USER-LIB-SERVER server class, by invoking the nld utility
from the TACL prompt as:
user-conversion-object
is the pTAL object file for your user conversion library.
$
volume
is the volume where the installation subvolume ZPATHWAY resides.
SCUSERO
is the skeleton server-class object file provided by Pathway/iTS for use with the
USER-LIB-SERVER server class.
scmyuser
is the name to be used for the final server-class program file. You will use this
name in the SET SERVER PROGRAM attribute when you configure the server
class.
For example, the folowing command binds the user conversion object file MYCONV
with the skeleton object file SCUSERO to generate a program object file named
SCUSRCNV for the special server class:
TACL> NLD MYCONV $volume.ZPITS.SCUSERO -SET RUNNAMED ON -O
SCUSRCNV
Configure the User Conversion Server Class
To configure the USER-LIB-SERVER server class, add these lines to your
Pathway/XM configuration source file or your PATHCOM configuration file:
RESET SERVER
SET SERVER AUTORESTART 0
SET SERVER DEBUG OFF
SET SERVER HIGHPIN OFF
SET SERVER LINKDEPTH 1
SET SERVER MAXSERVERS 5
SET SERVER NUMSTATIC 2
SET SERVER PRI 115
SET SERVER PROGRAM
scmyuser
SET SERVER SECURITY "N"
NLD
user-conversion-object
$
volume
.ZPITS.SCUSERO
-SET RUNNAMED ON -O
scmyuser










