Communicator e3000 MPE/iX Release 6.5 Express 2 (Software Release C.65.02) (30216-90322)
Chapter 3 39
Technical Articles
Java Servlets for MPE/iX
here:
shell/iX>cd /APACHE/SECURE/conf
shell/iX>cat httpd.conf
...
AddModule mod_unique_id.c
AddModule mod_so.c
AddModule mod_setenvif.c
<IfDefine>
AddModule mod_ssl.c
</IfDefine>
Include /APACHE/SECURE/conf/jserv/jserv.conf
For Standard Apache, the include should be added after mod_setenvif.c as shown here:
shell/iX>cd /APACHE/PUB/conf
shell/iX>cat httpd.conf
...
AddModule mod_unique_id.c
AddModule mod_so.c
AddModule mod_setenvif.c
Include /APACHE/PUB/conf/jserv/jserv.conf
...
Edit jserv.conf for Jserv Status
The conf/jserv/jserv.conf file contains configuration directives for viewing servlet status
once the servlet engine has started. To enable, replace "your.PC.com" with the IP address
of your PC's browser (127.0.0.1 is equivalent to "localhost"). This feature should be
enabled for trusted users only (i.e. the system administrator) and probably disabled on
production systems. To disable this feature, remove your PC's address from the "allow
from" directive.
shell/iX>cd /APACHE/SECURE/conf/jserv
or
shell/iX>cd /APACHE/PUB/conf/jserv
shell/iX>cat jserv.conf
...
<Location /jserv/>
SetHandler jserv-status
order deny, allow
deny from all
allow from 127.0.0.1 your.PC.com
</Location>
...
Customize the Job Stream Files
The servlet engine, JServ, is started by streaming JSRV (for standard Apache) or JSRVS
(for WebWise Secure Web Server). The servlet engine is stopped by streaming JSRVOFF
(for standard Apache) or JSRVSOFF (for WebWise Secure Web Server).