1 つの iframe 内で実行される GWT を使用して 1 つのアプリを実行しようとしています。ここまではすべて問題ありません。実際の Web には、リクエストを iframe に送信するフォームが 1 つあります。「フォームを送信」ボタンを押すとJavaスクリプトを使用して、iframeのsrcを変更し、後で更新します。
document.getElementById('iframeSpecialOffers').src = container.url;
document.getElementById('iframeSpecialOffers').contentWindow.location.reload();
ウェブは www.example.com:81 で実行され、iframe の新しい src は www.example.com:8082 で実行され、このエラーが発生します
Unsafe JavaScript attempt to access frame with URL http://example:8082/Home.html#!TilePage;searchQuery=*;searchMode=1;amount=1;
position='47.3686498,8.539182500000038';leftBottomPosition='47.32023,8.448059899999976';
rightTopPosition='47.43468,8.625370100000055';availabilityEndDate=datetime'2012-08-012T18:00:00';$culture=en
from frame with URL http://example:81/. Domains, protocols and ports must match.
どうもありがとう !