Home > Computing and Information Technology > Computer programming / software engineering > Web programming > Enterprise JavaBeans™: Developing Component-Based Distributed Applications
48%
Enterprise JavaBeans™: Developing Component-Based Distributed Applications

Enterprise JavaBeans™: Developing Component-Based Distributed Applications

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

Enterprise JavaBeanso facilitates the development of distributed Javao applications, providing an object-oriented transactional environment for building distributed, component-based, multitier enterprise applications. Enterprise JavaBeans is designed to get you up-to-speed quickly, focusing on the exact information you need to become an effective Enterprise JavaBeans programmer. This example-filled book serves as an introduction and tutorial, and provides the in-depth information you need to handle real-world programming challenges. This book presents an overview of the architecture, using a "Hello, world!" Enterprise JavaBeans system to illustrate basic concepts. The book then moves on to cover Session and Entity beans, how to write client programs that use Enterprise JavaBeans, and the packaging and deploying of Enterprise JavaBeans. You will find precise explanations on specific topics such as: *The differences between stateful and stateless beans *The differences between bean-managed and container-managed Entity beans *How to call a bean from a servlet, another bean, or an applet *How to obtain and examine Enterprise JavaBeans metadata *How to identify deployment descriptors and the values they contain *How to use access control lists to set up permissions on an Enterprise JavaBeans server *How a bean can retrieve and test a client's identity In addition, substantial examples and an "implementation diary" demonstrate the implementation process, the available options and tradeoffs, and the rationale behind development choices. A chapter devoted to tips and common pitfalls provides concrete rules of thumb for more effective Enterprise JavaBeans programming. The accompanying CD-ROM includes Enterprise JavaBeans software and examples from the book. Enterprise JavaBeans gives you the background you need to use the system productively in your daily work and puts you on the fast track to mastering Enterprise JavaBeans techniques. 0201604469B04062001

