I need a javascript which can 1st open a url for rsa authentication and then open the jnlp.jsp file.
I worked on this function so far
function open_win() {
window.open("http://ppsaccess/");
setTimeout("window.location.href =\"https://****:8443/jnlp.jsp?port=8443&protocol=https:&serverName=***&commonMaintenanceTool=false\"><img",10000);
}
</script>
This what I got
<html>
<head>
<script type="text/javascript">
function open_win() {
window.open("http://ppsaccess/");
}
setTimeout(function(){
window.location.href ="https://***:8443/jnlp.jsp?port=8443&protocol=https:&serverName=***&commonMaintenanceTool=false\";
},10000);
</script>
</head>
<body>
<form>
<input type=button value="PR1" onclick="open_win()">
</form>
</body>
</html>