ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzahq_5.4.0.1/rzahqadvisor3a.htm

147 lines
5.6 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 4.0//EN">
<html>
<head>
<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. -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<title>Windows Server installation advisor--Service processor configuration</title>
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
<script type="text/javascript" language="Javascript">
<!-- // Hide script from older browsers
var errMess = "You must enter a new service process configuration name.";
var errMess1 = "You must enter an existing service process configuration name.";
//START NON-TRANSLATABLE
//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 checkFrame() {
//Is the hidden frame already loaded with the correct html?
if (parentUrl != "rzahqadvisor1.htm") {
window.location = "rzahqadvisor1.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 != "rzahqadvhidden.htm") {
//Correct HTML not loaded, load it
parent.hidden.window.location = "rzahqadvhidden.htm";
} else { //already loaded
getData();
}
}
}
function getData() {
if (!isEmpty(parent.hidden.v1[103])) {
if (parseInt(parent.hidden.v1[103]) == 0) { //new
document.form1.rad[0].checked = true;
if (!isEmpty(parent.hidden.v1[104])) { //value saved for spc name
document.form1.newname.value = parent.hidden.v1[104];
} else {
setDefaultNewName();
}
} else { //not new
if (parseInt(parent.hidden.v1[103]) == 1) { //existing
document.form1.rad[1].checked = true;
if (!isEmpty(parent.hidden.v1[104])) { //value saved for spc name
document.form1.oldname.value = parent.hidden.v1[104];
} else {
document.form1.oldname.value = "";
}
}
}
} else { //no value saved for radio button, set the new name to default to nwsd name plus sp
setDefaultNewName();
}
}
function setDefaultNewName() {
var spcname = parent.hidden.v1[1];
spcname = spcname.toUpperCase();
spcname += "SP";
document.form1.newname.value = spcname;
}
function onNext() {
//Save data
if (document.form1.rad[0].checked == true) {
parent.hidden.v1[103] = 0; // new spc
if (isValidName(document.form1.newname.value) == false) {
alert(errMess);
return;
} else {
//Save data
parent.hidden.v1[104] = document.form1.newname.value;
window.location = "rzahqadvisor3b.htm"; //next page
}
} else {
parent.hidden.v1[103] = 1; // existing spc
if (isValidName(document.form1.oldname.value) == false) {
alert(errMess1);
return;
} else {
//Save data
parent.hidden.v1[104] = document.form1.oldname.value;
parent.hidden.v1[105] = "";
parent.hidden.v1[106] = "";
parent.hidden.v1[107] = "";
window.location = "rzahqadvisor3e.htm"; //next page
}
}
}
function onBack() {
window.location = "rzahqadvisor3.htm";
}
//END NON-TRANSLATABLE
////////// -->
</script>
<link rel="stylesheet" type="text/css" href="../rzahg/ic.css">
</head>
<body onLoad="checkFrame()">
<h2>Windows Server installation advisor</h2>
<strong>Service processor configuration</strong>
<p>The service processor network server configuration defines attributes of the service processor that is used to
control the remote server. Examples of service processors are an RSA II for an xSeries server or the Management
Module for the BladeCenter that contains the blade server.</p>
<p><strong>Note:</strong> It may be necessary or preferable to create the service processor configuration prior to running the INSWNTSVR command.
See <a href="rzahqcreateanspandrmtsysconf.htm" target="new_win">Create a service processor configuration and a remote system configuration</a> for details.</p>
<form name="form1">
<p>What service processor configuration do you want to use?</p>
<blockquote>
<input type="radio" name="rad" checked value="new" id="new"> <label for="new">Create a new service processor configuration with name: </label>
<INPUT type="text" size="20" maxlength="10" name="newname" id="new" onFocus="selectRadio(0)">
<br><br>
<input type="radio" name="rad" value="used" id="exist"> <label for="exist">Use an existing service processor configuration with name: </label>
<INPUT type="text" size="20" maxlength="10" name="oldname" id="exist" onFocus="selectRadio(1)"></td>
</blockquote>
<br><br>
<center>
<input type="button" value="&lt;&lt; Back" onClick="onBack()">
<input type="button" value="Next &gt;&gt;" onClick="onNext()">
</center>
</form>
</body>
</html>