Home > Articles > Home & Office Computing > The Web/Virtual Worlds/Social Networking

This chapter is from the book

Ajax and the Dojo Toolkit

The Dojo Toolkit is a JavaScript-based collection of libraries (hence the name toolkit) that enable you to build Ajax capabilities into your web pages. The Dojo Toolkit is more than just Ajax, but that is our primary focus in this book. In reality, Dojo is a DHTML toolkit. Because Dojo is open source, it is free to use in your projects, and many large organizations contribute to Dojo itself.

JavaScript, DHTML, and Ajax are complicated. Dojo encapsulates complex JavaScript capability with predefined components and APIs. Of course, Dojo has a learning curve; however, the gains obtained by focusing at a higher level of abstraction can be enormous. In addition, while some optimization can be obtained, using Dojo libraries implies heavier pages in the form of JavaScript libraries that need to be transmitted to the user's browser to enable all the cool functionality that you will build. It is worth the tradeoff, but I don't want you to think that you get something for free.

Several Ajax libraries are available on the market today. Many of them are open source. IBM® has opted to support Dojo by contributing to the community and building Dojo into WebSphere® Portal 6.1.

JSON

JSON is designed as a lightweight data-interchange format. Similar to XML but with the advantage of being easier for machines to parse and generate, in many cases, it can be much faster than using XML. JSON is language independent; however, it looks strongly familiar. Similar to pseudocode, JSON is built on the idea of name/value pairs that are often recognized arrays or lists of data. In addition, values are presented as ordered lists that can be recognized as arrays or lists of data.

The main idea is that these name/value pairs and ordered lists of data are universal to all programming languages and are easily translated into the common data structures. The following sample shows how a list of customers might be represented in JSON:

{"customers":
 {"@uri":"http://myhost/resources/customers",
  "customer":
  [
   {"@uri":"http://localhost/resources/customers/103",
    "name":"Atelier graphique",
    "city":"Nantes",
    "state":"",
    "zip":"44000"
   },
   {"@uri":"http://localhost/resources/customers/124",
    "name":"Mini Gifts Distributors Ltd.",
    "city":"San Rafael",
    "state":"CA",
    "zip":"97562"
   },
   {"@uri":"http://myhost/resources/customers/495",
    "name":"Diecast Collectables",
    "city":"Boston",
    "state":"MA",
    "zip":"51003"
   },
  ]
 }
}

Note that an object, which is an unordered set of name/value pairs, is represented by the left and right braces {} within the syntax. An array is an ordered set of values that are represented by brackets []. With that in mind, you can see that the preceding sample provides an array of customers. Similarly, the following example is the same data set represented with XML:

<?xml version="1.0" encoding="UTF-8" ?>

<customers>
<uri>http://myhost/resources/customers
</uri>
<customer>
<uri>http://localhost/resources/customers/103
</uri>
<name>Arelier graphique
</name>
<city>Nantes
</city>
<state />

<zip>44000
</zip>
</customer>
<customer>
<uri>http://localhost/resources/customers/124
</uri>
<name>MiniGifts Distributors Ltd.
</name>
<city>San Rafael
</city>
<state>CA
</state>
<zip>97562
</zip>
</customer>
<customer>
<uri>http://myhost/resources/customers/495
</uri>
<name>Diecast Collectables
</name>
<city>Boston
</city>
<state>MA
</state>
<zip>51003
</zip>
</customer>
</customers>

JSON works particularly well with JavaScript because it is actually a subset of the object literal notation of the JavaScript language. Object literal means that objects are created by literally listing a set of name/value pairs within the document. The debate continues to rage as to whether JSON is really the right approach as compared to XML. For work within the browser, it has some definite advantages, such as quicker parsing and being somewhat more focused on transferring data without worrying about much of the overhead of XML and the structure that it can often involve. The idea behind JSON is to strip down the data to a basic form for transmission to and within the browser.

