Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
462 views

Avoid reloading all XML data for each repeater - vb.net

I am trying to place a repeater within a repeater using xml data. I have it working exactly as I want, but the method I have used reloads the data for each repeater. I think I need to cast as an ...
4
votes
1answer
287 views

In C#, how do I convert a XmlNode to string, with indentation? (Without looping)

This has got to be such a simple question but I just can't get the answer. I have an XmlNode and all I want to do is output this node, as a string, with indentations (tabs or spaces) intact to ...
4
votes
2answers
358 views

How to use Complex types with xs:any / ##any and mixed in code generated by the XSD tool

I have the following complex type in my XML schema: <xs:complexType name="Widget" mixed="true"> <xs:sequence> <xs:any namespace="##any" processContents="skip" minOccurs="0" ...
3
votes
3answers
413 views

Loop through multiple subnodes in XML

<Sections> <Classes> <Class>VI</Class> <Class>VII</Class> </Classes> <Students> <Student>abc</Student> ...
3
votes
3answers
202 views

How to test if a XML element has a text element inside?

I would like to know how could I test the fallowing situation: <foo> <bla1>xxx</bla1> <bla2>yyy</bla2> <bla3>zzz</bla3> </foo> In the ...
3
votes
3answers
1k views

In C#, how to get XML node value that is white space?

I have a XML node with a value which is a white space. Example: <sampleNode> </sampleNode> I am using a Serializer to get the data from XML document to store it in an object. Now, the ...
2
votes
1answer
40 views

What is the fastest way to retrieve a Xml node by ID

What is the fastest method to retrieve an XML node? I have an application that need the functionality of replace a specific node, when the document is small is fast but soon get bigger then it takes ...
2
votes
2answers
41 views

Is the name->value pair of an attribute in XML considered to be two nodes, interpreted by XPATH?

The following article http://docs.oracle.com/javaee/1.4/tutorial/doc/JAXPXSLT3.html says that XPATH considers the following to be nodes: Root Element Text Attribute Comment Processing instruction ...
2
votes
2answers
60 views

XSLT function to get xpath to a node

I need a XSLT function which will return me the xpath to the node from which it called. XML <root> <node> <subnode /> <subnode /> ...
2
votes
2answers
67 views

Add nodes into deeper branches of XML tree

I'm developing a web interface that enables admins to ban/unban particular users from my server whose software depends on an XML file to determine ban status of users. Initially, the 'Bans.xml' has ...
2
votes
1answer
398 views

How to load an XmlNode object ignoring undeclared namespaces?

I want to load up an XmlNode without getting an XmlException when an unrecognized namespace is present. The reason is because I need to pass an XMLNode instance to a method. I'm loading up ...
2
votes
2answers
1k views

is there any easy wasy to convert the XML output from sharepoint GetListItems() to a DataTable

i am able to retrieve data from sharepoint com.sharepoint2.Lists lists = new Lists(); lists.Credentials = new System.Net.NetworkCredential("user", "pwd", "domain"); lists.Url = ...
2
votes
3answers
3k views

Convert XmlDocument object into an XmlNode object - C#?

How do I convert an XmlDocument to a XmlNode in C#? I need to send the entire XmlDocument object to as an input parameter to a .NET web service.
2
votes
3answers
1k views

Compare two XmlNodes in C#

Is there a simple way to compare two XML structures to determine if they have the same structure and data? I have a function that returns an XmlNode and I am trying to write unit tests for it. I ...
2
votes
1answer
4k views

Get the total number of nodes and counting nodes

Is it possible to get the total number of XML nodes? Also, how does one do a for-statement with XSLT?
2
votes
1answer
3k views

Convert C# 2.0 System.Data.SqlTypes.SqlXml object into a System.Xml.XmlNode

I seem to always have problems with converting data to and from XML in C#. It always wants you to create a full XMLDocument object even when you think you shouldn't have to. In this case I have a ...
2
votes
2answers
7k views

Load an XmlNodeList into an XmlDocument without looping?

