사용자가 URL을 입력하고 iframe에서 탐색 할 수 있도록 허용하려고합니다. 확인 버튼을 클릭하면 iframe에서 찾아보기 URL이 표시됩니다.GWT "http : // localhost"원본 프레임이 교차 원점 프레임에 액세스하지 못하도록 차단했습니다.
IFrameElement frame = IFrameElement.as(DOM.createIFrame());
frame.setSrc("http://www.example.com"); //set the url of user enter
VerticalPanel ver = new VerticalPanel();
ver.getElement().appendChild(frame);
// After they click the confirm button, get the url from iframe
Window.alert(frame.getContentDocument().getURL());
하지만 iframe을에서 URL을 얻을 후 나는 오류가 발생했습니다 예외
: com.google.gwt.event.shared.UmbrellaException : 잡은 예외 : (오류 SecurityError가) : 프레임을 차단 원점은 " http://localhost"은 교차 원점 프레임에 액세스하지 못합니다.