weidagang2046的專欄

          物格而后知致
          隨筆 - 8, 文章 - 409, 評論 - 101, 引用 - 0
          數據加載中……

          Creating A Client-Side Web Service Broker

          del.icio.us direc.tor: Creating A Client-Side Web Service Broker

          June 20, 2005

          Initially, I had planned on using the XmlHTTPRequest object to create a client-side application that integrated various web services like Google suggest, del.icio.us, Flickr, Yahoo developer network, etc. Unfortunately, the browser security restrictions severely limit the capabilities of a client-side application, essentially eliminating any cross-domain integration services. However, single-domain services can still be implemented by using the Javascript bootloading technique.

          Same-Origin Policy

          The most frustrating part of creating any client-side application is the security model that applies to just about all executable objects that can be accessed by the browser. Designed the prevent cross-site scripting attacks (XSS), the same-origin policy effectively prohibits a page served from www.mydomain.org to access any document served from a different domain, via XmlHTTPRequest, IFRAME's, or similar DOM methods. Therefore, a page with a URL of http://www.mydomain.org:80/ cannot access another page that does not share the same protocol, domain, and port.

          One exception to this rule is when the document.domain property is set. This exception stipulates that in an FRAME/IFRAME situation, documents served from different subdomains of the same base domain may access each other's DOM tree if both pages set their respective document.domain property to the base domain. For example, if a page blue.domainA.org/master.html contains an IFRAME of the page red.domainA.org/slave.html, then by default the two pages will not be allowed to access each other's DOM tree. However, if both pages contain an explicit Javascript command, document.domain = "domainA.org";, then access to the DOMs will be granted. What is somewhat confusing is that all pages have a valid document.domain property that is set, but is considered null by the security model until it is set explicitly. Unfortunately, XmlHTTPRequest objects are not affected by the document.domain property. XmlHTTPRequest will only fetch documents from the originating server. In fact, you have to specify a relative URL, since it completely ignores any URL's with a fully-qualified domain name.

          None of these security policies apply when executing a web page served from localhost. You can use IFRAME's and XmlHTTPRequest objects to access any valid URL to your heart's content.

          Using the Javascript Bootloader

          You can execute arbitrary Javascript code in the security context of any web page by simply typing a javascript command into the browser's address bar:

          javascript:void(document.body.style.backgroundColor='#c00')

          That command can also be bookmarked by either editing a bookmark property directly or using the drag-and-drop method, thus creating a Javascript bookmarklet. As anyone who has had the displeasure of implementing third-party banner ads knows, a web page may contain a <script> reference to any valid URL, i.e. <script src="http://shoddy.advertiser.net"></script>. The Javascript bootloader uses this capability to inject foreign code — not by writing out a <script> string, but by way of DOM node creation:

          				
          						// Create a new script node
          				
          var element = document.createElement('script');
          
          // set the 'src' attribute of the element
          element.setAttribute('src', 'http://johnvey.com/features/deliciousdirector/dboot.js');
          
          // insert the new node into the current document
          document.body.appendChild(element);

          Once the new script node is inserted, the browser will automatically process the attached code. The complete javascript bookmarklet is as follows:

          javascript:void((function() {var%20element=document.createElement('script'); element.setAttribute('src', 'http://johnvey.com/features/deliciousdirector/dboot.js'); document.body.appendChild(element)})())

          This method eliminates the need to include large blocks of Javascript code inside a bookmark (compare with the Javascript shell), and allows central control of the core Javascript code.

          Resetting the Page

          Once the foreign code is loaded, you may want to clear the content from the page in order to start from a clean slate:

          				
          						// clear the body content
          				
          document.body.innerHTML = "";
          
          // remove all the existing stylesheets
          for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
          	if(a.getAttribute("rel").indexOf("style") != -1) {
          		a.disabled = true;
          	}
          }
          
          // fill in new body content
          document.body.innerHTML = "Hello, World!";
          
          // create a new stylesheet link
          var ns = document.createElement("link");
          ns.rel = "stylesheet";
          ns.type = "text/css";
          ns.;
          document.body.appendChild(ns);
          
          // create a new script node for the main program logic
          var js = document.createElement("script");
          js.language = "javascript";
          js.src = "http://johnvey.com/features/deliciousdirector/d.js";
          document.body.appendChild(js);
          
          // update the page title
          document.title += " (Direc.tor)";



          from: http://johnvey.com/features/deliciousdirector/web-service-broker.html

          posted on 2006-11-20 21:38 weidagang2046 閱讀(552) 評論(0)  編輯  收藏 所屬分類: Javascript

          主站蜘蛛池模板: 信宜市| 新兴县| 合水县| 象山县| 乌拉特前旗| 汕头市| 平山县| 武冈市| 图木舒克市| 甘南县| 马山县| 揭阳市| 彭州市| 吉木萨尔县| 鸡西市| 德惠市| 太仓市| 鄂伦春自治旗| 安多县| 苍梧县| 福州市| 淮南市| 陵水| 若尔盖县| 通州区| 新丰县| 安平县| 泾阳县| 武夷山市| 慈溪市| 六盘水市| 铜陵市| 若羌县| 高安市| 晴隆县| 高台县| 长子县| 南陵县| 泰和县| 五莲县| 宾阳县|