I am parsing a fair amount of RSS feeds in cascade using Java ROME as my XML parser. Sometimes one of the RSS feeds might be unreachable because of network issues, which results in a Socket timeout when trying to create the XMLReader object ( new XMLReader(url)).
The problem is that the default timeout lasts about 2 decades and when it happens it's slowing down the whole process.
Is there a way to change the default socket timeout in Java ROME?