Environment
Siebel 7.7 running on back end Web server
Situation
Resolution
<script language="JavaScript">
<!--
function executeJavaScript()
{
var
frm = document.forms.SWEEntryForm;
var ff =
document.createElement("INPUT");
ff.type="hidden";
ff.name="SWECmd";
ff.value="ExecuteLogin";
frm.appendChild(ff);
var ff =
document.createElement("INPUT");
ff.type="submit";
ff.name="altSubmit";
ff.id="altSubmit";
ff.value="Login";
frm.appendChild(ff);
document.getElementById('altSubmit').click();
return true;
}
function
LAGSubmitForm()
{
executeJavaScript();
}
//-->
</script>
Additional Information
It is possible that the elements may be different at other customer sites running different versions of Siebel. The proper procedure of looking at the Source code of the Login Form page should be done and the header traced from browser on submitting successful credentials and to sure appropriate adjustment is made to the FF policy.