tags:

views:

269

answers:

1

Does anyone have worked with cXML and C#?

I'm working in a project that will need to create cXML files (integration will Dell's electronic Purchase Ordering system) and have found some libs like this one, but now I wonder if anyone here has another ideia of how to create those files.

Thanks!

A: 

Well, cXML is based on XML, so you could use XmlWriter, XmlDocument, XDocument (Linq to XML), or even XML serialization if you want an object model of the document

Thomas Levesque
Yeah, guess I don't much of a choice here. I will use XmlDocument and its related classes, then validate it against cXML's DTD.
wtaniguchi