Home > Store

J2EE and JAX: Developing Web Applications and Web Services

Register your product to gain access to bonus material or receive a coupon.

J2EE and JAX: Developing Web Applications and Web Services

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2003
  • Edition: 1st
  • Book
  • ISBN-10: 0-13-047676-5
  • ISBN-13: 978-0-13-047676-0

Learn J2EE and the JAX APIs for Web services and applications—all in one volume.

  • The first book to offer integrated coverage of J2EE and JAX in one volume
  • Java Web application and services programming taught by example
  • Rich with code examples and explanations of supporting technologies
  • CD-ROM includes free, fully functional copy of HP Application Server (HP-AS)

Using a simple, stand-alone program as a point of departure, Java expert Michael Yawn brings you through all the steps and decisions needed to transform it into a rich, Web-enabled application. Along the way you'll gain a working knowledge of Java 2 Enterprise Edition (J2EE) and the Java APIs for XML (JAX)—emerging technologies for writing Web applications and working with XML documents and procedures. Yawn's technique of reworking the example application gives you hands-on experience at adapting software for different purposes and environments, as well as a deep understanding of how to build flexibility into your projects from the outset.

  • Web applications and services-and underlying technologies-by example
  • Layering applications to simplify reworking; using design patterns
  • Integrating JavaServer Pages, JavaBeans, Servlets, and custom tag libraries
  • XML on the Web and with wireless devices
  • Java Message Service, MOM, and XML messaging with SOAP and JAXM
  • JAX RPC services and their clients
  • Enterprise JavaBeans-Session, Message-Driven, and Entity beans
  • CD-ROM contains a full copy of HP Application Server (HP-AS)—a free alternative to IBM's WebSphere and BEA's WebLogic—and code samples from the book

In his engaging style, Yawn doesn't simply describe Web applications and services-you'll come away understanding how it all fits together. With the whys well in hand, you'll be a much more effective coder. This book requires only a basic knowledge of Java programming, and its content is applicable to all servers.

Sample Content

Online Sample Chapter

Introduction to J2EE and JAX

Downloadable Sample Chapter

Click here for a sample chapter for this book: 0130476765.pdf

Table of Contents



List of Acronyms.


Preface.


Acknowledgments.

I. FOUNDATIONS.

1. Introduction.

Why This Book Was Written. Who Needs This Book? What's This Book About? Why J2EE and Not Java? Architectural Principles. Organization Software Used. Using This Book. On the Web

2. The Example Application.

Finding the Objects. The Division and Conference Classes. The Team Class. The Game Class. The Teams and Games Container Classes. The Standings Class. Building and Running the Example Application. Exercises. Further Reading.

3. The Layered Application.

A Better Design for Handling Enumerated Types. Using an Object Factory. MVC Architecture. The Team Interface and Implementation. Messaging Facility Interface and Implementation. Continuing the Separation of Interface and Implementation. Separating Persistence from Games and Teams. Separating Presentation from the Standings Class. Separating the User Interface: The Console Class. Building and Running the Layered Application. Exercises. Further Reading.

II. WEB APPLICATIONS.

4. Introduction to Presentation Architecture.

Textual Interfaces. Graphical User Interfaces. Web Browser Interfaces. Web Services. XML Validation. Exercises. Further Reading.

5. Servlets.

What Is a Servlet? Using a Servlet for the Standings Class. Messaging Implementation for Servlets. Dynamic Behavior in the Standings Application. Advanced Servlet Topics. Exercises. Further Reading.

6. JavaServer Pages.

JSP Scripting Elements. JSP Directives. Building, Installing, and Running the Scriptlet. JSP Actions. Exercises. Further Reading.

7. Integrating JavaServer Pages with JavaBeans and Servlets.

Using JavaServer Pages with JavaBeans. Installing and Running the Bean Example. Using Servlets and JSP Together. Custom Tag Libraries. Tag Library API Reference. Exercises. Further Reading.

8. Struts.

What Is a Framework, Anyway? Struts Components. Handling User Preferences. Getting Favorite Team Information from Struts. Building, Installing, and Running the Struts Application. Other Frameworks. Exercises. Further Reading.

9. Web Presentation with XML and XSLT.

XML Acronyms FYI: An XML Glossary with References. XML Processors and JAXP. Creating an XML Document with DOM. Creating an XML Document with JDOM. Transforming XML to HTML via XSLT. Building, Installing, and Running the XML Presentation Classes. Exercises. Further Reading.

10. Using XML with Wireless Clients.

WML and XHTML Markup Languages. Building, Installing, and Running the Wireless Presentation and Servlet Classes. Presentation Architecture Wrap-Up and Review. Exercises. Further Reading.

III. DISTRIBUTED OBJECTS AND WEB SERVICES.

11. Introduction to Distributed Objects and Web Services.

Web Services Defined. Web-Service Models. Web-Service Security.

12. The Java Message Service.

JMS Features. JMS Pieces and Parts. A JMS-Based Game Server. JMS API Reference. Java Naming and Directory Interface. JNDI API Reference. A JMS Subscriber. Building, Deploying, and Running the JMS Examples. Exercises. Further Reading.

