| Thread | Last Post | Replies |
|
| TOP clause with XPath | 30 Jun 2006 14:59 GMT | 2 |
Is there any way to simalate the SQL TOP clause using XPath? Or, in other words, how to get a fixed number of nodes through a XPath query? Thanks,
|
| Variable in XPath? | 30 Jun 2006 11:31 GMT | 2 |
I'm trying to read a XML document with the following XPath code (programming in VB .net): Dim doc As XmlDocument = New XmlDocument() doc.Load("c:\la2.xml")
|
| new xml file is larger than the original | 30 Jun 2006 03:26 GMT | 2 |
i'm working on a windows application that will edit and create xml files from another application. the original file is 83k, the one created by my vb.net program is 153k but all i add is a new xmlelement when i use the other program and add a xmlelement is only increased the file ...
|
| XPath performance | 30 Jun 2006 03:26 GMT | 2 |
I got a question on executing the xpath. Can someone let me know which way is faster for the following two scenarios (one with XmlDocument and the other using XmlDocument.CreateNavigator())? XmlDocument doc = new XmlDocument();
|
| error generating ... Xml document (when calling web service) | 30 Jun 2006 00:22 GMT | 1 |
I have an XML file that is on my file system. I want to read the file into memory and call a web service with it. When I do, the VB complains: "there was an error generating the XML document".
|
| Move node? | 29 Jun 2006 16:19 GMT | 1 |
I have a xml file like this: <?xml version="1.0"?> <home> <page name="Test1" id="1">
|
| How do I parse an XML file | 29 Jun 2006 15:03 GMT | 1 |
The XML file looks something like this... --- Start XML --- <?xml version="1.0" ?> <VULNERABILITIES>
|
| XSD help | 28 Jun 2006 22:10 GMT | 5 |
I have a config file like so <config> <optionSet1> <option index="1" name="Set 1 index 1"/>
|
| Insert / delete ? | 28 Jun 2006 13:06 GMT | 2 |
Hi, im trying to first insert a node in the xml file and save it. XmlDocument mDoc = new XmlDocument(); mDoc.Load("struct.xml"); XmlNode singleNode;
|
| single quote xml value | 27 Jun 2006 17:11 GMT | 8 |
EvtEnrollAttr.Value = "3748" EvtEnrollElem.Attributes.Append(EvtEnrollAttr) i need the attr value to be <stuff ID = '3748'> in single quote how can i do that with visual basic.net?
|
| How to get needed data from XML document | 27 Jun 2006 13:52 GMT | 2 |
Using VS.NET 2003(VB), .NET Framework 1.1.4322, ASP.NET 1.1.4322, WSE2.0 on a WinXP Pro Sp2 computer. I need help trying to extract the "TruckName" data from this XML document (at the end of this request). I want the data after the equal(=) sign. The
|
| The correct way to set XSD namespaces? | 27 Jun 2006 12:27 GMT | 2 |
Hi, I have created a set of schemas for messages that i need to exchange between services. I set the targetNamespace ="http://mycompany/services/abc" and the root elements have names like FindCustomerRequest, FindCustomerResponse, CreateCustomerRequest and so on.
|
| insert xml element in a speicific location | 26 Jun 2006 14:51 GMT | 3 |
let's say i have a xml file <root> <stuff id='1'> <stuff1>
|
| Force the prefix of the document element | 26 Jun 2006 11:39 GMT | 4 |
Hi, I have an XmlDocument loaded from a memory stream. I set the document element prefix in this way XmlElement e = xDoc.DocumentElement; e.Prefix = "abc"
|
| XPath XmlNodeList documentation - apparent contradition | 26 Jun 2006 04:41 GMT | 4 |
1. Under the topic "Select Nodes Using XPath Navigation" it says: "All XmlNodeList objects are synchronized with the underlying document, therefore if you ... modify the value of a node, that node is updated in the document it came from."
|