XML and Java?
Home > Computing and Information Technology > Computer programming / software engineering > Web programming > XML and Java?: Developing Web Applications
XML and Java?: Developing Web Applications

XML and Java?: Developing Web Applications


     0     
5
4
3
2
1



Out of Stock


Notify me when this book is in stock
X
About the Book

The first edition of XML and Java earned rave reviews for its exceptionally practical, thorough, and example-rich coverage of XML development with Java. Now, the authors -- all leading-edge XML experts from IBM -- have updated the book to reflect the latest XML tools, technologies, and best practices. From start to finish, they provide expert insight and "jumpstart" examples that are immediately applicable to real-world problems. Coverage includes: parsing and generating XML documents; working with DOM/DOM2 and SAX/SAX2; schemas and validation; document manipulation with XPath and XSLT; and utilizing advanced XML parsers. The authors introduce XML programming with servlets and JSP; XML database integration; XML messaging and Web services; data binding and security solutions; and more.

Table of Contents:
Foreword. Preface. 1. Web Applications, XML, and Java. Introduction. Structure of This Book. Web Applications. From Static Contents to Dynamic Contents. From B2C to B2B-From Web for Eyeballs to Web for Programs. Interoperability Is Everything. From Distributed Applications to Decentralized Applications. The World of Web Services-More Dynamic Integration. Other Application Areas of XML. Metadata. Configuration Files. Rich Documents. Some XML Basics. Standardization Process. Validity and Well-Formedness. Namespaces. Summary. 2. Parsing XML Documents. Introduction. XML Processors. Working with Xerces. Basics of Parsing Documents. Parsing Well-Formed Documents. Parsing Valid Documents. Design Point: Well-Formed versus Valid. More about Parsing XML Documents. Parsing XML Documents with Namespaces. Parsing XML Documents with XML Schema. Design Point: The DTD versus XML Schema. Parsing XML Documents with JAXP. Design Point: JAXP and XercesNative API. Programming Interfaces for Document Structure. DOM: Tree-Based API. SAX: Event-Driven API. Design Point: DOM versus SAX. Summary. 3. Generating and Serializing XML Documents. Introduction. Creating a DOM Tree from Scratch. Creating a Document Object. Creating and Appending Child Nodes. Handling Namespaces. Validating a Generated DOM Tree. Serializing a DOM Tree. Using the XMLSerializer Package. Discussions about Serialization. Handling Whitespace. Internationalization. XML Declarations. Charset Parameter. Summary. 4. Working with DOM. Introduction. DOM Basics. Accessing and Updating the Status of a Node. Accessing Structural Information. Inserting, Detaching, and Replacing a Child Node. DOM Tree and Attributes. Advanced DOM. How to Simplify Your Code by Removing Entity References. Tree Traversal. DOM Collection Is Live. Moving Nodes over Documents. Namespaces in DOM. Summary. 5. Working with SAX. Introduction. Basic Tips for Using SAX. ContentHandler. Using and Writing SAX Filters. New Features of SAX2. DOM versus SAX. Performance: Memory and Speed. Conversion from DOM to SAX and Vice Versa. Summary. 6. Parser Tricks. Introduction. General Tricks. Namespace Validation with DTDs. Entity Resolution. Working with Sockets. Basic Xerces Tricks. Extended Parser Options. Custom DOM Implementation. Advanced Xerces Tricks. The Xerces Native Interface. Components and the Component Manager. Parser Configurations. Building Parser Configurations from Xerces2 Components. Summary. 7. XPath and XSLT. XPath. What Is XPath? Syntax and Semantics of XPath. XPath and Namespaces. XPath Programming in Java. XSLT. What Is XSLT? Syntax and Semantics of XSLT. XSLT Programming in Java. Pros and Cons of XSLT, XPath, DOM, and SAX. Execution Efficiency. Development Efficiency. Summary. 8. Bridging Application Data Structure and XML. Introduction. Mapping to Almost Isomorphic Tree Structures. Structure Adjustment by XSLT. Mapping to Tables. Mapping to Hash Tables. Mapping to Graph Structures. Summary. 9. Working with Schemas: Datatypes and Namespaces. Introduction. W3C XML Schema. Mimicking DTDs. Datatypes. Using Namespaces. Advanced Features. Further Information. RELAX NG. Mimicking DTDs. Using Datatypes and Facets of W3C XML Schema. Using Namespaces. Co-occurrence Constraints. Further Information. Summary. 10. XML Application Server. The Background of the XML Application Server. The Need for a Common Framework for Building Web Applications. What Is an XML Application Server? Servlet. Returning XML Documents from a Servlet. Receiving XML Documents. Considerations for State Management. JavaServer Pages. What Is JSP? An Informational JSP Returning XML Documents. The Combination of Servlet and JSP. Apache Cocoon. Having Well-Grounded Goals. Integrating and Multichanneling XML Documents Using Cocoon. Summary. 11. XML and Databases. Introduction. Storing and Searching for XML Documents. Mapping from an XML Document to Tables. Designing Relational Tables. Defining the Primary Keys in a Table. Designing a Table for MultiplyOccurring Elements. Datatype Mapping. Semantics of Data. Two Approaches. Mapping from Tables to an XML Document. Nested and Flat Representation. Element versus Attribute Representation. Program Examples. Mapping Method. XPath Method. A Servlet for Accessing a Database. Working with EJB. The Importance of EJB. A Simple EJB. Summary. 12. XML Messaging. Introduction. Distributed Computing and Interoperability. Overview of XML Messaging. New-Generation Distributed Programming. Simple Object Access Protocol. The Birth of SOAP. Travel Reservation Example. Basic Concepts of SOAP. To Use SOAP or Not? SOAP Engines. Prototyping a SOAP Engine. SOAP Engine Products. Java API for SOAP. Summary. 13. Web Services. Emergence of Web Services. Publishing, Finding, and Integration. What Are Web Services? Status of Web Services. Web Services Description. Overview of WSDL. WSDL as an Interface Definition Language. WSDL Tools. Programming with WSDL4J. JAX-RPC. Service Registration and Discovery. Overview of UDDI. Programming with UDDI4J. Registering WSDL with the UDDI Registry. Application to Dynamic e-Business. Application Scenario. Discovering Businesses on the Fly. Dynamic Binding. Enterprise Web Services. Summary. 14. Security. Introduction. IT System Security in General. Security Requirements on B2B Systems. Security of Communication. Access Control. SSL/TLS. Server Authentication. Client Authentication. Selecting a Public-Key Infrastructure. Configuring a Server and a Client for SSL/TLS. SSL/TLS Programming in Java. Firewall Considerations. Summary of Using SSL/TLS. XML Digital Signature. XML Canonicalization. XML Digital Signature Sample. Signing XML Documents with XML Security Suite for Java. Verifying XML Digital Signature with XML Security Suite for Java. Access Control in Java. Declarative Access Control and Programmatic Access Control. Declarative Access Control. Programmatic Access Control. Security Architecture of EJB. Security in Web Services. Using SSL/TLS and XML Digital Signature in SOAP. Access Control in SOAP Applications. Partial Encryption of XML. Security Service as Web Services. Summary. 15. Data Binding. Introduction. Generating Java Classes from a Schema. JAXB. Relaxer. Pros and Cons of Generating a Java Program from a Schema Generating an XML Document from Java Classes. Castor XML. Pros and Cons of Generating XML Documents from Java Classes. SOAP Encoding. Summary. 16. Principles of Schema Languages. Introduction. Schemas as Syntactic Constraints. Checking Unexpected Documents. What Happens If We Neglect Schemas? Desiderata for Schema Languages. Schemas as Data Models. Documents as Character Strings. Documents as Trees. Documents as Data Compliant with Schemas. Documents as Information for Web Applications. Desiderata for Schema Languages. Interworking with Other Software. Interworking with Programming Languages. Relational Databases. Desiderata for Schema Languages. General-Purpose Schema Languages. DTD. W3C XML Schema. RELAX NG. Schematron. Special-Purpose Schema Languages. RDF Schema. RELAX Namespace. Summary. Appendix A. Appendix B. Useful Links and Books. XML. General. Software. Java. Platform and SDK. Web Applications. Database. Messaging. Security. Web Services. General. Software. Standards. Books. Java. XML/SGML. Web Services. Other Topics. Appendix C. XML-Related Standardization Activities. XML Core. Namespace. XML Fragment Interchange. XML Inclusions. XML Infoset. XML Tools. XPath. XML Pointer, XML Base, and XML Linking. Extensible Stylesheet Language. Schema Languages. XML Schema. RELAX NG. Schematron. APIs. Document Object Model. Simple API for XML. XML Security. XML Signature. XML Encryption. Platform for Privacy Preferences Project. Web Services. XML Protocol (SOAP). Web Services Description Language. Universal Description, Discovery, and Integration. Java Specification Requests. Other Topics. Web Distributed Authoring and Versioning. Wireless Markup Language. XHTML. XML Query. Appendix D. JDBC Primer. Introduction. JDBC Package. Loading a JDBC Driver. Connecting to a Database. Submitting a Query. Using a Connection Pool. Index. 0201770040T05092002

