My application runs in Local Intranet zone which launches a popup. This popup opens another page in my application (Local Intranet zone) which redirects to an authentication page (Internet zone) which after successful authentication sends back to my application page ( Local Intranet zone). However, at the final page, window.opener becomes null and I can't call methods on parent page.

This doesn't happen when all pages load from the same zone. Is there a way around this behavior so that I can call methods on parent page after redirect?

link|improve this question

33% accept rate
feedback

1 Answer

This sounds very much like an intentional security measure - I can't think of a way to circumvent it.

You could try using a modal dialog (see here how to address the opener from there) and see whether it behaves any different, but I wouldn't hold my breath - it's likely the same security model applies there as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.