| Thread | Last Post | Replies |
|
| Breaking larger xml document into smaller ones | 27 Jun 2008 19:50 GMT | 2 |
I have a problem which I think is sure easy enough that it would have been solved already. I am looking for some pointers here - I have an XML document like this: <root>
|
| Count Nodes | 27 Jun 2008 08:35 GMT | 1 |
I wish to get a count of nodes in an xml file in vb.net, so I am using the following, as a simple example: MyCount = xmlNodePart.Current.Select.//MyNode/Record[*]).Count I saw in some xml specs that instead of [*] it should be [@*], but that does
|
| deserialising xml files with no namespace | 25 Jun 2008 08:08 GMT | 2 |
I've created some c# classes from Xsds. The classes have namespace attributes in the XmlRootAttributes. Accordingly, they will NOT deserialize with the XmlSerializer unless the same namespace is defined.
|
| Creating an XML document | 24 Jun 2008 21:06 GMT | 7 |
First of all, a confession. This is a cross post from the microsoft.public.dotnet.general list. I posted there not realising that this list existed. Apologies to those who read both lists. I'll do my best to prevent two separate conversations developing.
|
| XsltCompiledTransform question | 20 Jun 2008 05:35 GMT | 8 |
Here are three things that I thought would be equivalent but are not. Just wondering why: XmlElement foo = doc.CreateElement("foo"); // load it up with a body
|
| XML fille to List<> | 17 Jun 2008 12:11 GMT | 4 |
I have a xml file like the following. <?xml version="1.0"> <data> <idef units="Vin,Vout,E">
|
| re-using XmlDocument to load fragments | 09 Jun 2008 04:06 GMT | 4 |
Hi... We've got a lot of places in our code where we read relatively small xml user preference blocks. Currently that's creating a new XmlDocument in every spot. I was thinking we might see some speed improvements by having one,
|
| XmlDocument vs XPathDocument performance | 09 Jun 2008 03:07 GMT | 5 |
Hi... I've been trying to improve the performance of our xml handling, so I've been doing some timing tests lately and ran across something I thought odd - XPathDocument seems slightly slower than XmlDocument. I've run the tests
|
| XmlDSig and XAdES schema validation | 05 Jun 2008 06:54 GMT | 2 |
how to validate xades xml against xades and xmlsig schemas? i have this sample: XmlTextReader xmlReader = new XmlTextReader(@"..\..\Data\xades_zep- epes.xml");
|
| Stop and Resume parsing of large XML file | 03 Jun 2008 14:30 GMT | 5 |
Currently I am using XmlReader (but I am open to other options) to parse an XML file, and I would like to be able to stop/break the current parse (simple enough) and then resume it later (say after a reboot). Is there any way to get the current location in the file that the ...
|
| Grouping in XSLT | 03 Jun 2008 12:01 GMT | 1 |
How to do group by in XSLT ? I tried on the following codes: <files> <file name="swablr.eps" size="4313" project="mars"/>
|
| remove namespace from descendants | 02 Jun 2008 14:01 GMT | 2 |
How can I remove an empty namespace with XElement ? Using the below code I wish to apply the namespace only to the root node <urlset> but I obtain also an empty xmlns="" on the child nodes. Thanks
|