0
votes
2answers
29 views

Getting different namespaces from xml document

I would like to know how to get different namespaces from my xml document to use in a conversion to xsl-fo. What I have is the following: XML: <?xml version="1.0" ?> <?xml-stylesheet ...
0
votes
2answers
30 views

Java XPath Namespaces when format of XML is unknown

I've seen quite a bit of discussion on the topic of Java / XPath, and Namepsaces, but I'm not sure the answers to those questions can help with my particular problem. I have a program that gets hold ...
0
votes
1answer
42 views

XQuery targeting multiple namespaces

I'm writing a library that generates complex XQuery expressions that target documents from two different namespaces. However, when I'm generating the query I don't know the particular namespace for ...
-1
votes
3answers
140 views

XmlNode in XmlNodelist

Does anyone know where is mistake? Or is better way to get video name into string? string text = "<?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' ...
0
votes
1answer
108 views

XML parsing using xpath for child node containing default namespace

I need to access the child node containing the default namespace For accessing the root node IFX that contains a namespace am using //ns:IFX/ns:BankSvcRs/ns:RqUID but now I need to access the ...
0
votes
3answers
51 views

Selecting / Filtering XML Element with XPath

here is my amazon mws api responce <?xml version="1.0"?> <GetMyPriceForSKUResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01"> <GetMyPriceForSKUResult ...
0
votes
1answer
65 views

PHP & XML: Can xpath include namespaces in the results, not just on the search?

I have an RSS feed that contains namespaces. I need to display the namespace information in the results along with the regular nodes. I'm trying xpath, but am now stuck and can't seem to find an ...
0
votes
1answer
50 views

XPath one namespace different schema

I have a problem when I want to select an item with xpath from an xml-file when there are different schemas for one namespace. Given is this valid xml-file: <getDataAction ...
1
vote
1answer
65 views

PHP and XPath Loop

Thank you all in advance. I've got some great answers to my sometimes stupid questions, so thank you again. I'm trying to parse a SOAP response using PHP, Xpath (namespaces) and SimpleXML. Down below ...
0
votes
1answer
113 views

XPath with namespace in Java

I would like to get all the content in between the tags but I do not know how to do this because of teh urn: namespace. <urn:ResponseStatus version="1.0" xmlns:urn="urn:camera-org"> ...
3
votes
1answer
104 views

Test XPath expressions with namespaces in Chrome

I have a XML document opened in Chrome and I would like to test some XPath expressions. The XML document involves different namespaces. How do I define the prefix URIs? For testing XPath expressions ...
2
votes
2answers
141 views

extract value of node that has a namespace declared without a prefix

I have the following xml file: <root_tag> <tag1> <tag1_1>A</tag1_1> <tag1_2>B</tag1_2> <tag1_3>C</tag1_3> </tag1> <tag2> ...
0
votes
1answer
81 views

PHP Xpath Scrape Possible Namespace Issue

UPDATE: The source code is very much different from what Developer Tools shows. Check out the source: view-source:http://www.machinerytrader.com/list/list.aspx?ETID=1&catid=1002 Is that ...
1
vote
1answer
168 views

Extracting xml data using XPath

I am trying to extract data from the following xml with no luck. <?xml version="1.0"?> <GetMatchingProductResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01"> ...
0
votes
1answer
347 views

xpath in ie9 — general questions

I am trying to make some xpath queries in IE9, with some a sort succes, but certainly its just trying and I cannot figure out clearly what can work and what not. I want to do two things: query ...
0
votes
1answer
56 views

Use xpath to obtain value

ok so i have this xml: <resin xmlns="http://caucho.com/ns/resin" xmlns:resin="urn:java:com.caucho.resin"> <cluster> <host host-name="www.1.com"> ...
0
votes
0answers
274 views

xpath with namespaces not working — how to query in chrome

There is something strange happening and I don't know why. I am loading an xml document from the server this includes an svg inside an element like this: <?xml version="1.0" encoding="utf-8"?> ...
1
vote
2answers
143 views

How can i access elements in XML with several namespaces via XPath?