I originally asked this question on RefactorMyCode, but got no responses there... Basically I'm just try to load an XmlNodeList into an XmlDocument and I was wondering if there's a more efficient ...
1
vote
2answers
37 views

How to remove xml nodes that are not in an array of xpath strings?

I have an array of xpath values and an xml feed. When the feed comes in, I want to filter each xml file by removing the nodes that are not in my array of xpath's. I can think of a very dirty way to ...
1
vote
1answer
25 views

Setting node value using XPath Java

I'm trying to set a node value via an XPath. I have the following but it doesn't seem to change the actual files value. XPathFactory factory = XPathFactory.newInstance(); XPath xPath = ...
1
vote
1answer
59 views

Read other xml elements based on the root node and one of the element?

My XML is given below. <UrlRoutes> <ActivityPR> <Source>activity/editactivity</Source> <DestinationController>Activity</DestinationController> ...
1
vote
1answer
61 views

Add a XmlNode with the namespace of the parent node in .Net

I am using XmlDocument and XmlNode to manipulate a xml file. Say I want to add a valid node called "Language" to the root, I use such code: Dim languageNode As XmlNode = ...
1
vote
1answer
127 views

Select XML Node value by Attribute Value with multiple levels

I've been searching for an answer for a few days now but don't seem to be getting anywhere. I'm looking to get to value further in the XML code than I've seen examples for and with more attributes to ...
1
vote
1answer
101 views

How populate XmlNodeList with all the children of a node with the same name?

Given a XmlNode containing the following XML fragment, how do I fill XmlNodeList with book nodes? XMLNode nodeLibrary contains: <library> <book> <title>Three Little ...
1
vote
1answer
93 views

what does this xpath means “//Form/*[. = 'on']”

I am newbie in xml related things I am not able to understand : SelectNodes(@"//Form/*[. = 'on']"); Note : SelectNodes is a function of XmlNode.(related to XmlDocument) Please tell me what this ...
1
vote
1answer
238 views

Add XmlNode to XmlElement

I get a soap envelope back from a web service with customer data such as name and address etc. The address does not contain city/suburb but postcode. I have all the city and suburbs with their post ...
1
vote
1answer
489 views

Webservice method return XmlDocument, Reference sees a XmlNode

I've faced a problem I can't solve that's why I beg you to help me! I'm working with a WebService and I'm trying to return a XmlDocument from a WebService method called GetSystemDocument which looks ...
1
vote
3answers
531 views

Converting XElement into XmlNode

I know there is no direct method of doing it but still.. Can we convert XElement element into XmlNode. Options like InnerText and InnerXml are XmlNode specific. so,if i want to use these options, ...
1
vote
1answer
68 views

Why doesn't my code want to add any more child nodes? (XML)

I'm coding a program to translate a game. The original string and the translated string get saved to an XmlDocument, which can be saved to a file when the user clicks a button. Everything works fine ...
1
vote
2answers
160 views

How do I access innerText of a specific XMLnode

Hi I have the following XML fragment: <Customer AccountNumber="4"> <CustomerInfo> <firstName>Andrew</firstName> <lastName>Walker</lastName> ...
1
vote
1answer
409 views

insert XmlDocument into a XmlDocument node

I created a basic XmlDocument with one node: XmlDocument bigDoc = new XmlDocument(); bigDoc.LoadXml("<Request></Request>"); and I'm getting another XmlDocument that I want to insert ...
1
vote
1answer
704 views

Parsing XML in Python using Expat

Background: I'm coming from C#-land, so I'm looking for something like being able to handle nodes and values by selecting via Xpath. Here's my code, so far: import urllib import sys from ...
1
vote
2answers
2k views

xmlNode to objects

I have been working with a 3rd party java based REST webservice, that returns an array of xmlNodes. The xmlNode[] respresent an object and I am trying to work out the best way to Deserialize the ...
1
vote
1answer
742 views

How to get an xpathContext from an xmlNode in python

big fan of xpath on .net, and sax in python, but first time using xpath in python. I have a small script, that uses xpath to select some nodes from a doc, iterates through them, and then ideally uses ...
1
vote
2answers
564 views

