reader.setContentHandler(this);
reader.setDTDHandler(this);
reader.setErrorHandler(this);
reader.setEntityResolver(this);
stream = new CountingInputStream(getRequestInputStream());
XMLReader xmlReader = new XMLReader(stream);
reader.parse(new InputSource(xmlReader));
}
} catch (ParserConfigurationException e) {
if (stream == null || stream.getBytesRead() > 0) {
SVNErrorManager.error(SVNErrorMessage.create(SVNErrorCode.RA_DAV_REQUEST_FAILED, e), e, SVNLogType.NETWORK);