Stories recently tagged with 'XML'

Bend OpenAccess ORM to Your Will with Type Converters(blogs.telerik.com)

submitted by jnpetrovjnpetrov(95) 1 month, 1 day ago

This example will show you how to get OpenAccess to serialize a class to xml, and store it in the database. In the end you will have a reusable TypeConverter you can use to store any class as XML using OpenAccess! read more...

add a comment |category: |Views: 47

tags: another

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

submitted by manudeamanudea(53) 4 months, 14 days 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: 1

tags: another

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

submitted by manudeamanudea(53) 4 months, 14 days 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: 5

tags: another

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

submitted by bsenoffbsenoff(1583) 9 months, 28 days ago

A simple code example. read more...

add a comment |category: |Views: 8

tags: another

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

submitted by BlackWaspBlackWasp(4217) 10 months, 17 days 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) 11 months, 12 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: 2

tags: another

Xml serialization using generics(ruijarimba.wordpress.com)

submitted by ruijarimbaruijarimba(81) 1 year 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(946) 1 year, 1 month 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) 1 year, 1 month ago

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

add a comment |category: |Views: 6

tags: another

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

submitted by Matt_TCFMatt_TCF(946) 1 year, 2 months 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: 6

tags: another

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

submitted by galratnergalratner(334) 1 year, 2 months 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: 16

tags: another

Fluent XML Serialization–Introduction(trycatchfail.com)

submitted by Matt_TCFMatt_TCF(946) 1 year, 2 months 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: 19

tags: another

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

submitted by anovanov(30) 1 year, 3 months 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, 3 months 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: 17

tags: another

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

submitted by iiChrisbiiChrisb(94) 1 year, 3 months 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: 6

tags: another

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

submitted by BlackWaspBlackWasp(4217) 1 year, 3 months 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