| Thread | Last Post | Replies |
|
| Is there an xml diff test function | 12 Oct 2005 17:45 GMT | 5 |
Hi; I have a bunch of unit tests that generate xml files (WordML and SpreadsheetML) and then compare those to the "correct" file. This works great except that the java code I use to generate the xml (dom4j) differs from
|
| Namespace question | 12 Oct 2005 14:58 GMT | 4 |
One day I will fully understand XML namespaces and much happiness and partying will ensue. Until then, I must pick the brains of those in the know... If I have an XmlNode and I want to select a child node whose namespace I
|
| xml transformation question | 12 Oct 2005 06:41 GMT | 5 |
How can I use the XML and XSLT to transfer data from CSV to SQL server? Thanks.
|
| xmlDocument.Save " " getting changed changed to "&#10" | 11 Oct 2005 17:49 GMT | 1 |
I'm using xmlDocument.Save(xmlTextWriter) to create an Excel-readable file. All works well, except where I've replaced the carriage return chars in the .innertext to XML-compliant "
"; It gets changed to "&#10" and doesn't render new lines in the Excel sheet.
|
| XSD Question | 10 Oct 2005 23:21 GMT | 2 |
I have a document structure similar to this: <root> <things> <thing id="thing1" type="type1"/>
|
| XSD Question | 10 Oct 2005 22:25 GMT | 1 |
I was looking for an XSD-specific newsgroup but couldn't see one. Can someone point me in the right direction? If not, I'll post my question here anyways... Thanks,
|
| I think they are the same - but Excel may not??? | 10 Oct 2005 19:13 GMT | 9 |
Hi; This concerns Excel's SpreadsheetML format and how Excel writes it. Excel saves an xml file as follows: <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
|
| Best approach for xpath on .NET 2.0 | 10 Oct 2005 15:30 GMT | 9 |
Hi; I need to perform xpath queries on xml under .net 2.0 (ok if it won't run under 1.1). What is the approach that will give me the fastest code? These xpath queries will walk all over the xml - it is not a case where each
|
| Serializing object graph directly to XML document rather than to text | 09 Oct 2005 21:19 GMT | 3 |
Is there a way to serialize a graph of objects and get the output as an XML document, without first serializing to text and then parsing the text (I know how to do this but I find it really silly and inefficient). I googled around and from what I found, the answer is NO. Am I ...
|
| Get 3 chars before <?xml version... | 09 Oct 2005 18:56 GMT | 5 |
Hi; My code is: XmlDocument doc = new XmlDocument(); doc.AppendChild(xmlDoc.CreateXmlDeclaration("1.0", "UTF-8", ""));
|
| XmlDocument.Save() - write raw | 09 Oct 2005 09:51 GMT | 4 |
Hi; I have nodes in the XmlDocument I create that need to be written exactly as is - not converting < to %lt; and no changing the whitespace. (This is for the SpreadsheetML schema and it reads the <Data> nodes literally.)
|
| Carriage Returns | 08 Oct 2005 16:34 GMT | 3 |
I've a routine that exports a DB query to Excel by building an XmlDocument and saving to a XmlTextWriter. I'm having trouble with carriage returns in a mailing address not showing up in the final Excel sheet.
|
| Namespace problems | 08 Oct 2005 01:43 GMT | 1 |
Hi; I am creating an XmlDocument (.net 2.0) and then saving it. I need the final xml file to look as follows (SpreadsheetML schema - I have no control over it):
|
| Most efficient way for write only XML | 08 Oct 2005 01:37 GMT | 2 |
Hi; If I am creating an XML file, what is the most efficient way to create it? All I can see is creating an XmlDocument, building it up, then writing it to a Stream. But that means I have the entire DOM sitting in memory when I have
|
| Best way to read an xml file | 08 Oct 2005 01:35 GMT | 2 |
Hi; If I need to read an XML file - basically the SAX approach where I just need each node in order - one pass, read-only - what is the best way to do this. It looks like it's XmlReader but I want to verify that.
|