in src/main/java/org/apache/sling/jcr/classloader/internal/net/JCRURLConnection.java [588:597]
public int getContentLength() {
try {
connect();
return contentLength;
} catch (IOException ioe) {
log.info("getContentLength: Problem connecting: " + ioe.toString());
log.debug("dump", ioe);
}
return -1;
}