Hello,
I want to be able to put up WindowPanels that go to trusted third
party web sites without the browser complaining about Security. I
have been able to do this with a WindowPanel but keep getting the
Security warning (due to the same origin policy). Looking around the
web I could not find examples for a simple way around this. In one
book I read it says it is simple as
The exception to this rule (same origin policy) is the page that
invokes the
script. For example, when you include the Google Maps API in your HTML
page using
the following code, your originating host page has access to the
script, and the script
has access to your host page, as though they were on the same server:
<script src="
http://maps.google.com/maps?file=api&v=2"
type="text/javascript"></script>
I tried putting this in my host html page and then invoking the google
maps URL in my Window Panel and still got the Security warning. What
am I missing?
Thanks,
mmpatel