JavaScript
  Home arrow JavaScript arrow Page 4 - Reading Data from an XML File for a Dynami...
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
JAVASCRIPT

Reading Data from an XML File for a Dynamic AJAX-based Banner System
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 3
    2007-07-31

    Table of Contents:
  • Reading Data from an XML File for a Dynamic AJAX-based Banner System
  • Reintroducing the source files of the initial banner application
  • Fetching banner data from an XML file
  • Completing the improved AJAX-based banner application

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Reading Data from an XML File for a Dynamic AJAX-based Banner System - Completing the improved AJAX-based banner application


    (Page 4 of 4 )

    As I said in the previous section, the source code for the updated AJAX application is listed below. It is comprised of only two source files (the prior one required one more), whose respective signatures are listed below:

    (definition of 'dynamic_banner.htm' file)

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-
    8859-1" />
    <title>AJAX-Driven Dynamic Banner System</title>
    <script language="javascript" type="text/javascript">
    // send http requests
    function sendHttpRequest(url,callbackFunc,respXml){
      
    var xmlobj=null;
      
    try{
        
    xmlobj=new XMLHttpRequest();
      
    }
      
    catch(e){
        
    try{
          
    xmlobj=new ActiveXObject("Microsoft.XMLHTTP");
        
    }
        
    catch(e){
          
    alert('AJAX is not supported by your browser!');
          
    return false;
        
    }
      
    }
      
    xmlobj.onreadystatechange=function(){
        
    if(xmlobj.readyState==4){
          
    if(xmlobj.status==200){
            
    respXml?eval(callbackFunc+'(xmlobj.responseXML)'):eval
    (callbackFunc+'(xmlobj.responseText)');
          
    }
        
    }
      
    }
      
    // open socket connection
      
    xmlobj.open('GET',url,true);
      
    // send http header
      
    xmlobj.setRequestHeader('Content-Type','text/plain;
    charset=UTF-8');
      
    // send http request
      
    xmlobj.send(null);
    }
    // store banners into JavaScript array
    function storeBanners(banners){
      
    var banners=banners.getElementsByTagName('banner');
      
    if(!banners){return};
      
    // save banner data to JS arrays
      
    for(var i=0;i<banners.length;i++){
        
    images[i]=banners[i].getElementsByTagName('image')
    [0].firstChild.nodeValue;
        
    urls[i]=banners[i].getElementsByTagName('url')
    [0].firstChild.nodeValue;
      
    }
      
    // display first banner
      
    displayBanner();
    }
    // display banners
    function displayBanner(){
      
    var bannercont=document.getElementById('bannercontainer');
      
    if(!bannercont){return};
      
    // clean up headlines container
      
    bannercont.innerHTML='';
      
    // create <img> element
      
    var img=document.createElement('img');
      
    img.setAttribute('src',images[index]);
      
    // create <a> element
      
    var a=document.createElement('a');
      
    a.setAttribute('href',urls[index]);
      
    img.setAttribute('width',180);
      
    img.setAttribute('height',400);
      
    a.appendChild(img);
      
    // append banner to banner container
      
    bannercont.appendChild(a);
      
    index++;
      
    if(index>urls.length-1){index=0};
      
    setTimeout("displayBanner()",15*1000);
    }
    // initialize data arrays and index
    var images=new Array();
    var urls=new Array();
    var index=0;
    window.onload=function(){
      
    if(document.getElementById&&document.
    getElementsByTagName&&document.createElement){
        
    // fetch the first banner after loading the web page
        
    sendHttpRequest('banners.xml','storeBanners',true);
      
    }
    }
    </script>
    <style type="text/css">
    body{
      
    margin: 0;
      
    padding: 0;
      
    background: #eee;
    }

    h1{
      
    text-align: center;
      
    font: bold 24px Arial, Helvetica, sans-serif;
      
    color: #000;
    }

    #bannercontainer{
      
    text-align: center;
      
    width: 180px;
      
    height: 400px;
      
    margin-left: auto;
      
    margin-right: auto;
      
    background: #fff;
      
    border: 1px solid #000;
    }

    #bannercontainer img{
      
    border: none;
    }
    </style>
    </head>
    <body>
      
    <h1>AJAX-Driven Dynamic Banner System</h1>
     
    <div id="bannercontainer"></div>
    </body>
    </html>

    (definition of 'banners.xml' file)

    <?xml version="1.0" encoding="iso-8859-1"?>
    <banners>
     
    <banner>
       
    <image>banner1.gif</image>
       
    <url>http://www.myhosting.com</url>
     
    </banner>
     
    <banner>
       
    <image>banner2.gif</image>
       
    <url>http://www.myphp.com</url>
     
    </banner>
     
    <banner>
       
    <image>banner3.gif</image>
       
    <url>http://www.myjs.com</url>
     
    </banner>
    </banners>

    And wrapping up, the full source code corresponding to this application wouldn't be complete if I don't show you once again the sample banner images that I created in the previous article of the series, so here they are:

    Final thoughts

    In this second installment of the series, I introduced a major improvement into the original AJAX-based banner application by modifying one of its principal JavaScript functions. As you saw, the direct consequence in doing this was the relocation of the corresponding banner data into a new compact XML file, and the elimination of a PHP file that reads this data from the web server.

    Nonetheless, the application still relies on a global JavaScript variable to control the sequence in which the banners are displayed on the browser. This can be considered a bad programming habit. Thus, in the last part of the series, I'm going to fix this issue, in addition to tweaking the source code a bit, so all the banner data can be fetched from MySQL.

    Now that you've been warned, are you going to miss it? I hope not!


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

       · Over the course of this second tutorial of the series, the initial banner...
     

    JAVASCRIPT ARTICLES

    - Using Click Interceptions with a Database-Dr...
    - Using JavaScript Click Interceptions in an I...
    - Using Click Interceptions with JavaScript
    - QuickSort in Action
    - Quicksort
    - Using Mod_Security to Protect Your Server
    - Detecting and Countering Server Intrusions
    - Securing Your Web Server
    - Building a Secure Web Server
    - Protecting the Server
    - Book Review: Learning the Yahoo! User Interf...
    - Dynamically Generate a Selection List in a R...
    - Intergrate DWR into Your Java Web Application
    - Detect Browser Compatibility with the Reques...
    - Using the EXT JS Date Picker Widget






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
    Stay green...Green IT