> What is an "entity resolver" or a "network cache"? > Henrik ~ EntityResolver is a java interface. ~ http://java.sun.com/javase/6/docs/api/org/xml/sax/EntityResolver.html ~ Objects implementing it are used to redirect requests to web resources, such as an entity like: ~ http://www.w3.org/2003/entities/2007/isolat2.ent ~ to local caches right in your local hard drive so you don't have to access the Internet again or at all. ~ When I said "network cache" I actually meant a caching proxy for the Web, such as Squid ~ lbrtchx