What is XSD and how to use it in ASP.NET Web application.
I have stored procedures (Some of those are returning xml format values). Can i replace those with XSD?
Please suggest some good links to follow. I am pretty new to XSD.
I am sorry if this question is already answered.
Thanks in advance
Santhosh
XSD: XML Schema Definition, used to validate XML. Usually for incoming data, before accepting it, we pass it through our XSD validation with Schema file.
you can see Schema file as Set of rules, that suggests how the corresponding XML should be.
With XSD you can not only validate the structure/hierarchy of the XML tags but also,
string etc]
contains any-other value than these 12 values .. ]
.. and many more …
There are some restrictions: as like,