Java Message Service: Creating Distributed Enterprise Applications

Java Message Service: Creating Distributed Enterprise Applications

Java Message Service: Creating Distributed Enterprise Applications

Java Message Service: Creating Distributed Enterprise Applications

Paperback(Second Edition)

$39.99 
  • SHIP THIS ITEM
    Qualifies for Free Shipping
    Choose Expedited Shipping at checkout for delivery by Friday, March 22
  • PICK UP IN STORE
    Check Availability at Nearby Stores

Related collections and offers


Overview

Java Message Service, Second Edition, is a thorough introduction to the standard API that supports "messaging" — the software-to-software exchange of crucial data among network computers. You'll learn how JMS can help you solve many architectural challenges, such as integrating dissimilar systems and applications, increasing scalability, eliminating system bottlenecks, supporting concurrent processing, and promoting flexibility and agility.

Updated for JMS 1.1, this second edition also explains how this vendor-agnostic specification will help you write messaging-based applications using IBM's MQ, Progress Software's SonicMQ, ActiveMQ, and many other proprietary messaging services.

With Java Message Service, you will:

  • Build applications using point-to-point and publish-and-subscribe messaging models
  • Use features such as transactions and durable subscriptions to make an application reliable
  • Implement messaging within Enterprise JavaBeans (EJB) using message-driven beans
  • Use JMS with RESTful applications and with the Spring application framework

Messaging is a powerful paradigm that makes it easier to uncouple different parts of an enterprise application. Java Message Service, Second Edition, will quickly teach you how to use the key technology that lies behind it.


Product Details

ISBN-13: 9780596522049
Publisher: O'Reilly Media, Incorporated
Publication date: 06/04/2009
Edition description: Second Edition
Pages: 305
Product dimensions: 7.00(w) x 9.10(h) x 0.80(d)

About the Author

Mark Richards, Director and Sr. Technical Architect at Collaborative Consulting, LLC, is a leading authority on messaging, transaction management, systems integration, and Service Oriented Architecture. He is the author of "Java Transaction Design Strategies", contributing author of "97 Things Every Software Architect Should Know", "NFJS Anthology Volume 1", "NFJS Anthology Volume 2", and the author of numerous transaction, JMS, and SOA-related articles. Mark is a regular conference speaker on the No Fluff Just Stuff conference tour and has spoken at other conferences around the world, including QCon, TSSJS, and SYS-CON.

Richard Monson-Haefel is the author of Enterprise JavaBeans (Editions 1 - 5), Java Message Service and one of the world's leading experts and book authors on enterprise computing. He was the lead architect of OpenEJB, an open source EJB container used in Apache Geronimo, a member of the JCP Executive Committee, member of JCP EJB expert groups, and an industry analyst for Burton Group researching enterprise computing, open source, and Rich Internet Application (RIA) development. Today, Richard is the VP of Developer Relations for Curl, Inc. a RIA platform used in enterprise computing. You can learn more about Richard at his web site Monson-Haefel.

David A. Chappell is vice president and chief technologist for SOA at Oracle Corporation. Chappell has over 20 years of experience in the software industry covering a broad range of roles including Architecture, code-slinging, sales, support and marketing. He is well known worldwide for his writings and public lectures on the subjects of Service Oriented Architecture (SOA), the enterprise service bus (ESB), message oriented middleware (MOM), enterprise integration, and is a co-author of many advanced Web Services standards.



As author of the O'Reilly Enterprise Service Bus book, Dave has had tremendous impact on redefining the shape and definition of SOA infrastructure. He has extensive experience in distributed computing infrastructure, including ESB, SOA Governance, EJB and Web application server infrastructure, JMS and MOM, EAI, CORBA, and COM. Chappell's experience also includes development of client/server infrastructure, graphical user interfaces and language interpreters.



Chappell is also well noted for authoring Java Web Services (O'Reilly), Professional ebXML Foundations (Wrox) and Java Message Service (O'Reilly). In addition, he has written numerous articles in leading industry publications, such as Business Integration Journal, Enterprise Architect, Java Developers Journal, JavaPro, Web Services Journal, XML Journal and Network World.



