$Web Realm: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 7: Line 7:


==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" /> %rc = $Web_Realm( realm_name )
<p class="syntax"><section begin="syntax" />%rc = $Web_Realm( realm_name )
<section end="syntax" /></p>
<section end="syntax" /></p>


Line 19: Line 19:


==Usage notes==
==Usage notes==
Web realms can serve several purposes:
<ul>
<ul>
 
<li>Web realms can serve several purposes:
<ul>
<li>By having multiple realms for a single host, different URLs could be made available to different sets of users.  
<li>By having multiple realms for a single host, different URLs could be made available to different sets of users.  
<li>The realm could be used to send an arbitrary message to the browser to appear in a login pop-up window.  
<li>The realm could be used to send an arbitrary message to the browser to appear in a login pop-up window.  
Line 27: Line 27:
</ul>
</ul>


 
<li>The realm sent by $Web_Realm is not sent to a browser unless a status of 401 ("Unauthorized") is sent to the browser.
The realm sent by $Web_Realm is not sent to a browser unless a status of 401 ("Unauthorized") is sent to the browser.
This means that a $Web_Realm call is meaningless unless followed by a <var>$Web_Done</var> with a status code of 401, for example:
This means that a $Web_Realm call is meaningless unless followed by a <var>$Web_Done</var> with a status code of 401, for example:
<p class="code"> %RC = $Web_Realm('Toxico Database Systems')
<p class="code">%rc = $Web_Realm('Toxico Database Systems')
%RC = $Web_Done(401, 'Unauthorized')
%rc = $Web_Done(401, 'Unauthorized')
</p>
</p>


<li>If all the $Web_Realm calls for a port in an Online are to have the same realm, it probably makes more sense to set the realm with the <var>[[WEBREALM (JANUS DEFINE parameter)|WEBREALM]]</var> parameter on the <var>[[JANUS DEFINE|JANUS DEFINE]]</var> command for the port.


If all the $Web_Realm calls for a port in an Online are to have the same realm, it probably makes more sense to set the realm with the WEBREALM parameter () on the JANUS DEFINE command for the port.
<li>While $Web_Realm can be used in any code, its most common use would be in [[JANUS WEB exception rules|exception rules]], especially those associated with logon processing such as LOGONERR and NEWPASSWORD.
 
While $Web_Realm can be used in any code, its most common use would be in exception rules (), especially those associated with logon processing such as LOGONERR and NEWPASSWORD.


[[Category:Janus Web Server $functions|$Web_Realm]]
[[Category:Janus Web Server $functions|$Web_Realm]]

Revision as of 23:13, 16 October 2012

<section begin="desc" />Set web "realm" for "Unauthorized" response<section end="desc" />

$Web_Realm allows the setting of the web "realm" before sending an "Unauthorized" response to the browser.

$Web_Realm is a callable $function (see "Calling Sirius Mods $functions"), and it takes a single argument and returns a number.

Syntax

<section begin="syntax" />%rc = $Web_Realm( realm_name ) <section end="syntax" />

Syntax terms

%rc A numeric variable to contain a return code.
realm_name Specifies the name of the realm to which a userid and password combination applies. This is a required parameter.

Usage notes

  • Web realms can serve several purposes:
    • By having multiple realms for a single host, different URLs could be made available to different sets of users.
    • The realm could be used to send an arbitrary message to the browser to appear in a login pop-up window.
    • Realms could be dynamically generated to prevent browsers from caching userids and passwords at public workstations.
  • The realm sent by $Web_Realm is not sent to a browser unless a status of 401 ("Unauthorized") is sent to the browser. This means that a $Web_Realm call is meaningless unless followed by a $Web_Done with a status code of 401, for example:

    %rc = $Web_Realm('Toxico Database Systems') %rc = $Web_Done(401, 'Unauthorized')

  • If all the $Web_Realm calls for a port in an Online are to have the same realm, it probably makes more sense to set the realm with the WEBREALM parameter on the JANUS DEFINE command for the port.
  • While $Web_Realm can be used in any code, its most common use would be in exception rules, especially those associated with logon processing such as LOGONERR and NEWPASSWORD.