NOAUTOON (JANUS DEFINE parameter)

From m204wiki
Jump to navigation Jump to search

Start in $Web_Off mode

NOAUTOON is a parameter on JANUS DEFINE, which defines and sets characteristics of a Janus port.

This parameter prevents Janus Web Server from preceding the execution of the command specified in a JANUS WEB ON rule with an implicit $Web_On.

While for simple demo applications such as one that simply returns the results of a Model 204 VIEW command, it is convenient to have Janus Web Server perform an implicit $Web_On before issuing the command, it can be very inconvenient for other applications that perform processing such as file opens that cause Model 204 informatory or error messages to be issued. Since generally these messages are not to be sent to the browser they must either be suppressed with an explicit $Web_Off before they are issued or discarded after they are issued with a $Web_Flush. The former approach requires the extra evaluation of a User Language program and the latter pointlessly saves messages to CCATEMP only to have them discarded.

Setting NOAUTOON eliminates the need to run a stub program to issue a $Web_Off or the overhead associated with saving messages to CCATEMP only to be flushed with a $Web_Flush.

If NOAUTOON is specified for a port, it might also be useful to specify NOAUDTERM (or allow it as the default) to prevent "terminal" messages from going to the audit trail.

The default setting for AUTOON/NOAUTOON is AUTOON.

The setting of NOAUTOON (or AUTOON) applies to all URLs on the port unless explicitly overridden by an AUTOON (or NOAUTOON) parameter on a JANUS WEB ON rule.

Valid only for WEBSERV ports.

See also