Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
843 views

XPath/XQuery: Select a root node with its attributes without childs

I have an xml: <Customer id=""> <Name /> <Address /> </Customer> I would like to select ONLY a root node with its attributes without its child nodes: <Customer id=""/ ...
2
votes
1answer
3k views

WPF TreeView bound to ObservableCollection not updating root nodes

Sorry - my question is almost identical to this one but since it didn't receive a viable answer, I am hoping that someone else has some fresh ideas. I have a WPF TreeView that is bound to a hierarchy ...
1
vote
1answer
54 views

How to access (PortalSiteMapNode) RootNode outside the SiteMapProvider?

A very simple question for experienced sharepoint developers I think. Inside a PortalSiteMapProvider I can access the RootNode this way: (PortalSiteMapNode) RootNode My Question is, how can I ...
1
vote
1answer
172 views

how to change root node wcf request\response

I am calling a Java webservice which I am trying to call from WPF client using Gateway and message inspector. The problem I am facing is -- Java webservice requires the root node of request xml as ...
1
vote
2answers
488 views

wxPython TreeCtrl without showing root while still showing arrows

I am making a python tree visualizer using wxPython. It would be used like so: show_tree([ 'A node with no children', ('A node with children', 'A child node', ('A child node with children', 'Another ...
0
votes
3answers
4k views

PHP5: Find Root Node in DOMDocument

I have a PHP5 DOMDocument and I try to find the root node (not the root element). Example: <test> <element> <bla1>x</bla1> <bla2>x</bla2> ...