<< < 1 2 3 4 5 6 7 > >>   ∑:149  Sort:Rank

XML DOM Node Tree Example
This section provides a tutorial example on how to print out the DOM Node tree by DOMBrowser.java with a given XML file.
2022-10-01, 216🔥, 0💬

Validating an XML Document against the Specified DTD Document Type
This chapter provides tutorial notes and example codes on XML validation against DTD document types. Topics include using DOM API and SAX to write Java programs to validate an XML document against the specified DTD document type.
2022-10-01, 216🔥, 0💬

What Is XSL (Extensible Stylesheet Language)
This section describes XSL (Extensible Stylesheet Language), which consists of 3 languages: XSLT (XSL Transformation), XPath (XML Path), and XSL-FO (XSL Formatting Objects) for defining XML document transformation and presentation.
2022-10-01, 216🔥, 0💬

XML Element Transformation Chains
This section provides a tutorial example on how an XSL processor uses a transformation chain to perform a transformation inside another transformation.
2022-10-01, 214🔥, 0💬

Control and Generate XML Element in the Result
This chapter provides tutorial notes and example codes on output XML elements. Topics include controlling output format with the 'output' element; generating XML elements with literal XML elements, 'element' elements and/or 'copy' elements; copying everything from source to result.
2022-10-01, 214🔥, 0💬

"output" - The Output Format Control Element
This section describes the 'output' element, which is an optional element inside the 'stylesheet' element in an XSLT stylesheet file to control the format of the transformation output.
2022-10-01, 212🔥, 0💬

What Is XSLT (XSL Transformations)
This section describes XSLT (XSL Transformations) - a language that allows you to write a stylesheet to describe rules for transformation a source XML document into a result text document. 'stylesheet', 'template' and 'apply-templates' are 3 basic XSLT statements.
2022-10-01, 211🔥, 0💬

XML-to-JSON Conversion Tool at onlinexmltools.com
This section provides a tutorial example on how to use an online XML-to-JSON conversion tool at onlinexmltools.com. The output JSON document is good, only if input XML document contains well structured data.
2022-10-01, 208🔥, 0💬

XSD Schema Validator on XML DOM Object - Errors
This section provides some errors from the XSD schema validation process on invalid XML files represented in Document objects using the JAXP API.
2022-10-01, 199🔥, 0💬

What Is the Python "xml" Package
This section describes the 'xml', the default package provided in the Python language to support XML processing.
2022-10-01, 199🔥, 0💬

JSON-to-XML Conversion Tool at onlinexmltools.com
This section provides a tutorial example on how to use an online JSON-to-XML conversion tool at onlinexmltools.com. The output XML document is good, only if input JSON document contains well structured data.
2022-10-01, 196🔥, 0💬

SAX Parsing Pattern Example
This section provides a tutorial example on how to print out the SAX parsing pattern by SAXBrowser.java with a given XML file.
2022-10-01, 195🔥, 0💬

DOCTYPE - Document Type Declaration Statement
This section describes syntax formats of the DOCTYPE statement, which is used to declare that this XML document has been linked to DTD document type with the specified root element name.
2022-10-01, 194🔥, 0💬

DOM Specifications and DOM Node Interface
This section describes the DOM specification. The Core module in DOM Level 1, 2 and 3 specifications is for XML files. A tree of nodes is used to represent an XML file. Each node represents a unit of information in the XML file. All nodes are sharing the Node interface.
2022-10-01, 193🔥, 0💬

XSD Schema Validator on XML SAX Object
This section provides a tutorial example on how to load a XSD schema, create an XSD validator and validate an XML SAXSource object.
2022-10-01, 193🔥, 0💬

"stylesheet" - The Stylesheet Declaration Element
This section describes the 'stylesheet' element, which is the root element of any XSLT stylesheet document. It serves as the stylesheet declaration statement.
2022-10-01, 193🔥, 0💬

Generating Transformation Output in XML Format
This section provides a tutorial example on how to generate transformation output in XML format. The first approach is to include output XML element as literal XML elements in the transformation template.
2022-10-01, 193🔥, 0💬

Using Apple Safari as an XML Syntax Checker
This section provides a tutorial example on how to use Apple Safari as an XML file syntax checker. If there are syntax errors in an XML file, Safari will stop displaying the XML file at the first error location.
2022-10-01, 192🔥, 0💬

ENTITY - Entity Declaration Statement
This section describes syntax formats of the ENTITY statement, which is used to declare an XML entity. The ENTITY statement specifies what is the name of the entity and what is the replacement value.
2022-10-01, 190🔥, 0💬

Simple Element Types with Built-in Data Types
This section describes simple element types using XML Schema built-in data types, which are organized in 5 groups: numeric, date and time, string, binary and Boolean.
2022-10-01, 190🔥, 0💬

Empty Element Types
This section describes the empty element type which can be used to define an XML element with no text content and at least one attribute.
2022-10-01, 188🔥, 0💬

"template" - The Template Declaration Element
This section describes the 'template' element, which declares a transformation template that can be used to generate output text when applied to any matching source elements.
2022-10-01, 186🔥, 0💬

Including Literal XML Elements in Templates
This section describes how to include literal XML elements in template as part template's content. A literal XML element is a non-XSLT element.
2022-10-01, 185🔥, 0💬

dictionary_dtd.xml - XML DTD Document Type Example
This section provides XML DTD document type example, dictionary_dtd.xml, which uses ELEMENT, ATTLIST, and ENTITY DTD statements to define a document type called 'dictionary'.
2022-10-01, 183🔥, 0💬

<< < 1 2 3 4 5 6 7 > >>   ∑:149  Sort:Rank