I would like to request someone at Microsoft who has the ability to search the old gotdotnet database for some lost tools that have thousands of google references to the original gotdotnet source but no alternate place to download. The original articles on MSDN are:
I want to generate a xsl style sheet programatically. To do this I use a XmlTextWriter. The start element shall look like this: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
When reading fragments, it seems like XmlReaders try to read too much. I'm working on a file parser for a new file format, and I've run into a problem. The format has an XML fragment for a header, then a (frequently) large amount of binary data beneath. In certain situations, ...
I have some .NET code that isn't working for me: XmlDocument xmlDocument = new XmlDocument(); System.Xml.XmlNamespaceManager xmlNamespaceManager = new System.Xml.XmlNamespaceManager(xmlDocument.NameTable);
I am using JAXB for parsing the XML file. When any validation error occurs like a particular tag value in the XML file is not in sync with what is defined in the schema, the JAXB is not displaying the tag name in the exception message. It just displays the message like – “the ...
Using C# and the XmlDocument object I need to be able to determine the root element of an XML doc. I am processing docs that may either have the root element of <NewOrder> or <OrderUpdate>. How can I determine what it is? XmlDocument doc = new XmlDocument();
I need to have the header portion of the XML message as a separate schema, which can be referenced (i.e included) by the other schema (XSD) as well. Has any one worked on similar requirement and know how to go about? <?xml version="1.0" encoding="UTF-8"?>
Is it possible or even feasible to use XML for graphical representations. For example, is it possible to convert a PowerPoint template with geometric shapes into an XML representation. What Visual Studio tool would you use for this?