posted 15 years ago
I think you can set up the redirect page to be a simple javascript redirect to the parent window. Something like:
window.parent.location = "myAppLoginPage.jsp?parameters...";
I'm pretty sure most browsers treat IFRames like a normal frameset element and this will work to load the login page of your application at the browser's top level.
Alternatively, you could check in the page with the jForum IFrame if the person is logged on or not. If they aren't, then just display a notice that you need to log on.
[originally posted on jforum.net by monroe]