I just found it.
/** This method is meant to be extended by classes that extend this class
*/
protected void tagContents(char[] ch, int start, int length)
throws ManifoldCFException
{
try
{
theWriter.write(ch,start,length);
}
catch (java.net.SocketTimeoutException e)
...
And we are using temp files with RSS connector.
I tried to split big feed on "entities", stored as an XML Documents, but I
found some XML-escaped characters will be unescaped (for instance, RSS may
contain HTML snippet as a value of an element)
-Fuad