- From: Jacob W Anderson <jwanders@BBN.COM>
- Date: Fri, 03 Oct 1997 08:40:29 -0700
- To: www-jigsaw@w3.org
Hi!
To fix a problem while reading in filter specifications which
unnecessary spaces, HttpManager.java needs to undergo this
change:
w3c/www/protocol/http/HttpManager.java:
321: Class c = Class.forName(filters[i].trim()); // added trim()
Otherwise if a filter spec like this:
w3c.www.protocol.http.filters=w3c.www.protocol.http.DebugFilter \
| w3c.www.protocol.http.cache.CacheFilter \
is introduced, the extra spaces around the class names will
produce a java.lang.IllegalArgumentException during filter
initialization.
-- Jake
Received on Friday, 3 October 1997 11:45:33 UTC