| Thread | Last Post | Replies |
|
| Removing a bunch of nodes | 23 Sep 2004 12:06 GMT | 3 |
What is the best way to remove a collection of nodes? For example the following XML: <topic> <title>Foo</title>
|
| To access a particular node in XML | 22 Sep 2004 17:46 GMT | 4 |
I'm newbie to xml and C#. I have one XML file with the following content: <Store> <Book id="1" >
|
| Xml serialization/deserialization | 22 Sep 2004 15:25 GMT | 2 |
Suppose I have a RootObject which holds a collection of other objects. The other objects have a property (Parent) which refers back to the "parent" collection (b.t.w. my collection is based on CollectionBase), in similar fashion as the object models of MS Office.
|
| encoding xml genned by the getxml method of a dataset | 22 Sep 2004 13:15 GMT | 1 |
I have a basic question about xml encoding and predefined characters in xml. I know that characters such as "<" get encoded to < My question is when does this actually happen? I'm using the getxml() method of a dataset to build my xml, but before I send it to the
|
| free memory | 22 Sep 2004 13:12 GMT | 6 |
The system.xml.xmldocument does not implement a method to dispose() or otherwise free the memory after instantiation. Another discussion thread concludes that everything is handled automatically though garbage collection once memory runs out !! (this
|
| Converting a string date field/node in an XML document to Date type in a dataset | 22 Sep 2004 05:37 GMT | 1 |
I am having problems with Date Strings when using VS.net method of converting an XML document to a dataset. I need the the date nodes to be of date type. As I am loading the Dataset to a datagrid, and I using the sort facility to sort by date.
|
| Writing the Xml Declaration Using XmlDocument | 22 Sep 2004 02:55 GMT | 3 |
Is there a better way to include the XML declaration than the following? XmlDeclaration dec =m_XMLDocument.CreateXmlDeclaration("1.0",string.Empty, "yes"); m_XMLDocument.InsertBefore((XmlNode)dec,
|
| XmlSchema.Compile() method | 22 Sep 2004 01:03 GMT | 8 |
I am trying to load a XML schema which includes other schemas by using the XmlSchema.Read and XmlSchema.Compile() methods, from the .NET v1.1 documentation, there is overloaded Compile() method that takes a XmlResolver parameter
|
| XmlValidatingReader gives errors from inline schema | 21 Sep 2004 18:09 GMT | 1 |
I do have a dataset which I use to write a XML file with inline schema. A second application should use a XmlvalidatingReader to read the xml file again.
|
| How to deserizliaes multiple records from SQLXML? | 21 Sep 2004 16:43 GMT | 4 |
When I read my sqlxml results into a reader and deserialize it, I only get the first record deserialized into my object. If I have five records, they're all in the reader. But how do I get access to all of them via an object or objects?
|
| Problem add Web Reference for CSTA WSDL | 21 Sep 2004 16:00 GMT | 6 |
I am trying to create a Web Reference for CSTA using the URL http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta-wsdl-all-ope rations.wsdl Visual .Net complains that: "
|
| XPath query problem. | 21 Sep 2004 13:44 GMT | 1 |
I'm trying to locate one node in the following XML: <?xml version="1.0" encoding="utf-8" ?> <ROUTINES> <ROUTINE name="TA14">
|
| XmlSchema include question. | 20 Sep 2004 19:25 GMT | 3 |
I have 2 schema, for argument sake let's call them child.xsd and parent.xsd. I define all my types in parent.xsd and the child.xsd include the parent.xsd using the following tag: <xs:include schemaLocation="http://localhost/xsds/parent.xsd"/>
|
| customize xml created from dataset | 20 Sep 2004 17:28 GMT | 1 |
i've successfully write my xml from a dataset schema .... thanks for support ... now i need to set properly this parameters ... <?xml version="1.0" encoding="iso-8859-1" ?>
|
| XML parsing in C# | 20 Sep 2004 08:35 GMT | 1 |
I have a XML file like as follow <?xml version="1.0" encoding="UTF-8"?> <NeuStarLSRReport> <NeuStarHeader fromDate="09/10/04" toDate="09/13/04"
|