return null;
}
public int getTemperature() throws FaultException {
XmlObject[] tempArry=m_ws.getResourceProperty(weatherStationTempQname);
if(tempArry.length>0){
TemperatureMetricTypeImpl x=(TemperatureMetricTypeImpl)tempArry[0];
String value=x.newCursor().getTextValue();
return new Long(Math.round(x.doubleValue())).intValue();
}
return -1;
}