The only thing that springs to mind is to use the window.top.location property in javascript from you secure iview.
Try
<script type="javascrip">
//call invalidateSession in one minute (60000 ms)
setTimeout("invalidateSession();" , 60000)
function invalidateSession() {
window.top.location="<url to logout page>";
}
</script>
I think this requires the iframe to be in the same domain as the top window, but that shouldn't be a problem for a custom developed java iview
Add comment