Schema&DTO
posted 21 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Hi,
What is difference between Schema & DTO?
How do you parse/validate the XML document?
Thanks
What is difference between Schema & DTO?
How do you parse/validate the XML document?
Thanks
posted 21 years ago
I assume you meant DTD? In that case, the difference is that the DTD is more limited in terms of what you can describe compared to XML Schema.
Take a look at HowToValidateXmlAgainstSchema.
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Originally posted by Lakshmi siri:
What is difference between Schema & DTO?
I assume you meant DTD? In that case, the difference is that the DTD is more limited in terms of what you can describe compared to XML Schema.
Originally posted by Lakshmi siri:
How do you parse/validate the XML document?
Take a look at HowToValidateXmlAgainstSchema.
Author of Test Driven (2007) and Effective Unit Testing (2013) [Blog] [HowToAskQuestionsOnJavaRanch]
posted 21 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Parsers are essentially tools created for a specific purpose. For example, a DOM parser implements the DOM API and creates DOM in memory whereas SAX parser implements SAX API. Popular Example would be "Xerces" by Apache
Validating tools are necessary to enforce certain rules. E.g. Validating tools would check XML documents for well formedness and certain other basic criteria. These tools can also validate documents against schemas and DTDs.
Hope that helps!
Vidya
Validating tools are necessary to enforce certain rules. E.g. Validating tools would check XML documents for well formedness and certain other basic criteria. These tools can also validate documents against schemas and DTDs.
Hope that helps!
Vidya
posted 21 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
The biggest differences are DTDs allow the use of Entities, Schemas allow the use Namespaces. Schemas also allow you to create more defined data types to validate against. DTDs only allow the use of default data types, for validation. Schemas can inherit from other schemas. Schemas are also well-formed XML so you can parse them with SAX or DOM.
posted 21 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Just to add on to what the ranchers have said
* Since SCHEMA is based on XML it does not require a seprate parser for reading it ..For DTD's on the other hand you need a seprate DTD parer to read the DTD's ..(I gues thats what Jay meant by saying taht u can parse schemas with SAX or DOM
)
* Since SCHEMA is based on XML it does not require a seprate parser for reading it ..For DTD's on the other hand you need a seprate DTD parer to read the DTD's ..(I gues thats what Jay meant by saying taht u can parse schemas with SAX or DOM
)
| I do some of my very best work in water. Like this tiny ad: Paul Wheaton's 16th Kickstarter: Gardening playing cards for gardeners and homesteaders https://coderanch.com/t/889615/Paul-Wheaton-Kickstarter-Gardening-playing |










