Posts

Showing posts with the label XSD

Validate XML using XSD

Validate XML against XSD XSD(XML Schema Definition) contains set of grammatical rules, Which can be used to validate a given xml. Lets consider a sample XML file. <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="Projects.xsl"?> <catalog>     <model name="s3">         <network>GSM</network>         <launch>2012-10-12</launch>         <os>Android</os>         <version>4.1</version>         <cpu>dual-core</cpu>         <weight>111.5</weight>         <sim>mini-sim</sim>     </model>     <model name="s5">         <network>GSM</network> ...