Hi guys,
I want to parse the following XML document to resolve all entities in it:
 <!DOCTYPE doc SYSTEM 'mydoc.dtd'>
 <doc>&title;</doc>
My EntityResolver is supposed to fetch the external entity with the given system ID from the database and then do the resolution, see below for an illustration:
 private static class MyEntityResol...
            
           
          
            
            Say I want to build a check-in aggregator that counts visits across platforms, so that I can know for a given place how many people have checked in there on Foursquare, Gowalla, BrightKite, etc.  Is there a good library or set of tools I can use out of the box to associate the venue entries in each service with a unique place identifier ...
            
           
          
            
            I need to not validate against a doctype, so I'd like to set a custom EntityResolver that accepts everything. I'm getting data back from tagsoup, so I know my data is well-formed and correct.
Furthermore, I need to rapidly hit a number of documents, so when I do this with the default EntityResolver, I get 503 from w3.org.
How, then, ca...