Hi
I have been searching around several EP forums without locating some detailed information regarding how I can create SSO with URL iViews to External web sites that requires userid and password to logon.
Does anyone have some information for me or experience of how I may manage to solve this issue?
I know I have to create a system, but which, and form there a URL iView where I provide userID and PW as parameters - but I have not manage to connect.
The site uses a https://site.address and the site has this html coding, from view source of the site.
<form onsubmit="if ( document.forms[0].Username.value.indexOf("/") == -1 ) {
document.forms[0].Username.value = document.forms[0].Username.value + "/external/storebrand";
}" method="post" action="/names.nsf?Login" name="_CustomLoginForm">
<input name="Username" value="" maxlength=256 autocomplete=off></font></td></tr>
<tr valign="top"><td width="206"><b><font size="2" face="Verdana">Passord (kode)</font></b></td><td ALIGN=RIGHT width="302"><font size="2" face="Verdana">
<input name="Password" value="" type="password" maxlength=256 autocomplete=off></font></td></tr>
<tr valign="top"><td width="206"><img src="/icons/ecblank.gif" border="0" height="1" width="1" alt=""></td><td ALIGN=RIGHT width="302">
<input type="button" onclick="checkUserLogin()" value="Logg inn"></td></tr>
with the java script as foolows
function checkUserLogin(){
if ( document.forms[0].Username.value.indexOf("/") == -1 && isNaN(document.forms[0].Username.value)) {
document.forms[0].Username.value = document.forms[0].Username.value + "/external/storebrand";
}
document.forms[0].submit();
}
Any ideas?
Regards
Kay-Arne