Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
419 views

Java XML processing entity problem?

I get the following error when I try to run my java program(it's supposed to read an xml file and print out some of the content). From what I understand there is an unreferenced entity which is not ...
1
vote
1answer
196 views

Setting a custom XOM EntityResolver

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. ...
1
vote
2answers
119 views

Entity resolution for venues and other geo locations

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 ...
0
votes
1answer
33 views

How to set StreamSource.setReader() with custom EntityResolver in XMLReader

I need to get a StreamSource from my xml file, however I also need to use a custom EntityResolver. The problem I am having is that I cannot figurout how to get an XMLReader into my stream source. I ...
0
votes
2answers
1k views

Java: How to prevent 'systemId' in EntityResolver#resolveEntity(String publicId, String systemId) from being absolutized to current working directory

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 ...