Forum Discussion
tjdurden
13 years agoFrequent Contributor
Hi,
For your XPath expression, try:
or
When the namespace changes, it generally causes headaches.
In both cases, the "//" performs a search through nodes to find a match, rather than building up from root elements (/)
If you've omitted a whole ton of XML for the sake of providing an example, let me know and I'll try and figure out something more specific.
Kind regards,
Tim
For your XPath expression, try:
//*[name() = 'GetTaskStatusResult']
or
declare namespace xmlns=" http://syncova.com/optima/webservices "
//xmlns:GetTaskStatusResult
When the namespace changes, it generally causes headaches.
In both cases, the "//" performs a search through nodes to find a match, rather than building up from root elements (/)
If you've omitted a whole ton of XML for the sake of providing an example, let me know and I'll try and figure out something more specific.
Kind regards,
Tim