| Thread | Last Post | Replies |
|
| formatting xml document dynamically | 23 Jan 2004 15:43 GMT | 2 |
I have an asp.net search application that brings up a datagrid of results, with one of the fields being a hyperlink to an XML document, of which there are thousands. By clicking this link, the browser loads the XML document in its raw form.
|
| CDATA and XmlNode | 23 Jan 2004 15:17 GMT | 2 |
I have the following code: // Read the XML document from the hard-drive. XmlDocument doc = new XmlDocument(); doc.Load("doc.xml");
|
| Does XSD <Import> work? | 23 Jan 2004 10:46 GMT | 1 |
Environment: Visual Studio .NET 2003 (vb) I am developing an XSD Schema and want to include some building blocks from another source, so they have a different namespace. - If I use an <Include> the Schema doesn't show any of the Elements from the
|
| c# simple read and return part of an xml file | 22 Jan 2004 17:30 GMT | 7 |
The below xml is saved as a file, i want the quickest way in c# of reading just the DataSource section and returning it as a string, can anyone help me out. Cheers Chris. <NewDataSet>
|
| looping through XML nodes | 22 Jan 2004 14:57 GMT | 1 |
I have a problem. I have an XML file like below one.I want to loop through node by node and store or display the data . Can anybody give me a sample piece of c# code? Thanks & Regards,
|
| SelectSingleNode..Not Working..??? | 22 Jan 2004 06:50 GMT | 2 |
I have an Xml file in which i am storing the usernames and password and some other user details. The file contains data as shown below.. <?xml version="1.0" encoding="utf-8"?> <RoleTables xmlns="http://tempuri.org/UserPass.xsd">
|
| XML Parsing | 21 Jan 2004 22:06 GMT | 1 |
I have an xml string exactly as follows: <ownerid name="Anderson, Eric" dsc="0" type="8">{CF9F4762-89CE-4470-8019-D208724883BD}</ownerid> this comes from our CRM Database. This was returned when I asked for ownerid. I would like to display in a textbox or datagrid just the name. ...
|
| Read XML into Dataset and load SQL server table from Dataset | 21 Jan 2004 20:56 GMT | 1 |
I am working on a project with the following characteristics: 1. Load data from a SQL server table to an xml file 2. Read the xml file into a dataset. 3. Load data from the dataset into another SQL server table.
|
| XML Serialisation & Circular References | 21 Jan 2004 15:44 GMT | 2 |
I have been able to get simple circular references to be serialized in xml by using the ImportTypeMapping method on the SoapReflectionImporter class. But I am unable to serialise circular references when the circular reference is contained with in a collection class, specifically I ...
|
| 'Convert' is not a member of 'Boolean' | 21 Jan 2004 14:32 GMT | 2 |
I used the designer in VS.NET 2003 to create a dataset. Within that dataset, there is an element "Tags", with a primary key and relationship: <xs:element name="Tags">
|
| Retreiving Xml child nodes using DataSet and XmlDataDocument | 20 Jan 2004 18:25 GMT | 2 |
I am loading an Xml file from a sql server. I have one field that contains child nodes stored as text. The problem is, when I try to imort the dataset into a XmlDataDocument, it loads the whole thing as a text element. (with all of the special characters converted) The best
|
| help with looping through XML items. | 20 Jan 2004 14:20 GMT | 4 |
Larry, i've got an xml file which has multiple cities as the top level item. When i read it in using XMLReader, and define the variables, as below, it finds the correct number of cities in the xml file, but repeats the first
|
| Problems with mixed content type. | 20 Jan 2004 11:45 GMT | 1 |
I have an Xml file that I am trying to transform using an Xsl stylesheet. My data is in the form of: <root> ...
|
| Exporting from XMLReader to an XML file | 20 Jan 2004 11:27 GMT | 7 |
I have an XmlReader object containg some Xml code. I would like to export this document from the reader to an Xml file. How to do this? Thanks for any hints,
|
| Looking for some guidance...XML loop and process | 20 Jan 2004 11:22 GMT | 1 |
I have an XML document that my app will accept and the document may have more than one 'record' in the document (bear with me, I'm fairly new to XML lingo). Incoming document:
|