Advanced Java and Web Technologies for JNTUK
Blog providing beginner tutorials on different web technologies like HTML, CSS, Javascript, PHP, MYSQL, XML, Java Beans, Servlets, JSP and AJAX
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

Checking Validness of an XML Document based on Schema Online

Suryateja Pericherla Categories: XML. No Comments on Checking Validness of an XML Document based on Schema Online

In this article we will learn checking validness of an XML document based on schema online. Validness refers to high-level syntax rules.   Open a browser and visit http://xmlvalidator.new-studio.org/   Select Schema option, select the XML file and XML Schema file using the Browse buttons and click on Check button as shown below:     […]

Read the rest of this entry »

Checking Validness of an XML Document based on DTD Online

Suryateja Pericherla Categories: XML. No Comments on Checking Validness of an XML Document based on DTD Online

In this article we will learn checking validness of an XML document based on DTD online. Validness refers to high-level syntax rules.   Open a browser and visit http://xmlvalidator.new-studio.org/   Select DTD option and select the XML file using the Browse button and click on Check button as shown below:     If the XML […]

Read the rest of this entry »

Checking Well-Formedness of an XML Document Online

Suryateja Pericherla Categories: XML. 1 Comment on Checking Well-Formedness of an XML Document Online

In this article we will learn checking well-formedness of an XML document online. Well-formedness refers to low-level syntax rules.   Open a browser and visit http://www.validome.org/xml/   Copy the XML code and paste in the Source code box provided. Check the box displaying Well-Formedness only and click the Validate button as shown in the below […]

Read the rest of this entry »

XML Processors

Suryateja Pericherla Categories: XML. No Comments on XML Processors

This article explains XML Processors and two of the popular XML document parsing APIs namely SAX and DOM. Java example programs are also provided.   Introduction   XML processors are needed for the following reasons: The processor must check the basic syntax of the document for well-formedness. The processor must replace all occurrences of an […]

Read the rest of this entry »

XML Schema

Suryateja Pericherla Categories: XML. No Comments on XML Schema

This article explains XML Schema which is an alternative for DTDs in specifying the high level syntax for an XML document. We will learn creating and using XML Schema along with XML documents.   Introduction   Like DTD, a XML Schema also specifies the structure of the tags and attributes in a XML document. Why […]

Read the rest of this entry »

XML Document Structure

Suryateja Pericherla Categories: XML. 1 Comment on XML Document Structure

This article explains about XML Document Structure. We will learn what does an XML document contain and some information about entities in XML documents.   An XML document often uses two supplementary files. One file specifies the syntactic rules and the other file specifies the presentation details about how the content of the document is […]

Read the rest of this entry »

XML Syntax

Suryateja Pericherla Categories: XML. No Comments on XML Syntax

This article explains about XML syntax. You will learn about elements, tags and attributes which are the fundamental parts in a XML document.   The syntax of XML can be thought of at two distinct levels. First, there is the general low-level syntax that specifies rules to be followed by all XML documents. Second, there […]

Read the rest of this entry »