IFeedParser parser = FeedParserConfig.create();
Channel channel = null;
try
{
FeedParserResult result = parser.parse(getXmlURL(), getTitle(),
getLastUpdateServerTime());
setInvalidnessReason(null);
channel = result.getChannel();
// TODO: Processing of the redirection should go through GlobalController feed replacing logic
if (result.hasBeenRedirected()) redirected(result.getReridrectionURL());
} catch (Exception e)
{
if (!(e instanceof ClientErrorException))
{
String message = e.getMessage();