Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
DWR Java AJAX Applications
DWR Java AJAX Applications

DWR Java AJAX Applications: A step-by-step example-packed guide to learning professional application development with Direct Web Remoting

eBook
zł59.99 zł141.99
Paperback
zł177.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

DWR Java AJAX Applications

Chapter 2. DWR Features

This chapter describes some main features of DWR: Reverse AJAX, security, DWR JavaScript libraries, and DWR's integration with other projects.

Reverse AJAX is basically a method to call client-side JavaScript from server-side Java classes. The security section discusses what has been done in DWR in order to prevent unwanted access to the server by exploiting DWR features.

DWR includes a couple of useful JavaScript libraries that are explained here together with how to use DWR with other projects, such as Struts or JSF.

This chapter covers the following sections:

  • Ease of Use—A high-level view of how DWR makes a developer's life easier

  • Reverse AJAX—Describes what Reverse AJAX means

  • DWR JavaScript Libraries—Describes the JavaScript libraries that come with DWR: engine.js, util.js, and gi.js

  • Converters—Presents how DWR marshals/unmarshals objects

  • Creators, Filters, and Signatures—Introduces important DWR configuration elements

  • Integration with Other Projects—Briefly describes...

Ease of Use


The main feature of DWR is its ease of use. DWR hides a lot of details from developers. This means that we can use AJAX functionality and we don't need to know about XmlHttpRequest for example, or how to send a Java object to a browser and so on. DWR has its own framework for performing the required marshaling/unmarshaling of Java objects to JavaScript and vice versa.

The setup for DWR consists of copying the dwr.jar file to the WEB-INF | lib directory in the application WAR file, and installing the application in the server before starting to use it. There are no special interfaces to implement in our own Java classes and it is even possible to develop a Java object completely transparently, so that the object doesn't know any DWR-specific classes. DWR provides well-documented APIs for us to use, and we can take advantage of it when developing, for example, Reverse AJAX applications.

And finally we can leverage the existing Java skills because DWR does not force us to replace...

Reverse AJAX


The term Reverse AJAX is used when a server is used to query and/or control a client-browser behavior. This may cause some questions because it sounds like our browsers are now vulnerable to attack while we visit the web pages of the world.

Luckily that is not the case, because it is not possible for a server to open a connection to a browser. A browser must always be the initiator of the connection. So, the question about security is actually valid, but a problem would mean that the website in question is designed and implemented for causing harm.

DWR supports three different methods to do Reverse AJAX in applications: Piggyback, Polling (by the client), and Comet (server push).

Piggyback

The piggyback method works so that whenever a server has an update to be sent to the client, it waits until the client opens a connection and requests some content from the server. When that happens, the server includes a new update with the response, and it is delivered to the client where DWR...

DWR JavaScript Libraries


DWR includes a few JavaScript libraries that are required for DWR to work and that are also helpful for developers: engine.js, util.js, and gi.js.

The first JavaScript library, engine.js, is the core of DWR's browser-side functionality, and is required for all the pages that use AJAX and DWR. The second library, util.js, contains useful utility functions but is not required for DWR. And the third library, gi.js, is used to integrate DWR with TIBCO General Interface (GI) for AJAX Applications.

engine.js

The engine.js library is mandatory for DWR applications since it has functions to marshal calls from the dynamically generated JavaScript functions to remote Java classes in the server. The following fragment must be present in all HTML pages that need DWR functionality:

<script type='text/javascript' src='/<web app name>/dwr/engine.js'>
</script>

There are a number of options and methods in the engine.js library. The functions in the library are prefixed...

Converters


Converters are DWR's means of marshaling data back and forth from the client to the server. There are many basic converters that are enabled by default, and it is also possible to create new converters.

Basic converters include converters for all primitive types, strings, and the following objects:

  • From java.lang package: Boolean, Byte, Short, Integer, Long, Float, Double, Character

  • From java.math package: BigInteger and BigDecimal

  • DateConverter for java.util.Date, and classes from java.sql package: Date, Times, and Timestamp

DWR also has converters for arrays (of all aforementioned objects), Java Beans and Objects, collections (Map and Collection), DOM objects, Enums, and others such as the Servlet objects and Hibernate beans.

The DWR API has a Converter interface that can be implemented for custom converters. This is not used very often because BeanConverter works for many custom objects if they are coded according to the JavaBean specification.

Creators, Filters, and Signatures


Creators are used by DWR to instantiate our remote objects on the server side. Chapter 3 has a section about Creators, and how to use them.

Filters are used to intercept calls to remote objects. Interception can occur before or after the call, and filters can be used for various purposes such as logging, security, parameter checking, or even adding extra latency to the DWR calls. The following samples shows simple filter code, and how it is configured in dwr.xml for a single class:

