I got dtd in file and I cant remove it. When i try to parse it in Java I get "Caused by: java.net.SocketException: Network is unreachable: connect", because its remote dtd. can I disable somehow dtd checking?
|
feedback
|
|
You should be able to specify your own EntityResolver, or use specific features of your parser? See here for some approaches. A more complete example:
And xpath usage:
Hope this helps... | ||||
feedback
|
|
This worked for me:
| |||
feedback
|
|
I had this problem before. I solved it by downloading and storing a local copy of the DTD and then validating against the local copy. You need to edit the XML file to point to the local copy.
Little more info here: http://www.w3schools.com/dtd/dtd_intro.asp I think you can also manually set some sort of validateOnParse property to "false" in your parser. Depends on what library you're using to parse the XML. More info here: http://www.w3schools.com/dtd/dtd_validation.asp | |||
|
feedback
|