By tag: XML
0
kicks
Fluent XML Serialization–Part 2: Compiling Serialization
Fluently-XML is an extensible XML serialization library that sports a simple domain-specific language for specifying serialization behavior. In this post, I will show you how the configuration data is "compiled" into classes that perform serialization at runtime.
0
kicks
Reading an Excel spreadsheet into dynamic objects
Excel represents documents using Office Open XML (OOXML), a zipped XML based format developed for spreadsheet and chart representation. In this article I am going to demonstrate parsing an Excel spreadsheet and loading the data into a generic List. OOXML was incorporated into Office in 2007 therefo...
0
kicks
Fluent XML Serialization–Introduction
The System.Xml.XmlSerializer class enables .NET applications to serialize/deserialize most types to and from XML using only a few lines of code. This is a great capability and provides an easy API for simple persistence and interoperability scenarios. As a developer, you have some degree of contro...
0
kicks
How to update an xml file with XmlDocument?
Very simple code sample about updating an xml document.
0
kicks
Using Xml, Xsd and XSLT Identity Transform to template and generate (W
Dives depper in identity transform and shows how to build a Word generating engine with xml xslt xpath and WordML.
0
kicks
Using Xml, Xsd and XSLT Identity Transform to template and generate (W
Talks about xml, xslt, xpath and Identity transform and how it can be used for templating xml documents. usefull for Word generation in example.
0
kicks
Controlling XML Serialization of Attributes
The default action, when serializing objects to XML, is for each public property and field to generate an XML element. The XmlAttribute attribute can be applied to public members to modify this behaviour and instead generate XML attributes.
0
kicks
Controlling Serialization of XML Elements
When serializing classes to XML, each public property and field value is transformed into an XML element. The name of the element matches the name of the property. The XmlElement attribute allows the names and formatting of XML tags to be modified.
0
kicks
XPath Visualizer
XPath Visualizer is a simple tool, that lets you execute a XPath query and see the results. The .Net 3.5 is required to use the tool .
0
kicks
DataSets and XML - The Simplistic Approach
One of the first ways I learned how to read xml data from external data sources was by using a DataSet’s ReadXML function. This function takes file path for an XML document and then converts it to a Dataset. This functionality is great when you need a simple way to process an XML document. In addit...
0
kicks
Controlling XML Serialization of the Root Element
Every XML document includes a root element that contains all of the other information held. When serializing objects to XML the root element's construction is linked to the name of the class or structure unless modified with the XmlRoot attribute.
0
kicks
Processing XML documentation
Processing XML documentation - it really is a good problem to solve using XSL. But if you really have to, there are tools such as Sandcastle that will do the entire job for you.
0
kicks
XML Parsing Error: no element found
Something that may be overlooked related to the dreaded XML Parsing Error.
0
kicks
XML Schema und XSL im Selbststudium lernen
onion.net ist eine .NET basierte High-End Content-Management Platform die konsequent auf die offenen Standards des W3C setzt. Betrachten Sie onion.net als ein XML Entwicklungssystem, das Sie beim Selbststudium von XML Schema und XSLT unterstützen kann. Ganz einfach: mit der für den...