November 2007 Entries

Root element is missing.

The following code doesn't work; the exception message reads "Root element is missing.": MemoryStream transformed = new MemoryStream(); XmlDocument doc = new XmlDocument(); XmlReader input = null; XslCompiledTransform xslt = new XslCompiledTransform(); input = XmlReader.Create("Example.x... xslt.Load("Example.xslt"); xslt.Transform(input, new XsltArgumentList(), transformed); try { doc.Load(transformed); } catch (Exception ex) { Console.WriteLine("XmlDocum... failed: {0}", ex.Message); } Console.ReadLine();...

I'm Speaking at the Fairfield / Westchester Code Camp

The first ever Fairfield / Westchester Code Camp will be held on Saturday, November 10th, at the The University of Connecticut School of Business, Stamford Campus. I'll be speaking on Debugging Tools for Windows starting at 4:15. The last I heard, there are still a few seats available. Hope to see you there

Nice, Free XML Editor

You can pick up a nice, free XML editor, Liquid XML Studio 2008, from Liquid Technologies at http://www.liquid-technolog... All the important stuff is there: document text editor intellisence schema graphical view document validation XPath builder XML formatter syntax highlighting The UI has a Visual Studio look and feel. Without a doubt, the best free XML editor I've come across...