Blog Entry
764
To handle logouts for both systems at the same time you'll need to utilize the iFrame HTML Tag.
Reference:
http://www.w3schools.com/TAGS/tag_iframe.asp
On your iChain servers logout page place a iframe tag at the bottom that points to your NAMs logout url:
> Logout links:
> * Identity Server: https://IdentityServerDNS:8443/nidp/app/logout
> * Access Gateway: https://AGAuthDomain/nesp/app/plogout
<iframe src ="https://IdentityServerDNS:8443/nidp/app/logout" width="0" height="0"></iframe>
and/or
<iframe src ="https://AGAuthDomain/nesp/app/plogout" width="0" height="0"></iframe>
On your NAM servers logout page place a iframe tag at the bottom that points to your iChain logout url:
<iframe src ="https://iChainDomain/cmd/ICSLogout" width="0" height="0"></iframe>






0