Search Results

1
vote

Load an XmlNodeList into an XmlDocument without looping?

Dim returnXDoc As New XmlDocument(xDoc.NameTable) returnXDoc = xDoc.Clone() The first line here is redundant - you are creating an instance of an XmlDocument, then reassig …
0
votes

XPATHS and Default Namespaces

The issue is that an element without a namespace is declared to be in the NULL namespace - therefore if //foo matched against the namespace you consider to be the 'default' there would be no way to …
1
vote

Enforce Attribute Decoration of Classes/Methods

You can write unit tests to check for this kind of thing - it basically uses reflection. Given the fact this is possible I guess it would also be possible to write a FxCop rule, but I've ne …
1
vote

Microsoft Office 2007 automated installation - editing the config.xml file

In standard XML you embed quotes in attribute values using ", &34; or . See the page on …
0
votes

How to do Streaming read of a large XML file in C# 3.5 …

I'm confused by the mention of the "xs:sequence" - this is a XML Schema element. Are you trying to open a large XML Schema file? Are you open a large XML file that is based on that schema? …
1
vote

How to write java.util.Properties to XML with sorted keys?

java.util.Properties is based on Hashtable, which does not store its values in alphabetical order, but in order of the hash of each item, that is why you are seeing the behaviour you are. …
2
votes

I have a 100+MB XML file (sans-DTD/Schema). XSLT won’t have it. Strategies for transforming/parsing?

Can I recommend Saxon XSLT processor - I know for a fact it can handle large files, provided you give the Java JVM enough memory. Another thing is that there may be optimisations n your XSL …
1
vote

How to find a specific xml node?

All the question you are asking are answered by the XmlNode class. It has properties called Parent …
0
votes

XSLT Grouping Siblings

G Andrieu's solution doesn't work, as there is no such axes as 'next-sibling' unfortunately. And alternative solution would be the following: <xsl:template match="timelin …
0
votes

DataSet.GetXml not returning null results

The problem is listed here in the Microsoft KB article: http://support.microsoft.com/default.aspx?sc …
1
vote

XSLT Firefox Problem

Very strange indeed. The only thing I see when I run it is 'BinaryMark'. Seeing as the only place this appears in the output code is in the javascript at the bottom of the template I change …
1
vote

Converting XSLT 1.0 to XSLT 2.0

XSLT should be pretty much backward compatibly, although obviously there are things you can use in XSLT 2.0 that make life much easier. It sounds like you have something wrong in your XSLT, …
2
votes

XSLT - how to parse xml with recursive elements to Eclipse toc.xml?

I think the following does what you want: <xsl:template match="BODY"> <toc label="Sample Table of Contents"> <xsl:apply-templates select="UL/LI/OBJECT"/> …