So what is the best way to deal with XML documents, XSD and all that stuff in C# 2.0? What classes to use etc. Like what are the best practices of parsing and making XML documents etc.
EDIT: .Net 3.5 suggestions are also welcome.
|
47
|
|
|
|
|
|
The primary means of reading and writing in C# 2.0 is done through the XmlDocument class. You can load most of your settings directly into the XmlDocument through the XmlReader it accepts. Loading XML Directly
Loading XML From a File
I find the easiest/fastest way to read an XML document is by using XPath. Reading an XML Document using XPath (Using XmlDocument which allows us to edit)
If you need to work with XSD documents to validate an XML document you can use this. Validating XML Documents against XSD Schemas
Validating XML against XSD at each Node (UPDATE 1)
Writing an XML Document (manually)
(UPDATE 1) In .NET 3.5, you use XDocument to perform similar tasks. The difference however is you have the advantage of performing Linq Queries to select the exact data you need. With the addition of object initializers you can create a query that even returns objects of your own definition right in the query itself.
All else fails, you can check out this MSDN article that has many examples that I've discussed here and more. http://msdn.microsoft.com/en-us/library/aa468556.aspx |
||||||||||||
|
|
|
It depends on the size; for small to mid size xml, a DOM such as XmlDocument (any C#/.NET versions) or XDocument (.NET 3.5/C# 3.0) is the obvious winner. For using xsd, You can load xml using an XmlReader, and an XmlReader accepts (to Create) an XmlReaderSettings. The XmlReaderSettings objects has a Schemas property that can be used to perform xsd (or dtd) validation. For writing xml, the same things apply, noting that it is a little easier to lay out content with LINQ-to-XML (XDocument) than the older XmlDocument. However, for huge xml, a DOM may chomp too much memory, in which case you might need to use XmlReader/XmlWriter directly. Finally, for manipulating xml you may wish to use XslCompiledTransform (an xslt layer). The alternative to working with xml is to work with an object model; you can use xsd.exe to create classes that represent an xsd-compliant model, and simply load the xml as objects, manipulate it with OO, and then serialize those objects again; you do this with XmlSerializer. |
|||
|
|
|
|
nyxtom's answer is very good. I'd add a couple of things to it: If you need read-only access to an XML document, The downside of using But: the Lamentably, Another thing not present in nyxtom's answer is
The code you write using |
||
|
|
|
|
101 Linq samples http://msdn.microsoft.com/en-us/library/bb387098.aspx and Linq to XML samples http://msdn.microsoft.com/en-us/vbasic/bb688087.aspx And I think Linq makes XML easy. |
||
|
|
|
|
First of all, get to know the new XDocument and XElement classes, because they are an improvement over the previous XmlDocument family.
However, you may have to still use the old classes to work with legacy code - particularly previously generated proxies. In that case, you will need to become familiar with some patterns for interoperating between these XML-handling classes. I think your question is quite broad, and would require too much in a single answer to give details, but this is the first general answer I thought of, and serves as a start. |
||
|
|
|
If you create a typed dataset in the designer then you automatically get an xsd, a strongly typed object, and can load and save the xml with one line of code. |
||
|
|
|
Cookey's answer is good... but here are detailed instructions on how to create a strongly typed object from an XSD(or XML) and serialize/deserialize in a few lines of code: |
||
|
|
|
|
If you're working in .NET 3.5 and you aren't affraid of experimental code you can check out LINQ to XSD (http://blogs.msdn.com/xmlteam/archive/2008/02/21/linq-to-xsd-alpha-0-2.aspx) which will generate .NET classes from an XSD (including built in rules from the XSD). It then has the ability to write straight out to a file and read from a file ensuring that it conforms to the XSD rules. I definately suggest having an XSD for any XML document you work with:
I find that Liquid XML Studio is a great tool for generating XSD's and it's free! |
||
|
|