I've got an XML file which looks somehow like this: <?xml version='1.0' encoding='UTF-8'?> <?xml-stylesheet type="text/xsl" href="http://url/stylesheet.xsl"?> <first ...
0
votes
1answer
381 views

Sonar XML Plugin: XPath rule and namespaces

We are trying to implement the Sonar XML Plugin to analyze the XHTML of our project. I am having trouble with the Xpath rules and multiple namespaces. We want to run Xpath checks against files whether ...
2
votes
1answer
65 views

How to set a namespace prefix to a payload xsl

I have this payload, what I am intresting to know is how i can add this "TV:" namespace prefix to all nodes and elementes in it. <TVInqResponse> <TVInqRS> ...
0
votes
0answers
77 views

My importxml function works no longer with some source but fine with other

=importXml("http://www.premiere.fr/film/Barbara-3135666";"//div[@itemprop='duration']") is working . So i m sure the importXml function is operate But it is working no longer for y use with ...
0
votes
1answer
60 views

XQuery: Two namespaces in the same module?

Is it possible to declare 2 namespaces and group 2 diferent group of functions in those, and then import them in the same main script? e.g: Something like this in the main script import module ...
0
votes
2answers
104 views

Can't access nodes in xhtml document with multiple namespaces through xpath

Okay, so I'm trying to parse a xhtml site with curl and xpath. The site has multiple namespaces: <html xmlns="http://www.w3.org/1999/xhtml" xmlns:addthis="http://www.addthis.com/help/api-spec" ...
1
vote
1answer
104 views

using xpath with namespace from a java class

I am trying to parse an xml document with namespace using XPATH. I have read how it is supposed to be done. I have implemented NamespaceContext as well. But, I still am not getting the values. I think ...
0
votes
1answer
145 views

JOOX Namespace Support

I'm trying to run some xpath queries on some XML that contains namespaces. Unfortunately it's giving me a rather horrid error message as it does not understand the namespaces in the xpath query or the ...
0
votes
1answer
321 views

How to parse SOAP in order to list all Request and Object names

I'm able to parse an XML SOAP when I know Namespace and Request name. Because I have different kind of SOAP requests, I would like to get the Request name in the SOAP file . Extract of a part of my ...
1
vote
2answers
148 views

issue parsing xml with namespaces using jdk xpath