Chappell and his works have received many industry awards including the "Java™ Technology Achievement Award" from JavaPro magazine for "Outstanding Individual Contribution to the Java Community" in 2002, and the 2005 CRN Magazine "Top 10 IT leaders" award for "casting larger-than-life shadow over the industry".

Table of Contents

Foreword; Preface; Who Should Read This Book?; Organization; Software and Versions; Conventions Used in This Book; Using Code Examples; Safari® Books Online; How to Contact Us; Acknowledgments; Acknowledgments from the First Edition; Chapter 1: Messaging Basics; 1.1 The Advantages of Messaging; 1.2 Enterprise Messaging; 1.3 Messaging Models; 1.4 JMS API; 1.5 Real-World Scenarios; 1.6 RPC Versus Asynchronous Messaging; Chapter 2: Developing a Simple Example; 2.1 The Chat Application; Chapter 3: Anatomy of a JMS Message; 3.1 Headers; 3.2 Properties; 3.3 Message Types; Chapter 4: Point-to-Point Messaging; 4.1 Point-to-Point Overview; 4.2 The QBorrower and QLender Application; 4.3 Message Correlation; 4.4 Dynamic Versus Administered Queues; 4.5 Load Balancing Using Multiple Receivers; 4.6 Examining a Queue; Chapter 5: Publish-and-Subscribe Messaging; 5.1 Publish-and-Subscribe Overview; 5.2 The TBorrower and TLender Application; 5.3 Durable Versus Nondurable Subscribers; 5.4 Dynamic Versus Administered Subscribers; 5.5 Unsubscribing Dynamic Durable Subscribers; 5.6 Temporary Topics; Chapter 6: Message Filtering; 6.1 Message Selectors; 6.2 Declaring a Message Selector; 6.3 Message Selector Examples; 6.4 Not Delivered Semantics; 6.5 Design Considerations; Chapter 7: Guaranteed Messaging and Transactions; 7.1 Guaranteed Messaging; 7.2 Message Acknowledgments; 7.3 Message Groups and Acknowledgment; 7.4 Transacted Messages; 7.5 Lost Connections; 7.6 Dead Message Queues; Chapter 8: Java EE and Message-Driven Beans; 8.1 Java EE Overview; 8.2 Enterprise JavaBeans 3.0 (EJB3) Overview; 8.3 JMS Resources in Java EE; 8.4 Message-Driven Beans; 8.5 Message-Driven Bean Use Cases; Chapter 9: Spring and JMS; 9.1 Spring Messaging Architecture; 9.2 JmsTemplate Overview; 9.3 Connection Factories and JMS Destinations; 9.4 Sending Messages; 9.5 Receiving Messages Synchronously; 9.6 Message-Driven POJOs; 9.7 The Spring JMS Namespace; Chapter 10: Deployment Considerations; 10.1 Performance, Scalability, and Reliability; 10.2 To Multicast or Not to Multicast; 10.3 Security; 10.4 Connecting to the Outside World; 10.5 Bridging to Other Messaging Systems; Chapter 11: Messaging Design Considerations; 11.1 Internal Versus External Destination; 11.2 Request/Reply Messaging Design; 11.3 Messaging Design Anti-Patterns; The Java Message Service API; Message Interfaces; Common Facilities; Common API; Point-to-Point API; Publish-and-Subscribe API; Message Headers; Message Properties; Property Names; Property Values; Immutable Properties; Property Value Conversion; Nonexistent Properties; Property Iteration; JMS-Defined Properties; Provider-Specific Properties; Installing and Configuring ActiveMQ; Installing ActiveMQ; Configuring ActiveMQ for JNDI; Configuration For Chat Examples; Configuration for P2P Examples; Configuration for Pub/Sub Examples; Configuration for Spring JMS Examples; Colophon;
From the B&N Reads Blog

Customer Reviews