New Line
|
Description
|
Init fn=load-modules
shlib="pathname" funcs=WSNSAinit,WSNSAdefault, WSNSAshutdown,WSNSAwebspeedCheck |
This pathname is the absolute path to the Messenger DLL, wsnsa.dll. The Init line must appear after any existing Init commands. This line informs the Web server that it must load the Messenger DLL at the end of the initialization process, and that the named functions are external entry points within the DLL.
|
Init fn=WSNSAinit
|
This Init line must appear as the last Init command. It informs the Web server that the named function is an external entry point within the DLL.
|
NameTrans fn=WSNSAwebspeedCheck
|
This NameTrans line must appear before any existing NameTrans commands. You must add it within the block of commands delimited by <Object name=default> and </Object>. This line informs the Web server to handle WebSpeed requests properly.
|
Service method=(GET|POST|HEAD) fn=WSNSAdefault
|
This Service line must appear before any existing Service commands. You must add it within the block of commands delimited by <Object name=default> and </Object>. This line informs the Web server to handle WebSpeed requests properly.
|
Init ...
Init ... # The following directive is a single line; it contains no line breaks Init fn=load-modules shlib="c:/Program Files/OpenEdge/bin/wsnsa.dll" funcs=WSNSAinit,WSNSAdefault,WSNSAshutdown,WSNSAwebspeedCheck Init fn=WSNSAinit <Object name=default> AuthTrans ... AuthTrans ... NameTrans fn=WSNSAwebspeedCheck NameTrans ... NameTrans ... PathCheck ... PathCheck ... ObjectType ... ObjectType ... Service method=(GET|POST|HEAD) fn=WSNSAdefault Service ... Service ... AddLog ... AddLog ... Error ... </Object>... ... ... ... |