NonStop Server Guide for BEA WebLogic Server 8.1

Using the WS Plug-in
HP NonStop Server Guide for BEA WebLogic Server 8.1529891-001
8-8
Defining the WS Plug-in Server Class
The web client displays a server error if you replace rmt.pway with your own
application or if you installed rmt.pway incorrectly.
HTTP11_SUPPORTED
specifies that the target server can support HTTP1.1 requests. If this variable is not
set to ON, WS Plug-in replaces HTTP1.1 with HTTP1.0 in the first line of the
request header. This feature is provided for compatibility with the existing RLS
product. When using the WS Plug-in with WebLogic Server, you must set this
option to ON.
LOG_DIR and TRACE_LEVEL
control tracing output to the log file. Set TRACE_LEVEL to a value of 1 to enable
basic tracing or set it to a value of 2 to enable verbose tracing. Level one tracing
displays the headers and contents of messages sent between the client and the
WebLogic Server. You might find this useful when investigating application
Example 8-2. Server Class Definition for WS Plug-in
###############################################################
#
# Configure Plug-in for WebLogic Server
#
set rmt /bin/rmt/rmt.pway
if { [file exists $root$rmt]} {
Filemap $rmt $root$rmt
Server $root$rmt {
eval $DefaultServerAttributes
CWD $root/bin/rmt
Env PASSTHROUGH_CONTENT_LENGTH=5000
Env HTTP11_SUPPORT=ON
Env KEEP_ALIVE=ON
Env AUTO_LOAD=ON
Env DISPLAY_CONFIG=ON
Env SESSION_BALANCING=ON
Env RETRY_PERIOD=30
Env STATS_PERIOD=300
Env SHOW_STATS=EMS
Env RATED_STATS=ON
Env TRACE_LEVEL=1
Env LOG_DIR=/projects/MyApp/Apps/webserver/logs
MapDefine =DBACCESS /G/data09/wwebdb/dbaccess
MapDefine =PATHMAP /G/data09/wwebdb/pathmap
MapDefine =CLUSTERS /G/data09/wwebdb/clusters
Numstatic 4
Maxservers 400
Stderr $root/logs/rmt.log
Stdin /dev/nullStdout $root/logs/rmt.log
}
RmtServer $rmt
}