There is no reason not to use XML, and in many cases, you might have to define XML as a standard in your organization (I'm big on standards) and let JSON be used in the exceptional cases where the application team can explain why JSON is a better fit. Another disadvantage on the JSON side is that it is not as readable as XML. That might be a preference for someone to decide, but the brackets and braces can be confusing, especially if the document is more squished together than what I have laid out here as an example. One big advantage of JSON is that it works well with the Dojo Ajax Toolkit that we use throughout Chapter 3 and other parts of the book.

REST

The term REST was first introduced by Roy Fielding in Chapter 5 of his doctoral dissertation titled Architectural Styles and the Design of Network-Based Software Architectures. REST focuses on the simplicity and efficiency of the Web as it exists today and leverages that simplicity to represent the state of data and resources within the Web. Like the Web, REST is a stateless protocol and is based on common HTTP verbs of GET, POST, PUT, and DELETE. This means that like many of the other technical aspects of the Web 2.0 approach, there are no additional standards required for providing REST services.

REST-provided services, often called RESTful services, are not based on any new standards, but are more of an architectural style that leverages currently available standards to deliver information and data about existing resources. Uniform Resource Identifiers (URIs) are used to determine what resource you are actually operating on. (Remember REST is resource oriented.) Reformatting data into the form of resources does take some initial effort, and with any design, you want to get as close as possible as soon as you can to the correct format. For our purposes, we look at some simple examples. Consider the following URI:

http://myhost.com/resources/customers

In this case, you can expect a list of customers to be returned as an XML stream from the server. Embedded within that data will probably be additional entity URIs so that you can retrieve information about a specific customer. Many of the URIs that would be used within RESTful services contain a combination of the location of the resource and the actual resource that we need. For example, the following URI should return a data stream with information about a specific customer:

http://myhost.com/resources/customer/103

The resulting data stream often takes the form of XML, which is defined to provide an understandable data set; however, other representations can be used such as JSON that we previously discussed.

So, why not use traditional web service technology such as Simple Object Access Protocol (SOAP) and Web Services Description Language (WSDL) to retrieve information? The debates continue about this question, but remember that REST is an architectural style designed to use technologies that are currently available. It can also be useful in simplifying much of the complexity that web services bring to the table. Figure 1.4 illustrates the difference between REST services and traditional web services.

Figure 1.4

Figure 1.4 REST vs. traditional web services

Traditional web services, on the other hand, are complex because there is a focus on solving complex enterprise problems, which require robust and complex standards to ensure security, performance, and especially interoperability across the Web. Because of this, the standards around traditional web services are more complex and strict because they have to be. The caution here is for you to not think that they are necessarily easily exchanged or that one approach can be a complete replacement for the other.

Atom and RSS

Atom and Really Simple Syndication (RSS), previously known as Rich Site Summary but changed to Really Simple Syndication for version 2.0, might not seem like exciting new technologies. Anyone who has read a blog or news feed should be familiar with the RSS format. These are core technologies in the new Web. The ability to share news and information in a standardized format makes for easy integration in the Web 2.0 world.

Consider the simple case of a set of information around a particular topic. It could be a specific technology, industry, or perhaps political or scientific information. In the Web 1.0 world, readers would have to go to or log in to each website and see whether any information had been updated. As you can imagine, that approach doesn't scale well as users try to add new information sources to their resource pool. Imagine, in my case, where I am lucky to update my blog once a month during busy periods; readers would quickly lose interest in checking for new updates. Data feeds in a standardized format can be accessed and aggregated into a single tool or web page where users can see right away if new information is available. If a new update is available, even from a site where information is not updated as often, it can receive the same attention as the more prolific data sources. RSS is one such format for delivering content. Online news, blogs, products, and catalogs can be syndicated and delivered in a standardized way that enables readers to stay informed of existing and new information without the effort of constantly looking for new data.

Atom is another set of standards for providing the same capability. The Atom Syndication Format is an XML language that is used to provide web feeds similar to RSS. Atom provides the Atom Publishing Protocol (APP) as a way to update or publish to web resources.

Both of these services are readily available on many if not most websites. Usually they are offered together to enable consumers to choose the format that best fits their needs. You have probably seen the icons shown in Figure 1.5 embedded in many of the websites that you visit.

Figure 1.5

Figure 1.5 RSS and Atom icons

When you click on one of these icons, you will probably see an XML-based representation of the content that is available on the site. Using a feed reader, you can import the URL of either feed to incorporate that data feed into your syndication tool.

Deciding upon a syndication strategy can be important to enabling the sharing of libraries and new content repositories in your organization. This strategy can help you understand how you want to expose information to other systems and end users. Let's face it, no organization has a single source of knowledge. Knowledge management experts have been working for years on trying to collect, organize, and share information and collective knowledge within the enterprise with limited success. The reality is that it is hard to keep up with everything going on in large organizations, and new knowledge sources seem to spring from the ground. Even beyond document repositories, which might be tightly controlled, blogs, industry news, and research, information can come from widely varied sources. Adopting a syndication strategy can help you avoid trying to control the knowledge and simply acknowledge that you can benefit from these new sources.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020