I have following XML:
<?xml version="1.0" encoding="UTF-8"?>
<gbXML version="0.37" useSIUnitsForResults="true" volumeUnit="CubicMeters" areaUnit="SquareMeters" lengthUnit="Meters" temperatureUnit="C" xmlns="http://www.gbxml.org/schema" xsi:schemaLocation="http://www.gbxml.org/schema xsi.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Campus id="cmps-1">
<Location>
<Name>Trois-Rivieres, PQ Canada</Name>
<Latitude>46.210000</Latitude>
<Longitude>-72.350000</Longitude>
</Location>
</Campus>
</gbXML>
I want to select the "Latitude" value. I am using the below XPath expression which is not returning anything:
<p><code><xsl:value-of select="gbXML/Campus/Location/Latitude"/></code></p>
I am new in XPath, I will really appreciate it if someone could help me with this
You have a default namespace
xmlns="http://www.gbxml.org/schema"
.In your XSLT, just add another namespace, say
xmlns:text="xmlns="http://www.gbxml.org/schema"
(you are creating a shortcut of the default namespace).Add also
exclude-result-prefixes="text"
to omit thetext
prefix in the output.Then, change:
to