Try OpenEdge Now
skip to main content
Administration
WebSpeed Administration : Configuring WebSpeed on UNIX : Setting up WebSpeed on the Web server machine : Compatibility with the Web server type and operating system : Editing the Netscape Web server start file
 
Editing the Netscape Web server start file
The Netscape Web server must be able to locate the WebSpeed Messenger and the resources that the Messenger requires for configuration information and messages. Edit the Netscape Web server's start file (for Netscape Web servers, this file is install-dir/https-hostname/start) to set the environment variables described in the following table.
Table 55. NSAPI Messenger settings
Environment Variable
Setting
DLC
The WebSpeed Messenger installation path
PROMSGS
The pathname of the PROMSGS file:
/install-path/promsgs
PROCFG
The pathname of the configuration file:
/install-path/progress.cfg
WRKDIR
The pathname of your working directory
LD_LIBRARY_PATH
Shared library search path (on Solaris, Compaq Tru64 UNIX and Linux only)
SHLIB_PATH
Shared library search path (on HP-UX only)
LIBPATH1
Shared library search path (on AIX only)

1 On AIX only, you need to add /usr/lib to the shared library search path environment variable.

The following is a sample start file for AIX that includes the necessary WebSpeed information:
#! /bin/sh
...
LIBPATH=/usr/lib:$LIBPATH export LIBPATH
...
DLC=/usr/dlc; export DLC
PROMSGS=/$DLC/promsgs; export PROMSGS
PROCFG=$DLC/progress.cfg: export PROCFG
WRKDIR=/usr/workdir export WRKDIR