FORMREDIRWAIT (JANUS DEFINE parameter): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (remove displaytitle)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:FORMREDIRWAIT}}
<span class="pageSubtitle">FORMREDIRWAIT seconds &mdash; seconds to wait for browser to process redirect</span>
<span class="pageSubtitle"><section begin="desc" />FORMREDIRWAIT seconds &mdash; seconds to wait for browser to process redirect<section end="desc" /></span>


<var>FORMREDIRWAIT</var> is a parameter on [[JANUS DEFINE]], which defines and sets characteristics of a Janus port.  
<var>FORMREDIRWAIT</var> is a parameter on <var>[[JANUS DEFINE]]</var>, which defines and sets characteristics of a Janus port.  


Indicates the default number of seconds to wait for the client on a <var>[[JANUS DEFINE#type|WEBSERV]]</var> port (presumably a browser) to do the GET associated with a redirect generated by a [[$Web_Form_Done]] call.  
Indicates the default number of seconds to wait for the client on a <var>[[JANUS DEFINE#type|WEBSERV]]</var> port (presumably a browser) to do the GET associated with a redirect generated by a [[$Web_Form_Done]] call.  

Latest revision as of 17:55, 8 June 2016

FORMREDIRWAIT seconds — seconds to wait for browser to process redirect

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

Indicates the default number of seconds to wait for the client on a WEBSERV port (presumably a browser) to do the GET associated with a redirect generated by a $Web_Form_Done call.

Since browsers typically respond immediately to a redirect by doing a GET for the target URL without any user interaction, the time between a redirect and the GET should typically be very small. The default value for FORMPOSTWAIT is 50, which should be more than enough to handle the slowest browser running on the slowest machine with the slowest network connection: if the GET isn't received within 60 seconds of a redirect, it is not likely to appear at all.

The value for FORMREDIRWAIT must be between 1 and 32767, inclusive, and it can be overridden by a FORMREDIRWAIT parameter in a JANUS WEB ON rule or by an explicit redirect wait time on a $Web_Form_Done call.

Valid only for WEBSERV ports.

See also