--- HttpParser.java.original 2004-04-27 16:58:57.000000000 +0200 +++ HttpParser.java 2004-04-27 17:00:39.000000000 +0200 @@ -195,7 +195,11 @@ // Parse the header name and value int colon = line.indexOf(":"); if (colon < 0) { - throw new HttpException("Unable to parse header: " + line); + //throw new HttpException("Unable to parse header: " + line); + // just ignore this artefact + name = null; + value = null; + continue; } name = line.substring(0, colon).trim(); value = new StringBuffer(line.substring(colon + 1).trim());