Table of Contents:
Foreword. Preface. 1. The Big Picture. Introduction. Transaction Processors. ACID Properties of Transactions. OLTP Versus OLAP. Two-Tier, Client-Server Architecture. Three-Tier Architecture. Sockets. RPCs. CORBA. RMI. OLE/DCOM. Message Queues. Distributed Transaction Processing. EJB's Role. Conclusion. 2. EJB's Architecture. Logical Architecture. Overview of EJB's Software Architecture. EJB Servers. EJB Containers. Enterprise Beans. A High-Level View of an EJB Conversation. Finding the Bean. Getting Access to a Bean. Calling the Bean's Methods. Getting Rid of the Bean. RMI Clients. CORBA Clients. Building and Deploying EJBs. Writing the EJB. Deploying the EJB. Connecting to the EJB. Roles in EJB. Enterprise Bean Provider. Deployer. Application Assembler. EJB Server Provider. EJB Container Provider. System Administrator. 3. Hello, EJB! Requirements. Design. Implementation. Step 1: Create the Remote Interface for the Bean. Step 2: Create the Bean's Home Interface. Step 3: Create the Bean's Implementation Class. Step 4: Compile the Remote Interface, Home Interface, and Implementation Class. Step 5: Create a Session Descriptor. Step 6: Create a Manifest. Step 7: Create an ejb-jar File. Step 8: Deploy the ejb-jar File. Step 9: Write a Client. Step 10: Run the Client. What's Really Going on Here? Conclusion. 4. Writing EJB Session Beans. When to Use Session Beans. Constraints on Session Beans. Session Bean Life Cycle. Transactions and EJB. Stateful Session Bean Example. Requirements. Design. Implementation. Summing Up the Stateful Session Bean Example. Stateless Session Bean Example. Requirements. Design. Implementation. Deploying the Example. Conclusion. 5. Writing EJB Entity Beans. When to Use Entity Beans. Concurrent Use by Several Clients. Long Lifetime. Survival of Server Crashes. Direct Representation of Data in an Underlying Database. Bean-Managed Versus Container-Managed Persistence. Primary Keys. Entity Bean Life Cycle. Nonexistence. The Pooled State. The Ready State. Reentrant Instances. Example: Container-Managed Persistence. Requirements. Design. Implementation. Example: Bean-Managed Persistence. Requirements. Design. Implementation. Conclusion. 6. EJB Clients. An EJB Bean as a Client to Another Bean. The Home Interface. The Remote Interface. The EJB Client Bean. The Client. Serializing a Handle. The Client. Invoking the Client. Transactions in Clients. Authentication in Clients. Getting Metadata. A Servlet Client. HTML to Make a Call to the Servlet. Setting Up WebLogic Servlets. An Applet Client. The Applet Tag. CORBA Client Example. What to Look for in a CORBA-Compliant EJB. Implementation. HTTP Tunneling and SSL. Conclusion. 7. Deployment. The DeploymentDescriptor Class. The AccessControlEntry Class. Back to the DeploymentDescriptor Class (I). The ControlDescriptor Class. "Run-as" Modes. Back to the DeploymentDescriptor Class (II). The SessionDescriptor Class. The EntityDescriptor Class. Example Program. The Home Interface. The Remote Interface. The Bean Implementation Class. The Client. Using Roles at Runtime. The ReadDD Class. The Deployment Descriptor. Setting Up Access Control Lists. Container-Managed Finder Methods. Other Deployment Issues. Caching Issues. Persistent Storage. Properties. Other Administrative Issues. Conclusion. 8. Tips, Tricks, and Traps for Building Distributed and Other Systems. Expect Your Network Connections to Fail. Test Catastrophic Failure. Avoid Remote Method Invocations Where Possible. Treat Transactions and Database Connections as Precious Resources. Monitor the Granularity of Objects. Monitor the Granularity of Methods. Isolate Vendor-Specific Code. Avoid Making Entity Beans Reentrant. Observe Programming Restrictions on EJB Beans. Don't Implement the Bean's Remote Interface in Its Implementation Class. Use Relatively Small and Well-Defined Queries. Don't Keep Database Cursors Open. Minimize Transactions. Minimize Distributed Transactions. Avoid Indexing Your Tables. Remember That Memory Is Cheap. Build in Upward-Scalability. Wrap Entity Beans with Session Beans. Streamline Your Middleware Methods. Put Your Business Logic in the Middle Tier. Understand the Tradeoffs Between Isolation Level and Concurrency. Avoid Extensive Object Allocation and Deallocation. Prototype, Prototype, Prototype. Do Load Testing. Monitor the Size of Your User Base When Designing an Architecture. Separate Transaction-Processing Tables from Reporting Tables. If a Database Query Runs Slowly, Review Its Query Plan. Keep Joins Simple. Have a Database Administrator. Use Prepared Statements. Have Your Development Environment Mirror Your Production Environment. During Load Testing, Use a Sniffer to Monitor Network Traffic. Use the Facade Pattern for Interfacing with Legacy Systems. Use Patterns. Keep Network Topology in Mind. Design Security in from the Start. Work Closely with Network Personnel. Be Aware of Internal Politics. Be Aware of the Organizational Culture. Be Prepared for Requirements Changes. Build One Slice at a Time. Build the Difficult Components First. Talk to Your Users. Keep It Simple. Conduct Walkthroughs. Use Version Control. Use a Code Profiler. Establish Your Interfaces Early. Build Early and Often. Perform Regression Testing. Choose Appropriate Test Cases. Generate Test Cases While Implementing the Application. Automate Everything. Understand the Role of Testing. 9. A Nontrival Example. Requirements. Design. Relationships in EJB. Relationships in General. Detailed Design. Database Design. Detailed Design of the TimeTracker Class. Detailed Design of the Employee Class. Designing the TimeSheetHash Class. Designing the Client. Implementation. Building the Database. Setting Up the Access Control Lists. Implementing the Employee Bean. The Final Product. Employee Home Interface. Employee Remote Interface. Employee Implementation. Employee Primary Key Class. EmployeeInfo Class. MyIdentity Class. TimeSheetLine Class. TimeSheetHash Class. The Deployment Descriptor. Implementing the TimeTracker Bean. The Home Interface. The Remote Interface. Exceptions. Notes About the Implementation Class. The Deployment Descriptor. Implementing the Real Client. The Client Implementation Class. An Applet to Run the Client. Deployment Issues. Conclusion. 10. Implementations and Future Directions. EJB Implementations. WebLogic. EJBHome. Other EJB Vendors. Future Directions for EJB. Sun's EJB Roadmap. A Bit of Stargazing. Conclusion. Appendix A Source Code for Chapter 4. Home Interface for Bag Example. Remote Interface for the Bag Example. InventoryItem Class. ItemNotFoundException Exception. BagBean Implementation Class. BagBean Client. Bag2 Home Interface. Bag2 Remote Interface. Bag2 Bean Implementation. Bag2 Client. Appendix B Source Code for Chapter 5. Implementation of OrderBean (Container-Managed Persistence). Client for Container-Managed Entity Bean. Implementation Bean for Bean-Managed Persistence. Client for the Bean-Managed Persistence Example. Appendix C Source Code for Chapter 9. Implementation of the Employee Entity Bean. Deployment Descriptor for the Employee Entity Bean. Implementation Class for the TimeTracker Session Bean. Deployment Descriptor for the TimeTracker Session Bean. TimeTracker Client Implementation. Glossary. Index. CD-ROM Warranty. 0201604469T04062001


Best Sellers


Product Details
  • ISBN-13: 9780201604467
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Height: 234 mm
  • No of Pages: 352
  • Sub Title: Developing Component-Based Distributed Applications
  • Width: 188 mm
  • ISBN-10: 0201604469
  • Publisher Date: 27 Jul 1999
  • Binding: SA
  • Language: English
  • Spine Width: 16 mm
  • Weight: 620 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Enterprise JavaBeans™: Developing Component-Based Distributed Applications
Pearson Education (US) -
Enterprise JavaBeans™: Developing Component-Based Distributed Applications
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Enterprise JavaBeans™: Developing Component-Based Distributed Applications

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA