Posts tonen met het label XML. Alle posts tonen
Posts tonen met het label XML. Alle posts tonen

donderdag 13 augustus 2009

Save xml file with indenting

XmlTextWriter textWriter = new XmlTextWriter(@"D:\temp.xml", null);
textWriter.Formatting = Formatting.Indented;
MyXmlDoc.Save(textWriter);

woensdag 12 augustus 2009

How to generate a XML file From XSD schema

Find out here

dinsdag 28 juli 2009

XML XSD validator class

Use this class to validate an xml file against it's xsd schema...

XML node encryption (TripleDES)

Use this class to encrypt or decrypt one ore more xml nodes with sensitive data, with the use of the TripleDES encryption algorithm. This encryption generates only private keys. (symmetric encryption)