public class NotifyRestrictedAccessFilter {
public Object doFilter(Object obj, Method method, Object[] params, AjaxFilterChain chain) throws Exception {
//if params include monitored sentence
//then send mail to security officials
… code here …
return chain.doFilter(obj, method, params);
}
}
<allow>
<create creator="new"javascript="GetAreaDetails">
<param name="class" value="org.area.NumberedArea"/>
<filter class="org.filters.NotifyRestrictedAccessFilter"/&gt...

Integration with Other Projects


Often, DWR is not used just by itself. Perhaps, you have an on-going project where decision has been made to use a framework such as JSF or Spring for building the whole solution. In these cases, AJAX and DWR are just a part of the overall picture, and so DWR needs to integrate with other projects nicely. And that it does.

DWR integrates with the following:

Security


Security is always important, and the DWR project has thought about security very thoroughly. The DWR framework has taken into account many security issues, and there is lots of discussion about security on the DWR website, enough to fill several books about the subject.

Among the people for whom security is important are developers like you and me. Software does only what we instruct it to do, so we must be conscious about security during development and do our best to limit the possibilities to exploit our work.

While using DWR, we manually specify in the dwr.xml configuration (unless we have created some automatic code-generation software that does it for us) which Java classes and methods we want to remote to JavaScript. This way we can be sure that no attacker can exploit any other objects than our explicitly remoted Java objects (and we can concentrate to make those objects as secure as possible).

The configuration in dwr.xml also includes a create entry for each remoted Java...

Summary


This chapter presented an overview of DWR features including JavaScript libraries (util.js, engine.js, and gi.js), security, and Reverse AJAX and on basic operational elements of how DWR works.

In addition to the topics discussed in this chapter, DWR has lots of other useful features that may or may not be relevant to developers. It depends on the application. Topics in this chapter are intended to be high-level overviews, but they will give you a good starting point to learn more from the DWR website (http://directwebremoting.org/dwr/documentation) and even from the DWR source code.

Very often, most developers do not need all the features of a technology when they start working on a project. After the project has been going on for some time, we may find out that the solution has matured to include most if not all features of the technology. But that is typically not the initial case and, besides, we have to start somewhere and it is practical to start taking small steps at a time...

Left arrow icon Right arrow icon

What you will learn

  • Will make your development faster and simpler by teaching you the features of DWR and implementing it with Reverse AJAX. Teaches you how to use DWR JavaScript libraries, Convertors, Creators, Filters and Signatures. Integration with other projects, and Security factors which are essential to developing any DWR application. Specifies practical aspects such as supported browser and environments, configuration, setting up development environment, testing and debugging, error handling, packaging and deployment in a comprehensive manner, by demonstration where required. Provides a practical demonstration of creating a dynamic user interface, implementing tables and lists, and field completion for you to derive concepts from. Shows advanced elements of user interface through practical examples of creating forms, building a navigation tree, and map scrolling. Teaches back-end integration: integrating a database with DWR, integrating with web services, and integrating with a messaging system. Includes collaborative book authoring and chatroom applications, which show how easy it would be to enhance your applications to production grade using these samples as a starting point for development and as a source of ideas.

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 29, 2008
Length: 232 pages
Edition :
Language : English
ISBN-13 : 9781847192936
Category :
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Oct 29, 2008
Length: 232 pages
Edition :
Language : English
ISBN-13 : 9781847192936
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just zł20 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just zł20 each
Feature tick icon Exclusive print discounts

Table of Contents

7 Chapters
Introduction Chevron down icon Chevron up icon
DWR Features Chevron down icon Chevron up icon
Getting Started Chevron down icon Chevron up icon
User Interface: Basic Elements Chevron down icon Chevron up icon
User Interface: Advanced Elements Chevron down icon Chevron up icon
Backend Integration Chevron down icon Chevron up icon
Sample Applications Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(2 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
bbrockRailFan Jan 30, 2010
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I have used this book in detail and tried a few code samples sucesfuly. I you are a hard core programmer And interested in combining J2EE and Ajax, this is the book for you. Even though its not a very thick soft cover book it is jam packed with information.
Amazon Verified review Amazon
RS Jan 14, 2009
Full star icon Full star icon Full star icon Full star icon Full star icon 5
ecently read "DWR Java AJAX Applications" by Sami Salkous-a PACKT Publication. At first, I was put off by the books short length and cover price of $39.99 US. However, after reading the book-to-cover twice I was pleasantly surprised to find that book not only adequately covers the subject of DWR, but covers it well. This is an excellent book if you are just starting to dabble with DWR. The book is jam packed with excellent code samples. It also provides solid coverage of deployment. I will recommend this book to any novice. Where I find the book falls short, but am not certain that it was ever meant to cover, is on the topics of performance and scalability. The book also only provides deployment examples for Apache Geronimo. It would be nice to add a few more examples for Jetty and JBoss. The development setup in the book is also specific to Eclipse. One additional nice to have would be an example of how-to structure a DWR project with Maven. Despite these minor shortcomings the book is a good read and the author should be proud of this publication. Nice work Sami! Now, if I can just get PACKT to lower their price a tad.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.