Latest XML stories

SlashSot Blogger integration that actually works!(csharpsimple.blogspot.com)

submitted by manudeamanudea(53) 29 days, 1 hour ago

You can add a badge or link to your Blogger to easily allow your readers to submit it to Slashdot for consideration; and once submitted, take them to the discussion. read more...

add a comment |category: |Views: 0

tags: another

Extract bindings from IIS 6 metabase (the easy way)(csharpsimple.blogspot.com)

submitted by manudeamanudea(53) 29 days, 10 hours ago

Xslt can be very handy, specially when you have a bunch of data in xml format and you want to extract some. To extract all the bindings froma running iis6 server the easiest way is to... read more...

add a comment |category: |Views: 4

tags: another

How to Insert Data into an XML file(indepthdotnet.blogspot.com)

submitted by bsenoffbsenoff(1281) 6 months, 13 days ago

A simple code example. read more...

add a comment |category: |Views: 7

tags: another

XML Serialization of Arrays and Collections(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4024) 7 months, 1 day ago

Arrays and collections can be serialized to XML. The standard action when using the default serializer is for the name of the collection property to be added to the XML, with a contained element for each item named according to the items' data types. read more...

add a comment |category: |Views: 2

tags: another

Streaming with LINQ to XML - Part 2 - Microsoft XML Team's WebLog - Si(blogs.msdn.com)

submitted by schalkvanwykschalkvanwyk(1335) 7 months, 27 days ago

In today's world, developers have a somewhat unpleasant choice between doing this efficiently with fairly difficult APIs such as the XmlReader/XmlWriter or SAX, and doing this easily with DOM or XSLT and accepting a fairly steep performance penalty as documents get very large. read more...

add a comment |category: |Views: 1

tags: another

Xml serialization using generics(ruijarimba.wordpress.com)

submitted by ruijarimbaruijarimba(61) 9 months, 10 days ago

Serialize/deserialize your objects using generics. Customize settings like indentation, encoding, namespaces and others. read more...

add a comment |category: |Views: 11

tags: another

Fluent XML Serialization–Part 3: How Serialization Is Performed(trycatchfail.com)

submitted by Matt_TCFMatt_TCF(836) 9 months, 20 days ago

Reflection is a powerful tool when used correctly. In this penultimate chapter of Fluent XML Serialization, I will show you how Fluently-XML uses configuration data built up from a domain-specific language to perform serialization at runtime. read more...

add a comment |category: |Views: 3

tags: another

SVG XmlSerializer Classes(fxcritic.blogspot.com)

submitted by ChanceChance(20) 10 months, 11 days ago

A set of XmlSerializer compatible classes for parsing the SVG file format (e.g. Inkscape). read more...

add a comment |category: |Views: 4

tags: another

Fluent XML Serialization–Part 2: Compiling Serialization(trycatchfail.com)

submitted by Matt_TCFMatt_TCF(836) 10 months, 22 days ago

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. read more...

add a comment |category: |Views: 5

tags: another

Reading an Excel spreadsheet into dynamic objects(galratner.com)

submitted by galratnergalratner(309) 10 months, 25 days ago

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 therefore the following code will not work with older versions of Excel. read more...

add a comment |category: |Views: 14

tags: another

Fluent XML Serialization–Introduction(trycatchfail.com)

submitted by Matt_TCFMatt_TCF(836) 11 months, 5 days ago

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 control over the XML that’s generated, but the process is mostly rigid and not easy to extend or customize. I have created a new flexible XML serialization framework that overcomes the limitations of the XmlSerializer class. Read on to find out more. read more...

add a comment |category: |Views: 16

tags: another

How to update an xml file with XmlDocument?(weblogs.asp.net)

submitted by anovanov(30) 1 year ago

Very simple code sample about updating an xml document. read more...

add a comment |category: |Views: 6

tags: another

Using Xml, Xsd and XSLT Identity Transform to template and generate (W(blogs.infosupport.com)

submitted by iiChrisbiiChrisb(94) 1 year ago

Dives depper in identity transform and shows how to build a Word generating engine with xml xslt xpath and WordML. read more...

add a comment |category: |Views: 16

tags: another

Using Xml, Xsd and XSLT Identity Transform to template and generate (W(blogs.infosupport.com)

submitted by iiChrisbiiChrisb(94) 1 year ago

Talks about xml, xslt, xpath and Identity transform and how it can be used for templating xml documents. usefull for Word generation in example. read more...

add a comment |category: |Views: 5

tags: another

Controlling XML Serialization of Attributes(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4024) 1 year ago

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. read more...

add a comment |category: |Views: 2

tags: another

Controlling Serialization of XML Elements(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4024) 1 year ago

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. read more...

add a comment |category: |Views: 2

tags: another