Im working through an example iphone tutorial on parsing the google weather api, The api seems to no longer exist so I have sourced an alternative. The tutorial uses libxml2 and xpath query to parse the xml file. I am succesfully parsing most of the data. The problem I have is that the icons url for the weather symbols are enclosed in CDATA sections:
<weatherIconUrl><![CDATA[http://www.worldweatheronline.com/images/wsymbols01_png_64/wsymbol_0010_heavy_rain_showers.png]]></weatherIconUrl>
I understand that xpath cannot read items enclosed in CDATA . Is anyway of pulling this data from within the tags?