How do I update text inside CDATA

I want to replace text inside cdata section but when I simply trying to add text to it I lose CDATA definition. I have a XML like this: <title><![CDATA[string]]></title> When I ...
0
votes
0answers
16 views

How to get invalid XMLNode in XmlReaderSettings.ValidationEventHandler in C#

I am trying to construct a custom Error Message for unsuccessful XML validation using the callback validation event. I noticed that the sender object of the element is XMLReader and i got the Element ...
0
votes
3answers
51 views

Read an XML node

Hi well I'm coding a C++ .DLL, and I want to know if it's possible to read an XML node with it. The XML file looks like this: <?xml version="1.0"?> <XML> <VIDEO> ...
0
votes
0answers
48 views

ASP.NET WebService returning XmlNode instead of custom object

Here is the webservice: Custom classes: [Serializable] public class A { public A() { } public B prop { get; set; } } [Serializable] public class B { public B() { } ...
0
votes
1answer
38 views

Reading xml and lookup in controller?

I have a sample xml <Lookup> <Controller Name="Activity1" > <action Name="Editactivity1" appgroup="Something" productcode="SomethingElse"/> </Controller> ...
0
votes
2answers
47 views

Reading XML node based on element?

I have a sample xml <UserSettings> <Source>settings/subscriptions</Source> <DestinationController>UserSettings</DestinationController> ...
0
votes
1answer
22 views

how to parse one integer node

I am new to the iPhone development and I need to parse one integer node from an xml file like this: <numbers> <current_number>1</current_number> </numbers> How can I ...
0
votes
2answers
87 views

XML node vs. attribute in Scala?

Remark: please consider XPath syntax dead here, thank you. I have xml node (HTML actually), and I would like to get an attribute of it. In C# (HTMLAgilityPack) I could get attribute object by name. ...
0
votes
2answers
40 views

C# XmlNode has ancestor type

I have an XmlDocument in the format below. If I perform the following search XmlNode title = xmlDoc.SelectNodes("//Book/Title[contains(., \"Title3\")]"); I will get back an XmlNode which is a ...
0
votes
1answer
72 views

Easiest way to add xml a node with a bunch of children nodes in .Net?

I need to modify a xml file (actually a .rdlc report file) and add some nodes which have a lot of children nodes (and those children nodes again have children nodes). Actually they are almost the same ...
0
votes
1answer
70 views

Csharp XmlNode select single node error

I am trying to delete an element on a specific match between the value from a textbox and from my Xml file. This is my code and I am getting an error in: string x = ...
0
votes
1answer
130 views

SQL Query to get xml node values from nvarchar column is very slow

I have one table called tblAdmissions, one of the column in this table is called "ProgramInformation". This column contain xml string like <row ...
0
votes
2answers
62 views

Breaking up XML string in C#

I have got an XML node called 'structNumber' which has data similar to '4.2' I select the node using: XmlNode xnChapNr = xDoc.SelectSingleNode("//./structNumber"); And at present I am displaying ...
0
votes
3answers
122 views

How can I parse XML of having multiple Nodes with same name and show in different controller?

See the XML below http://sosmoths.com/.xml/moths.xml This XML having multiple images name, I have to show the different title(There are four title) in their respective Controller. I have 4 ...
0
votes
1answer
19 views

Search XmlNode by attribute

I have XmlDocument. I don't know XPath, I only know that this xml document has node named "h3" with attribute id="PortalName" and this attribute is unique for all xml document. How to find this node? ...
0
votes
0answers
68 views

Binding XmlNode to DataGrid

Ok, so this is not as much a question than a reference for those that might encounter this problem. I have a TreeView which are bound to a XmlDataProvider, and I want to be able to edit the selected ...
0
votes
1answer
67 views

Need to read the previous node's child values to format the current node's value using xsl?

I need to use the formats tag while displaying the contents of rowdata, in the rowdata tags. the xml is follows: "temp.xml" <?xml version="1.0" encoding="iso-8859-1"?> <?xml-stylesheet ...

1 2