ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzall_5.4.0.1/rzalladvqos19.htm

135 lines
4.4 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 4.0//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Inbound priority</title>
<meta name="Copyright" content="Copyright (c) 2004 by IBM Corporation">
<!-- All rights reserved. Licensed Materials Property of IBM -->
<!-- US Government Users Restricted Rights -->
<!-- Use, duplication or disclosure restricted by -->
<!-- GSA ADP Schedule Contract with IBM Corp. -->
<!--
----------------------------------------------------------------------------
START_DESCRIPTION
Page Function: Priority level to give connection requests
Stored Values:
(parent.hidden.clientInfo[clientNum][13])[low, medium, or high]
Next and Back:
[Next]: rzalladvqos70.htm
[Back]: rzalladvqos15.htm
END_DESCRIPTION
----------------------------------------------------------------------------
-->
<LINK rel="stylesheet" type="text/css" href="../rzahg/ic.css">
<script language = "Javascript" src = "../rzahg/iccommon.js"></script>
<script language="Javascript" type="text/javascript">
//START NON-TRANSLATABLE
clientNum = parent.hidden.retClientNumber()
function onNext() {
if (document.type.prioritytype[0].checked){
parent.hidden.clientInfo[clientNum][13] = "low"
window.location = "rzalladvqos70.htm";
} else if (document.type.prioritytype[1].checked){
parent.hidden.clientInfo[clientNum][13] = "medium"
window.location = "rzalladvqos70.htm";
}
else (parent.hidden.clientInfo[clientNum][13] = "high")
window.location = "rzalladvqos70.htm";
}
function onBack() {
if (document.type.prioritytype[0].checked){
parent.hidden.clientInfo[clientNum][13] = "low"
}
else if (document.type.prioritytype[1].checked){
parent.hidden.clientInfo[clientNum][13] = "medium"
}
else(parent.hidden.clientInfo[clientNum][13] = "high")
window.location = "rzalladvqos15.htm";
}
//Obtain name of HTML file in parent frame.
var parentDir = parent.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
var parentUrl = parent.window.location.href.substring(parentDir.length,parent.window.location.href.length+1);
if (parentUrl.indexOf("#") >= 0) { parentUrl = parentUrl.substring(0,parentUrl.indexOf("#"));}
function fillin() {
//Is the hidden frame already loaded with the correct html?
if (parentUrl != "rzalladvqoswelcome.htm") {
window.location = "rzalladvqoswelcome.htm"; //load advisor frameset
return;
} else {
//Obtain name of HTML file in hidden frame.
var hiddenDir = parent.hidden.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
var hiddenUrl = parent.hidden.window.location.href.substring(hiddenDir.length,parent.hidden.window.location.href.length+1);
if (hiddenUrl.indexOf("#") >= 0) { hiddenUrl = hiddenUrl.substring(0,hiddenUrl.indexOf("#"));}
if (hiddenUrl != "rzalladvqoshidden.htm") {
//Correct HTML not loaded, load it
parent.hidden.window.location = "rzalladvqoshidden.htm";
} else { //already loaded
fillin2();
}
}
}
function fillin2() {
typePriority = parent.hidden.clientInfo[clientNum][13] + ''
switch ( typePriority ) {
case "low" :
document.type.prioritytype[0].checked = true;
break;
case "medium" :
document.type.prioritytype[1].checked = true;
break;
case "high" :
document.type.prioritytype[2].checked = true;
break;
}
}
//END NON-TRANSLATABLE
</script>
</head>
<BODY onload="fillin()">
<h2>Quality of service definition: Inbound connection priority</h2>
<p>You can give your inbound connections a priority level. The requests made to your server by this policy will be rated as either high, medium or low. This priority will determine which accepted connection requests are handled first.</p><p>
What type of priority do you want to give the connection requests defined in this policy?</p>
<form name="type">
<INPUT TYPE="radio" NAME="prioritytype" id="prioritytype1" VALUE="low" checked><label for="prioritytype1">Low</label><br>
<INPUT TYPE="radio" NAME="prioritytype" id="prioritytype2" VALUE="medium"><label for="prioritytype2">Medium</label><br>
<INPUT TYPE="radio" NAME="prioritytype" id="prioritytype3" VALUE="high"><label for="prioritytype3">High</label><br>
<center><input name=submit type="button" value="&lt;&lt;&nbsp;Back&nbsp" onClick="onBack()">
<input name=submit type="button" value="&nbsp;Next&nbsp&gt;&gt;" onClick="onNext()">
</center>
</form>
</BODY>
</html>