if(node != null){
retVal = node.getText().trim();
retVal = (retVal.length()>0)? retVal: null;
}
}catch(Exception e){
throw new CheckForUpdateException(GettextResource.gettext(Configuration.getInstance().getI18nResourceBundle(),"Unable to get latest available version"), e);
}
}
return retVal;
}