13. XML Messaging: SOAP and JAXM.

SOAP. Creating SOAP Messages with JAXM. Consuming the Web Service. JAXM API Docs. Building, Deploying, and Running the Application. Exercises. Further Reading.

14. Parsing and Manipulating XML.

Using DOM. DOM API Reference. Using SAX. SAX API Reference. Using JDOM. JDOM API Reference. Building and Running the JaxmClient Example. Using JAXB. Building and Running the JAXB Example. Exercises. Further Reading.

15. Remote Method Invocation (RMI).

Basic RMI Concepts. Creating a Remotely Accessible Standings Object. The RMI Registry. An RMI Client. RMI APIs. A Remote Object Factory. RMI Troubleshooting. Building and Running the RMI Examples. Exercises. Further Reading.

16. Building a Web Service with JAX-RPC.

The Basics of JAX-RPC. Publishing a Web Service with JAX-RPC. Creating Stubs and Ties with XRPCC. Consuming a JAX-RPC Web Service. Building, Deploying, and Running the JAX-RPC Examples. Exercises. Further Reading.

17. Describing, Publishing, and Finding Web Services.

Describing Web Services with WSDL. Standardized Web Services. Publishing Web Services. Describing Complex Business Relationships. Exercises. Further Reading.

18. Clients for JAX-RPC Web Services.

JAX-RPC Clients. JAX-RPC API Documentation. Building and Running the Examples. Exercises. Further Reading

IV. ENTERPRISE JAVABEANS.

19. Session Beans.

Introduction to Enterprise JavaBeans. Creating a Session Bean for the Standings. Session Bean APIs. Building, Deploying, and Running the Examples. Developing an EJB Client. Exercises. Further Reading.

20. Message-Driven Beans.

Writing a Message-Driven Bean. Message-Driven Bean API Reference. Building, Deploying, and Running the Message-Driven Bean Example. Exercises. Further Reading.

21. Entity Beans.

Bean-Managed versus Container-Managed Persistence. Writing an Entity Bean. Entity Bean API Reference. Building and Deploying the Entity Bean. Bean Relationships. Finder Methods and the EJB Query Language. Creating the Database. Deploying An Entity Bean in BEA WLS 6.1. Using the Entity Bean. Exercises. Further Reading.

22. A Look Back, A Look Ahead.

Where We've Been, What We've Learned. What's Ahead for XML and Web Services. What's Ahead for Enterprise JavaBeans. What's Ahead for This Book.

Appendix. Program Listings for the Original Application.

The Conference Class. The Division Class. The Game Class. The Games Class. The Standings Class. The Team Class. The Teams Class.

Bibliography.
Index.

Preface

Preface

When JDK 1.0 was released, it comprised eight packages with a total of 212 classes and interfaces. To be a Java programmer during that time was to know something of all of them. Because four of the eight packages dealt with graphical user interfaces, being a server-side Java programmer (if there had been such a thing then) would probably have meant knowing just about any method call you were likely to use right off the top of your head.

Java 1.3 includes 77 packages with over 2,000 classes and interfaces, but this number understates the explosion of Java APIs. This figure only includes Java 2 Standard Edition; we also have Java 2 Enterprise and Micro Editions, each with many additional APIs. No longer is it possible to expect a Java programmer to be able to put a finger right on the appropriate class needed to solve any problem that arises.

A well-stocked Java bookshelf in the JDK 1.0 timeframe might have had four books. Now, you can't really think in terms of a "one size fits all" selection of Java reference material. There are so many specialized APIs, so many acronyms, that scanning the available titles is likely to provide confusion rather than insight. What topics do you really need to know? JSPs, Jini, JAIN, JAX, JXTA, J-Lo, JFC, JWS-that's just a small selection of the Js (and one of them was probably mis-shelved, but can you really be sure?).

Much of the development being done in Java today is the creation of Web applications. Recently, the mix has shifted to include Web Services as well, which are XML-based interfaces that are commonly used for system-to-system communication in areas such as Enterprise Application Integration (EAI) and Electronic Data Interchange (EDI). There are many things that you need to know in order to create Web applications and Web Services, but frequently half the battle is just figuring out what it is you need to know. While it's easy to find a book on XSLT, or UDDI, or JavaServer Pages, it can be quite a bit harder to figure out which are the right technologies to solve your business problem.

In this book, I'll provide a primer on the current J2EE technologies (J2EE 1.3) that are used to develop Java Web applications, and a look at the coming J2EE technologies (J2EE 1.4) that are used to develop Java Web Services. There is a heavy emphasis on code; for any technology you find useful, you should be able to take the provided example programs as a starting point and just add in your application-specific code. The approach taken has been for breadth of coverage, rather than depth. So if you already have a half-dozen J2EE or Web-Service books on your bookshelf, then this won't add much, if anything, to what you already know. If, on the other hand, you're trying to figure out how to get started with Web applications and Web Services, then this book will get you well on your way. When you need more depth in a particular topic, you'll be directed where to go for further study.

Updates

Submit Errata

More Information

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