About the Author :
Hiroshi Maruyama, Senior Technical Staff Member at IBM’s Tokyo Research Laboratory, led a team specializing in the development of advanced XML technologies. Kent Tamura is the creator of IBM XML Parser for Java (since renamed Xerces and made open source). Naohiko Uramoto is a visiting Associate Professor at the National Institute of Informatics who specializes in advanced Web services development. Makoto Murata is an affiliated researcher at the International University of Japan and a member of the original working group that created XML 1.0. Andy Clark is a developer of the Apache Xerces XML parser in Java and the primary designer and lead technical expert for the new Xerces2 parser. Yuichi Nakamura is a contributor to the Apache SOAP and Axis projects. Ryo Neyama is a contributor to the Apache SOAP and Axis projects. Kazuya Kosaka is the manager of the Internet Technology Group and, most recently, the developer of XML-based security technologies. Satoshi Hada is currently working on XML Access Control and SOAP Security Extensions. 0201770040AB05082002


Best Sellers


Product Details
  • ISBN-13: 9780201770049
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Height: 189 mm
  • No of Pages: 688
  • Sub Title: Developing Web Applications
  • Width: 235 mm
  • ISBN-10: 0201770040
  • Publisher Date: 22 May 2002
  • Binding: SA
  • Language: English
  • Spine Width: 30 mm
  • Weight: 1161 gr


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
XML and Java?: Developing Web Applications
Pearson Education (US) -
XML and Java?: Developing Web 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.

XML and Java?: Developing Web 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!