I am having difficulty trying to parse an XML content with Xpath. Xml includes namespace information. I have tried to create a NameSpaceContextImp (apache WS commons implementations of ...
1
vote
2answers
1k views

Java XPath: Get all the elements that match a query

I want to make an XPath query on this XML file (excerpt shown): <?xml version="1.0" encoding="UTF-8"?> <!-- MetaDataAPI generated on: Friday, May 25, 2007 3:26:31 PM CEST --> ...
3
votes
2answers
1k views

Java XPath: Queries with default namespace xmlns

I want to do an XPath query on this file (excerpt shown): <?xml version="1.0" encoding="UTF-8"?> <!-- MetaDataAPI generated on: Friday, May 25, 2007 3:26:31 PM CEST --> <ModelClass ...
1
vote
2answers
767 views

xsl:template match attribute: how related to default namespace

I encountered a peculiar difference in xslt behavior when the root element has a default namespace attribute as opposed to when it does not. I am wondering why this difference occurs. The XML input ...
2
votes
1answer
92 views

XSLT Namespace Change

I have the following: <Data xmlns:x="Namespace.com"> <Node></Node> <Node2></Node2> <Node3></Node3> </Data> How using XSLT can I change ...
3
votes
2answers
249 views

Objective C - Parsing xml with namespaces using path

I am having some trouble parsing the following xml data: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <encryption xmlns="urn:oasis:names:tc:opendocument:xmlns:container"> ...
2
votes
2answers
229 views

Namespace Stopping XSLT Working

I have got an XSLT that looks like this: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" indent="yes"/> ...
1
vote
2answers
190 views

XSLT transformation generates an empty namespace

I have an XML file which has to be transformed using XSLT, I am adding a node to a subtree. The input file is as follows: <?xml version="1.0" encoding="UTF-8"?> <Envelope ...
2
votes
1answer
314 views

XSLT: How get rid of default namespace's prefixes in XPath? (xmlns=“…”)

I have a template: <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="urn:jboss:domain:1.1" xmlns:d="urn:jboss:domain:1.1" > ... ...
1
vote
2answers
1k views

XML Namespace is getting issues for parsing the file in XPath + java

I have an XML likewise <?xml version="1.0" encoding="UTF-8"?> <QDTM_IN300301QD ITSVersion="XML_1.0" xmlns="urn:hl7-org:v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
2
votes
3answers
227 views

How to get the namespace of a node in xslt?

I'm propably doing something stupid here, I bet there is an easier way... I need to access namespace of a node. Elements in my xml looks for example like this: <somenamespace:element ...
0
votes
1answer
411 views

Python XPath / libxml2 namespace query

I have been trying to parse the London Underground Linestatus XML "feed" - with little success. I would have expected this to ne "easy" using XPath, but I am getting empty nodes. I am fairly sure ...
2
votes
2answers
346 views

How to use createNSResolver with lookupNamespaceURI directly?

I am trying to use figure out how xpath is working in FireFox, but I am unable to resolve a simple namespace prefix. The lookupNamespaceURI keeps on returning null. I was unable to find any working ...
1
vote
3answers
907 views

parse restful webservice xml response with javascript

I want to parse the following xml which is the response from an restful webservice: <ns2:list xmlns="urn:foo1:foo" xmlns:ns2="foo2:foo"> <entityData> ...
1
vote
2answers
2k views

xPath XML file with namespaces using Javascript

I have done a TONE of research and still have just hit a dead end :( Heres my XML file (test.xml): <bookstore> <book genre="autobiography"> <title>The Autobiography of ...
1
vote
2answers
181 views

Is it possible to specify the namespace prefix just once in a xpath expression?

I have only one namespace in my XML file, defined on the root element. <root xmlns="http://my-namespace"> <aChild> <secondChild /> ... Is it possible to avoid ...
5
votes
3answers
1k views

Why is there no XPath syntax for namespace-qualified nodes?

Some of the nodes in an XML document have namespaces, specified with a defined prefix. It is possible to specify local-name() in XPath 1.0 and so ignore namespaces. However, I want to enable the ...
0
votes
2answers
506 views

Parsing atom:link field in XML with XPath from Play.libs

I'm working on a web application on Paly! Framework. I have to parse a XML document. I'm using XPath from Play.libs. Here is the piece of Document, I don't succeed to retrieve : <atom:link ...
4
votes
1answer
442 views

XPath problem regarding attributes with namespace

currently I'm trying to read different install.rdf files of Firefox extensions via PHP's SimpleXML. Unfortunately there's no predefined structure how they have to look. They are always using two ...
1
vote
1answer
276 views

Using Xpath With Default Namespace in C# for Canonicalisation

I'm trying to apply the C14N transform to some generated XML. It appears I can't use LINQ to retrieve the nodes to perform the canonicalisation so I have to go 'old school' with the DOM but I think ...
0
votes
2answers
1k views

Nokogiri - search by attribute value

I have the following XML doc: <files> <elements xsi:type="foo:elementType1"> <name>foo1</name> </elements> <elements xsi:type="foo:elementType1"> ...
1
vote
2answers
1k views

Parsing XML with default namespace using xPath in javascript

I need to create an XML xPath parser. All parsing has to happen on client side (using javascript). I created an javascript that does this, and everything looks OK until default namespaces come into ...
1
vote
1answer
328 views

Using Xpath to get Data from XML with Namespace

I've been banging my head against a brick wall with this so would really appreciate some help. I'm using xpath for the first time and have it doing most of the things I need without any problems. ...
4
votes
1answer
227 views

XSL elements inheriting namespace dynamically

I am writing a stylesheet that is ultimately combined (via code) with varying other stylesheets outside of my control and scope, before transforming XML. I am writing 'xsl:element's within templates, ...

1 2