| Thread | Last Post | Replies |
|
| xml generator | 17 Dec 2004 18:34 GMT | 1 |
I have an xml file with the structure below.I'd like to create dynamic number of xml files from this file based on <subreport> elements.each XML file contains subreport element only .for instance if there are 4 <subreport> elements
|
| XmlDocument.DocumentElement is null? | 17 Dec 2004 12:06 GMT | 3 |
The DocumentElement is always null? and is readonly? How to I add node items to the root? I'm try to create a document from nothing. All the samples start by loading a string or file.
|
| Adding the "xls:" to an element? | 17 Dec 2004 11:49 GMT | 2 |
How do I add the "xls:" to a XmlNode? I tried XmlDoc.CreateElement("xls: Value-of") I'm trying to create an element like the following: <xls: value-of select="SomeName" />
|
| Xml validation against xsd | 17 Dec 2004 05:38 GMT | 2 |
I have a xml documnet to be validated against an xsd. The xsd is specified in the doc as <books xmlns="my-bookshelf" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| XmlSerializer & FileNotFound (NOT the usual problem!) | 16 Dec 2004 21:53 GMT | 12 |
I've just read Christoph Schittko's article on XmlSerializer: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnxmlnet/html/t rblshtxsd.asp . . . and very informative it is too. I, too, am getting nasty FileNotFound exceptions. I've read, and
|
| invalid xml from dataset.writexml | 16 Dec 2004 21:03 GMT | 1 |
I need help in writing a datatable as xml in an aspx page. I have an excel client that opens the response as a stream into a recordset. In converting this code to .net c# from asp vb (where is used an adodb.stream, I can't seem to get the output right. I've tried the a
|
| retrieving DTD/xml schema | 16 Dec 2004 18:01 GMT | 2 |
I am a newbie to XML. I have a requirement where after loading the validate xml document I want to access its schema in the program. Can I retrieve it like I do the elemets.
|
| encoding problem | 16 Dec 2004 13:38 GMT | 4 |
i have xml with the line <VAL ID="artist" VAL="abc & cde"/> i need the & character to be there but the xmlDocument Load method throw exception for invalid character. i don't want to encode the string, can this be done?
|
| DTD translation to Schema | 16 Dec 2004 13:03 GMT | 1 |
I need to write a DTD to XML Schema translator in C#. Is there some source code available I can start from? It does not have to be C#, it can be C, C++ or Java. Thanks
|
| Dynamic xslt and transform with-out System.IO | 16 Dec 2004 12:57 GMT | 4 |
Anyone know if there is a way to dynamicly create a Xslt template/s and use them as an xml transform with-out use files for the Xslt? All the methods I see use files.
|
| SelectNodes() having trouble... | 16 Dec 2004 11:57 GMT | 2 |
I have the following xml doc... <?xml version="1.0"?> <GovTalkMessage xmlns="http://www.govtalk.gov.uk/CM/envelope"> <Body>
|
| XMLDOMSelection Equivalent with .Net | 16 Dec 2004 11:32 GMT | 1 |
The XMLDOMSelection, in MSXML, was great for removing groups of nodes based on a single XPath expression. xSel = xDoc.selectNodes(XPath) xSel.RemoveAll
|
| Can XML do this? | 15 Dec 2004 23:00 GMT | 3 |
I know nothing about XML and am asking this so I know if I should spend some time learning. I had a VB6 address book app that I converted to .net It reads and writes records in a random file.
|
| XML Validator Revisited ? | 15 Dec 2004 22:06 GMT | 3 |
Hello Gurus, This is part of my XML File. <Group ID="100"> <Name>Dotnet XML</Name>
|
| XmlDocument gives error: "... is an undeclared namespace" | 15 Dec 2004 11:05 GMT | 5 |
My application produces XML Data files which have XML namespace qualified XML elements (nodes), but the namespace itself is not declared in the data file. My task is to read these data files in a C# app for viewing purposes. I am using "XmlDocument" and "DataSet" for displaying ...
|