programming/jsp

크로스도메인 자바스크립트 엑세스 문제 해결

labj 2012. 3. 21. 13:12

크로스도메인 자바스크립트 엑세스 문제 해결

 

1. 2차도메인까지 동일한 웹서버인 경우

해결방법으로는 서로 다른 웹 서버의 2차 도메인까지 동일할 경우에 자바스크립트 소스를 이용하여 해결 할 수 있습니다.

 

<script type="text/javascript">

    document.domain = "abc.test.com";

</script>

 

참고:

* test.com 도메인 등록

1차 도메인 : test.com

2차 도메인 : abc.test.com / bbs.test.com (1차 도메인 앞에 '단어.' 이 들어간 경우)

3차 도메인 : abc.abc.test.com

 

2. 도메인이 전혀 다른 경우

웹서버2가 웹서버1의 페이지를 포함하여 웹서버1의 자바스크립트를 호출해서 해결함

 

웹서버1 yyy.abc.test.com

   - iframe으로 웹서버2를 포함함

     <iframe src=http://xxx.abc.test.com"   width="400" height="100" id="seatBooking"></iframe>

 

   - iframe 사이즈 변경 자바스크립트1을 가짐

     <script type="text/javascript">
       function iframeResize( height ) { 
         document.getElementById( 'web2' ).setAttribute( 'height', height );
       }
     </script>

 

   - 자바스크립트1을 호출하는 자바스크립트를 가지는 resize.html

     <script type="text/javascript">   
       var iframe_height = <%=height%>;
       window.onload = function() {
         window.top.iframeResize( iframe_height );
       }      
     </script>

 

웹서버2  xxx.abc.test.com 

   - 웹서버1의 resize.html 을 iframe으로 가짐

      <script type="text/javascript">  

      function resize() {

        document.getElementById('web1resize').src="http://yyy.abc.test.com/resize.html?height=100";

       }

      </script>

      <iframe  id="web1resize"></iframe>

 

'programming > jsp' 카테고리의 다른 글

이미지회전(파이어폭스)  (0) 2012.03.21
'jsessionid'를 통해서 session이 사라지는 문제 해결  (0) 2012.03.21
javascript array 1개인 경우  (0) 2012.03.21
radio button disabled  (0) 2012.03.21
iframe 사이즈 늘리기(2)  (0) 2012.03.21