SOA Using Java Web Services
Home > Computing and Information Technology > Computer programming / software engineering > Web programming > SOA Using Java Web Services
SOA Using Java Web Services

SOA Using Java Web Services

|
     0     
5
4
3
2
1




Out of Stock


Notify me when this book is in stock
About the Book

Expert Solutions and State-of-the-Art Code ExamplesSOA Using Java™ Web Services is a hands-on guide to implementing Web services and Service Oriented Architecture (SOA) with today’s Java EE 5 and Java SE 6 platforms. Author Mark Hansen presents in explicit detail the information that enterprise developers and architects need to succeed, from best-practice design techniques to state-of-the-art code samples. Hansen covers creating, deploying, and invoking Web services that can be composed into loosely coupled SOA applications. He begins by reviewing the “big picture,” including the challenges of Java-based SOA development and the limitations of traditional approaches. Next, he systematically introduces the latest Java Web Services (JWS) APIs and walks through creating Web services that integrate into a comprehensive SOA solution. Finally, he shows how application frameworks based on JWS can streamline the entire SOA development process and introduces one such framework: SOA-J. The book Introduces practical techniques for managing the complexity of Web services and SOA, including best-practice design examples Offers hard-won insights into building effective SOA applications with Java Web Services Illuminates recent major JWS improvements–including two full chapters on JAX-WS 2.0 Thoroughly explains SOA integration using WSDL, SOAP, Java/XML mapping, and JAXB 2.0 data binding Walks step by step through packaging and deploying Web services components on Java EE 5 with JSR-181 (WS-Metadata 2.0) and JSR-109 Includes specific code solutions for many development issues, from publishing REST endpoints to consuming SOAP services with WSDL Presents a complete case study using the JWS APIs, together with an Ajax front end, to build a SOA application integrating Amazon, Yahoo Shopping, and eBay Contains hundreds of code samples–all tested with the GlassFish Java EE 5 reference implementation–that are downloadable from the companion Web site, http://soabook.com. Foreword Preface  Acknowledgments About the Author Chapter 1: Service-Oriented Architecture with Java Web Services Chapter 2: An Overview of Java Web Services Chapter 3: Basic SOA Using REST Chapter 4: The Role of WSDL, SOAP, and Java/XML Mapping in SOA Chapter 5: The JAXB 2.0 Data Binding Chapter 6: JAX-WS–Client-Side Development Chapter 7: JAX-WS 2.0–Server-Side Development Chapter 8: Packaging and Deployment of SOA Components (JSR-181 and JSR-109) Chapter 9: SOAShopper: Integrating eBay, Amazon, and Yahoo! Shopping Chapter 10: Ajax and Java Web Services Chapter 11: WSDL-Centric Java Web Services with SOA-J Appendix A: Java, XML, and Web Services Standards Used in This Book Appendix B: Software Configuration Guide Appendix C: Namespace Prefixes Glossary References Index

