Forum Discussion
nmrao
12 years agoCommunity Hero
Namespace have to be included.
Check this out:
Check this out:
declare namespace soap='http://schemas.xmlsoap.org/soap/envelope/';
declare namespace ns1='http://ws.cdyne.com/WeatherWS/';
<Result>
{
for $z in //ns1:WeatherDescription
return (<WeatherID>{data($z/ns1:WeatherID/text())}</WeatherID>,<Description>{data($z/ns1:Description/text())}</Description>)
}
</Result>