| Thread | Last Post | Replies |
|
| setting default namespace ?? | 03 Sep 2004 08:45 GMT | 6 |
How can I set the default namespace of an XmlDocument/XmlElement? I've tried doing something like rootElement.SetAttribute( "xmlns", "http://www.w3.org/2000/xmlns/", "http://www.some.org/theschema" );
|
| How-To Dynamically Create Nested DataTables | 03 Sep 2004 07:10 GMT | 1 |
I can create this: ?xml version="1.0" standalone="yes" ?> <ConfigOpt> <record>
|
| Order of serialization of attributes | 03 Sep 2004 01:55 GMT | 1 |
is there a way to control the order XmlSerializer serializes attributes? With this class, value is serialized before value. Although it shouldn't matter, I would like it the other way around, just for style. <Property value="" label="name" />
|
| Chicken or Egg, XML or XSD? | 03 Sep 2004 00:52 GMT | 1 |
What comes first, XML or XSD? When you start building a project that will include XML, what would you start on first, building your XML data file or your XSD schema file? thanks
|
| XmlSerializer Collection with Collections | 03 Sep 2004 00:50 GMT | 3 |
Hello I got this working but it is not how I really want it, basically I have an xml file which has a root of <test> and can be filled with 3 different types of <question> elements with different attributes, all share a base set of 4, one of the question types can have children
|
| SelectNodes | 02 Sep 2004 21:24 GMT | 2 |
I am having a bit of a brainfart here at 4am in the morning. I have XmlNodeList TmpServers = ServerNodes.SelectNodes("[server='" + DataSource + "']");
|
| XMLREADER | 02 Sep 2004 13:56 GMT | 1 |
If I run the following code :- XmlReader rdr = dal.Getxxxx rdr.MoveToContent(); string xmlstring = rdr.ReadOuterXml();
|
| Using innerXml and outerXml on a xmlDataDocument leaks cpu-resourc | 02 Sep 2004 09:49 GMT | 2 |
Selecting element nodes from a xmlDataDocument using the childNodes collection or by using selectSingleNode and then reading innerXml or outerXml leaks cpu-resources. A trivial example showing this behaviour is included below.
|
| Loop through and count occurences | 01 Sep 2004 17:33 GMT | 2 |
Does anyone know how to get all nodes in a xml-document that start with a certain text? In my case I want to count all suppliers ( <id>Supplier*</id> ) <root>
|
| System.Xml.XmlValidatingReader.set_ValidationType raised InvalidOperationException | 01 Sep 2004 16:55 GMT | 4 |
I am using an XmlValidatingReader which uses an XSD for xml validation. The code has been performing reliably for months. Yesterday it failed for the first time with the following exception: Inner exception of type System.InvalidOperationException has occurred
|
| XmlSerializer does not deserialize elements /w specified namespace? | 01 Sep 2004 08:48 GMT | 2 |
the class looks like this: [XmlRootAttribute(Namespace="http://www.landxml.org/schema/LandXML-1.0",IsNullable=false)] public __gc class LandXML { public:
|