Table of Contents:
Foreword xvPreface xixAcknowledgments xxviiAbout the Author xxixChapter 1: Service-Oriented Architecture with Java Web Services 1 1.1 Am I Stupid, or Is Java Web Services Really Hard? 2 1.2 Web Services Platform Architecture 8 1.3 Java Web Services Standards: Chapters 2 through 8 18 1.4 The SOAShopper Case Study: Chapters 9 and 10 21 1.5 SOA-J and WSDL-Centric Development: Chapter 11 22 Chapter 2: An Overview of Java Web Services 252.1 The Role of JWS in SOA Application Development 26 2.2 A Quick Overview of the Ease-of-Use Features 36 2.3 JAX-WS 2.0 43 2.4 JAXB 2.0 54 2.5 WS-Metadata 2.0 73 2.6 WSEE 1.2 80 2.7 Impact of Other Java EE 5 Annotation Capabilities 82 2.8 Conclusions 84 Chapter 3: Basic SOA Using REST 853.1 Why REST? 85 3.2 XML Documents and Schema for EIS Records 88 3.3 REST Clients with and without JWS 97 3.4 SOA-Style Integration Using XSLT and JAXP for Data Transformation 114 3.5 RESTful Services with and without JWS 125 3.6 Conclusions 136 Chapter 4: The Role of WSDL, SOAP, and Java/XML Mapping in SOA 1374.1 The Role of WSDL in SOA 138 4.2 The Role of SOAP in SOA 145 4.3 Dispatching: How JAX-WS 2.0 Maps WSDL/SOAP to Java Invocation 151 4.4 Working around Some JAX-WS 2.0 Dispatching Limitations 166 4.5 SOA Often Requires “Start from WSDL and Java” 175 4.6 Working around JAXB 2.0 Java/XML Mapping Limitations 182 4.7 Conclusions 194 Chapter 5: The JAXB 2.0 Data Binding 1955.1 Binding versus Mapping 195 5.2 An Overview of the Standard JAXB 2.0 Java/XML Binding 199 5.3 Implementing Type Mappings with JAXB 2.0 209 5.4 A Recursive Framework for Type Mappings 217 5.5 Implementing Type Mappings with JAXB 2.0 Annotations 224 5.6 Implementing Type Mappings with the JAXB 2.0 Binding Language 235 5.7 Implementing Type Mappings with the JAXB 2.0 XmlAdapter Class 245 5.8 JAXB 2.0 for Data Transformation (Instead of XSLT) 256 5.9 Conclusions 262 Chapter 6: JAX-WS—Client-Side Development 2656.1 JAX-WS Proxies 265 6.2 XML Messaging 285 6.3 Invocation with Custom Java/XML Mappings: An Example Using Castor Instead of JAXB 292 6.4 Asynchronous Invocation 297 6.5 SOAP Message Handlers 304 6.6 Conclusions 310 Chapter 7: JAX-WS 2.0—Server-Side Development 3117.1 JAX-WS Server-Side Architecture 311 7.2 Start from WSDL Using a Service Endpoint Interface (SEI) 316 7.3 Providers and XML Processing without JAXB 320 7.4 Deploying Web Services Using Custom Java/XML Mappings 325 7.5 Validation and Fault Processing 329 7.6 Server-Side Handlers 343 7.7 Java SE Deployment with javax.xml.ws.Endpoint 347 7.8 Conclusions 355 Chapter 8: Packaging and Deployment of SOA Components (JSR-181 and JSR-109) 3578.1 Web Services Packaging and Deployment Overview 359 8.2 Deployment without Deployment Descriptors 376 8.3 Using Deployment Descriptors 384 8.4 Automatic Deployment with GlassFish 402 8.5 Web Services Security 405 8.6 OASIS XML Catalogs 1.1 407 8.7 Wrapping Up 409 Chapter 9: SOAShopper: Integrating eBay, Amazon, and Yahoo! Shopping 4119.1 Overview of SOAShopper 411 9.2 SOAShopper SOAP Services 417 9.3 An SOAShopper RESTful Service and the Standard XML Schema 423 9.4 Service Implementation 431 9.5 eBay and Amazon Services (SOAP) 434 9.6 Yahoo! Services (REST) 444 9.7 SOAShopper API and the Integration Layer 450 9.8 Conclusions about Implementing Real-World SOA Applications with Java EE 460 Chapter 10: Ajax and Java Web Services 46310.1 Quick Overview of Ajax 464 10.2 Ajax Together with Java EE Web Services 468 10.3 Sample Code: An Ajax Front-End for SOAShopper 470 10.4 Conclusions about Ajax and Java EE 479 Chapter 11: WSDL-Centric Java Web Services with SOA-J 48111.1 SOA-J Architecture 483 11.2 WSDL-Centric Development with SOA-J 486 11.3 Invocation Subsystem 493 11.4 Serialization Subsystem 503 11.5 Deployment Subsystem 514 11.6 Conclusions 519 Appendix A: Java, XML, and Web Services Standards Used in This Book 523Appendix B: Software Configuration Guide 525B.1 Install Java EE 5 SDK 526 B.2 Install Apache Ant 1.7.x 527 B.3 Install Apache Maven 2.0.x 527 B.4 Install the Book Example Code 528 B.5 Configure Maven 528 B.6 Configure Ant 530 B.7 Starting and Stopping the GlassFish Server 532 B.8 Test the Installation by Running an Example 532 B.9 Build and Deploy the SOAShopper Case Study (Chapters 9 and 10) 534 B.10 Build and Deploy the SOA-J Application Framework (Chapter 11) 535 B.11 Install Java SE 6 (Optional) 535 Appendix C: Namespace Prefixes 537Glossary 539References 555Index 561


Best Sellers


Product Details
  • ISBN-13: 9780130449689
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Prentice Hall
  • Height: 235 mm
  • No of Pages: 608
  • Weight: 868 gr
  • ISBN-10: 0130449687
  • Publisher Date: 17 May 2007
  • Binding: Paperback
  • Language: English
  • Spine Width: 30 mm
  • Width: 177 mm


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
SOA Using Java Web Services
Pearson Education (US) -
SOA Using Java Web Services
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.

SOA Using Java Web Services

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!