Latest XML stories

Reading large xml files fast(csharptutorial.blogspot.com)

submitted by bacalaobacalao(320) 5 years, 7 months ago

Experimenting with how to read large xml files fast. It turns out, the result is not what I initially had expected... read more...

add a comment |category: |Views: 477

tags: another

RSS in .NET Made Easy with XML Serialization(weblogs.asp.net)

submitted by rjdudleyrjdudley(1465) 5 years, 8 months ago

Easy as pie RSS using PONO (Plain Ole .NET Objects) and .ToString method. There's also a method to deserialize an RSS Document. Lots of cool potential here (think: log files). read more...

add a comment |category: |Views: 7

tags: another

Subtle Behaviors in the XML Serializer can kill(hanselman.com)

submitted by HaackedHaacked(5105) 5 years, 11 months ago

Scott Hanselman describes a subtle gotchas with the Xml Serialization technologies in .NET. In this particular issue, behavior changes from .NET 1.1 to .NET 2.0 caused a difficult to track problem. read more...

add a comment |category: |Views: 5

tags: another

HOWTO: Dynamic XPath Expressions w/ C#(you.gotfoo.org)

submitted by gotfoogotfoo(115) 5 years, 11 months ago

In this HOWTO I will explain how to generate XPath expressions using a simple XML Document, a custom object collection and a few foreach loops. The end result is a list of XPath expressions that map to each node of the specified XML Document. read more...

add a comment |category: |Views: 24

tags: another

Applying XSL transformations to XML in .NET(developerfusion.co.uk)

submitted by RobChappelRobChappel(2720) 6 years, 4 months ago

XML Stylesheet Transformation(XSLT) is defined as a language for converting xml documents to other document formats. XSLT processors parse the input XML document, as well as the XSLT stylesheet and then process the instructions found in the XSLT stylesheet, using the elements from input XML document. During the processing of the XSLT instructions, a structured XML output is created. We are going to perform the transformation using the XmlUrlResolver, XSLTransform classes from the .NET Framework. The XslTransform class, found in the System.Xml.Xsl namespace, is the XSLT processor that implements the XSLT version 1.0 recommendation. read more...

add a comment |category: |Views: 16

tags: another

What's new in System.Xml 2.0 - Introduction, XML readers & writers(developerfusion.co.uk)

submitted by gavinjoycegavinjoyce(25.7k) 6 years, 4 months ago

While there have been many improvements and new features added to ADO.NET, the changes going on in the XML-related classes in version 2.0 have been even more dramatic. Through the XML InfoSet model defined by the World Wide Web Consortium (W3C), XML is evolving to become a universal data access technology that can represent both structured rowset data and hierarchical and unstructured information. As this view of XML, and the associated standards, have been emerging, so the classes in the System.Xml and its subsidiary namespaces have been changing to better accommodate the needs of developers and provide the best possible performance. The what follows is a brief overview of these changes and the associated techniques that the new classes enable when working with XML. read more...

add a comment |category: |Views: 5

tags: another