Processing XML documents with Oracle JDeveloper 11g. (Record no. 99103)
[ view plain ]
000 -LEADER | |
---|---|
fixed length control field | 07844nam a22005053i 4500 |
001 - CONTROL NUMBER | |
control field | EBC967850 |
003 - CONTROL NUMBER IDENTIFIER | |
control field | MiAaPQ |
005 - DATE AND TIME OF LATEST TRANSACTION | |
control field | 20181121163651.0 |
006 - FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION | |
fixed length control field | m o d | |
007 - PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION | |
fixed length control field | cr cnu|||||||| |
008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION | |
fixed length control field | 181113s2009 xx o ||||0 eng d |
020 ## - INTERNATIONAL STANDARD BOOK NUMBER | |
International Standard Book Number | 9781847196675 |
-- | (electronic bk.) |
020 ## - INTERNATIONAL STANDARD BOOK NUMBER | |
Cancelled/invalid ISBN | 9781847196668 |
035 ## - SYSTEM CONTROL NUMBER | |
System control number | (MiAaPQ)EBC967850 |
035 ## - SYSTEM CONTROL NUMBER | |
System control number | (Au-PeEL)EBL967850 |
035 ## - SYSTEM CONTROL NUMBER | |
System control number | (CaPaEBR)ebr10442959 |
035 ## - SYSTEM CONTROL NUMBER | |
System control number | (CaONFJC)MIL4745313 |
035 ## - SYSTEM CONTROL NUMBER | |
System control number | (OCoLC)618016296 |
040 ## - CATALOGING SOURCE | |
Original cataloging agency | MiAaPQ |
Language of cataloging | eng |
Description conventions | rda |
-- | pn |
Transcribing agency | MiAaPQ |
Modifying agency | MiAaPQ |
050 #4 - LIBRARY OF CONGRESS CALL NUMBER | |
Classification number | QA76.76.H94 -- V64 2009eb |
082 0# - DEWEY DECIMAL CLASSIFICATION NUMBER | |
Classification number | 005.133 |
-- | 006.7 |
100 1# - MAIN ENTRY--PERSONAL NAME | |
Personal name | Vohra, Deepak. |
245 10 - TITLE STATEMENT | |
Title | Processing XML documents with Oracle JDeveloper 11g. |
250 ## - EDITION STATEMENT | |
Edition statement | 1st ed. |
264 #1 - PUBLICATION, DISTRIBUTION, ETC. (IMPRINT) | |
Place of publication, distribution, etc | Olton : |
Name of publisher, distributor, etc | Packt Publishing Ltd, |
Date of publication, distribution, etc | 2009. |
264 #4 - PUBLICATION, DISTRIBUTION, ETC. (IMPRINT) | |
Date of publication, distribution, etc | ©2009. |
300 ## - PHYSICAL DESCRIPTION | |
Extent | 1 online resource (396 pages) |
336 ## - CONTENT TYPE | |
Content type term | text |
Content type code | txt |
Source | rdacontent |
337 ## - MEDIA TYPE | |
Media type term | computer |
Media type code | c |
Source | rdamedia |
338 ## - CARRIER TYPE | |
Carrier type term | online resource |
Carrier type code | cr |
Source | rdacarrier |
505 0# - FORMATTED CONTENTS NOTE | |
Formatted contents note | Intro -- Processing XML documents with Oracle JDeveloper 11g -- Table of Contents -- Processing XML documents with Oracle JDeveloper 11g -- Credits -- About the Author -- About the Reviewers -- Preface -- What this book covers -- What you need for this book -- Who is this book for? -- Conventions -- Reader feedback -- Customer support -- Downloading the example code for the book -- Errata -- Piracy -- Questions -- Copyright credit -- 1. Creating and Parsing an XML Document -- Setting the environment -- Generating an XML document -- Creating the factory -- Creating the DOM document object -- Creating the root element -- Constructing the DOM document -- Outputting the DOM document -- Running the Java application -- Parsing an XML document with the DOM API -- Creating the factory -- Creating a DOM document object -- Outputting the XML document components' values -- Running the Java application -- Parsing an XML document with the SAX API -- Creating the factory -- Parsing the XML document -- Running the Java application -- Summary -- 2. Creating an XML Schema -- An overview of XML Schema -- Root element -- Element component -- SimpleType component -- ComplexType component -- Setting the environment -- Creating an XML schema -- Registering an XML schema -- Creating an XML document from the XML schema -- Summary -- 3. XML Schema Validation -- JDeveloper built-in schema validation -- Schema validation in XDK 11g -- Setting the environment -- Schema validation with XSDValidator -- Creating a schema validator -- Setting the error handler -- Validating the XML document -- Running the Java application -- Schema validation with a SAX parser -- Creating a SAX parser -- Setting the error handler -- Validating the XML document -- Running the Java application -- Schema validation with a DOM parser -- Creating a DOM parser -- Setting the error handler. |
505 8# - FORMATTED CONTENTS NOTE | |
Formatted contents note | Parsing the XML document -- Running the Java application -- Summary -- 4. XPath -- What is XPath? -- XPath support in Oracle XDK 11g -- Setting the environment -- XPath search -- Selecting nodes with absolute location paths -- Selecting nodes with relative location paths -- Selecting namespace nodes -- Selecting nodes with XPath API -- Creating the DOM parser -- Method selectSingleNode(String) -- Method selectNodes(String) -- Method selectSingleNode(String,NSResolver) -- Method selectNodes(String,NSResolver) -- Running the Java application -- Summary -- 5. Transforming XML with XSLT -- What we will cover in this chapter -- Setting the environment for XSLT transformation -- Transforming an XML document -- Parsing the XML document -- Creating the TransformerFactory -- Creating the Transformer -- Running the application -- XSLT extension functions -- Setting the environment for XSLT extension functions -- Creating the stylesheet containing the extension functions -- Instantiating Java classes -- Parsing the XML -- Storing Java results in XSLT-non-static method -- Storing Java results in XSLT-static method -- Modifying attributes -- Modifying element text -- Stylesheet with extension functions -- Processing the extension functions -- Summary -- 6. JSTL XML Tag Library -- Overview of the JSTL XML tag library -- Setting the environment -- Parsing with the JSTL XML tag library -- Transforming with the JSTL XML tag library -- Summary -- 7. Loading and Saving XML with DOM 3.0 LS -- Background -- The API -- Setting the environment -- Loading an XML document -- Creating the LSParser -- Adding event handling -- Parsing the XML document -- Saving an XML document -- Creating a document object -- Creating an LSSerializer -- Outputting the document object -- Filtering an XML document -- Filtering the input -- Filtering the output -- Summary. |
505 8# - FORMATTED CONTENTS NOTE | |
Formatted contents note | 8. Validating an XML Document with DOM 3 Validation -- Setting the environment -- Constructing and validating an XML document -- Parsing XML document and setting XML schema -- Global elements -- The catalog element -- Adding journal attributes -- Adding article attributes -- Adding article subelements -- Adding a journal element -- Validating a document -- Running the DOM 3 Validation application -- XDK 11g limitations -- Summary -- 9. JAXB 2.0 -- Setting the environment -- Compiling an XML schema -- Marshalling an XML document -- Unmarshalling an XML document -- Mapping Java to XML using annotations -- Summary -- 10. Comparing XML Documents -- Setting the environment -- Comparing XML documents with the XMLDiff class -- Parsing the XML files -- Comparing the XML files -- Generating an XSLT stylesheet -- Running the Java application -- Summary -- 11. Converting XML to PDF -- Setting the environment -- Converting XML to XSL-FO -- Parsing the XML document -- Generating the XSL-FO document -- Converting XSL-FO to PDF -- Creating the FOP driver -- Generating the PDF document -- Running the Java application -- Summary -- 12. Converting XML to MS Excel -- Setting the environment -- Converting an XML document to an Excel spreadsheet -- Creating a spreadsheet -- Parsing the XML document -- Adding XML data to the spreadsheet -- Outputting the spreadsheet -- Running the Java application -- Converting an Excel spreadsheet to an XML document -- Creating the XML document -- Parsing the Excel spreadsheet -- Constructing the XML DOM tree -- Running the Java application -- Summary -- 13. Storing XML in Oracle Berkeley DB XML -- Installing Oracle Berkeley DB XML -- Using the command shell -- Adding XML documents -- Querying XML documents with XQuery -- Modifying XML documents -- Replacing/deleting XML document nodes -- Using the Berkeley DB XML API in JDeveloper. |
505 8# - FORMATTED CONTENTS NOTE | |
Formatted contents note | Setting the environment -- Creating a container -- Adding XML documents -- Querying XML documents with XQuery -- Modifying XML documents -- Updating/renaming in XML documents -- Summary -- 14. Oracle XML Publisher -- Setting the environment -- FO Processor Engine -- XSL-FO Utility -- PDF Document Merger -- Data Engine -- Summary -- Index. |
520 ## - SUMMARY, ETC. | |
Summary, etc | Create, validate, and transform XML documents with Oracle's JDeveloper IDE using this book and eBook. |
588 ## - SOURCE OF DESCRIPTION NOTE | |
Source of description note | Description based on publisher supplied metadata and other sources. |
590 ## - LOCAL NOTE (RLIN) | |
Local note | Electronic reproduction. Ann Arbor, Michigan : ProQuest Ebook Central, 2018. Available via World Wide Web. Access may be limited to ProQuest Ebook Central affiliated libraries. |
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM | |
Topical term or geographic name as entry element | Internet programming. |
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM | |
Topical term or geographic name as entry element | Oracle JDeveloper. |
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM | |
Topical term or geographic name as entry element | Web sites -- Design. |
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM | |
Topical term or geographic name as entry element | XML (Document markup language). |
655 #4 - INDEX TERM--GENRE/FORM | |
Genre/form data or focus term | Electronic books. |
776 08 - ADDITIONAL PHYSICAL FORM ENTRY | |
Display text | Print version: |
Main entry heading | Vohra, Deepak |
Title | Processing XML documents with Oracle JDeveloper 11g |
Place, publisher, and date of publication | Olton : Packt Publishing Ltd,c2009 |
International Standard Book Number | 9781847196668 |
797 2# - LOCAL ADDED ENTRY--CORPORATE NAME (RLIN) | |
Corporate name or jurisdiction name as entry element | ProQuest (Firm) |
856 40 - ELECTRONIC LOCATION AND ACCESS | |
Uniform Resource Identifier | <a href="https://ebookcentral.proquest.com/lib/buse-ebooks/detail.action?docID=967850">https://ebookcentral.proquest.com/lib/buse-ebooks/detail.action?docID=967850</a> |
Public note | Click to View |
No items available.