Consultor Eletrônico



Kbase P16593: How to configure a Webserver so it can handle two version of
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   3/21/2003
Status: Unverified

GOAL:

How to configure a Webserver so it can handle two version of Webspeed on the same UNIX machine?

FACT(s) (Environment):

WebSpeed 3.1x

FIX:

Make two copies of the wspd_cgi.sh in the web server's scripts directory (cgi-bin). One should be named wspd_cgi91c.sh and the other wspd_cgi91d.sh .
Each one of these shell script files should point to the appropriate messenger executable (cgiip) and Progress installation directory.
The easiest way to do is to copy:
#cp $DLC91C/bin/wspd_cgi.sh $WEBROOT/cgi-bin/wspd_cgi91c.sh
#cp $DLC91D/bin/wspd_cgi.sh $WEBROOT/cgi-bin/wspd_cgi91d.sh
Where $DLC91C is the Progress 9.1C installation directory,
where $DLC91D is the Progress 9.1D installation directory
and where $WEBROOT is the web server's root directory containing
the 'cgi-bin' scripts directory.
Making the web request:
http://hostname/cgi-bin/wspd_cgi91c.sh/ping
will work with the Progress 9.1C installation and
http://hostname/cgi-bin/wspd_cgi91d.sh/ping
will work with the Progress 9.1D installation.