ACCU Home page ACCU Conference Page
Search Contact us ACCU at Flickr ACCU at GitHib ACCU at Facebook ACCU at Linked-in ACCU at Twitter Skip Navigation

Search in Book Reviews

The ACCU passes on review copies of computer books to its members for them to review. The result is a large, high quality collection of book reviews by programmers, for programmers. Currently there are 1949 reviews in the database and more every month.
Search is a simple string search in either book title or book author. The full text search is a search of the text of the review.
    View all alphabetically
Title:
Java Distributed Computing
Author:
J Farley
ISBN:
1 56592 206 9
Publisher:
O'Reilly
Pages:
368pp
Price:
£24-50
Reviewer:
Brian Bramer
Subject:
java; networks; CORBA and COM
Appeared in:
10-5
Java's powerful APIs make it a clear candidate for implementing applications distributed across complex networks.

After an introductory chapter covering the basics of the anatomy of distributed applications there are four chapters covering fundamental tools; networking (Sockets/streams, URL connections, ClassLoader), distributed objects (CORBA and RMI), threads and security. There are then chapters on applications (which may be read in any order): message-passing systems, databases, bandwidth-limited systems and collaborative systems.

Consider an application running over a system which is bandwidth-limited. Does the application have high bandwidth requirements, e.g. real-time video, or does it have to run over slow connections, e.g. telephone lines? How does the application adapt to changes in traffic flow? For example, an application may compress information when it detects network congestion. How does the application measure data flow? What data flow - raw data (in terms of bits/secs at the socket level) or real data (in terms of application level data after encoding/decoding). Data compression may overload the host computer system making things worse not better. Should one chose best compression ratio (for low-bandwidth situations) or most robust (for lossy network situations)? The chapter on bandwidth limited system discusses these issues in detail, looking at monitoring bandwidth to measure raw and real data rates and managing the bandwidth.

A well-written and very interesting advanced Java text (assumes a working knowledge of Java) suitable for system developers or second level network modules. Plenty of example code (available from the book's web site). Highly recommended!