Next in thread → Next in month →

Re: [xml-dev] How to embed xml in an html file, and parse the file using Sax?

From
Mukul Gandhi <>
To
Anil Philip <>
Date
2006-07-30T05:18:17Z
ID
<>
Thread
Re: [xml-dev] How to embed xml in an html file, and parse the file using Sax?
On 7/27/06, Anil Philip <> wrote:
>  ---------
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
> Transitional//EN" "
> http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> However I get parse errors
> eg.
> java.net.UnknownHostException: www.w3.org
> at java.net.PlainSocketImpl.connect(Unknown Source)

You are getting this error because the XML parser is trying to fetch
the file xhtml1-transitional.dtd from the above URL.

I think there are two solutions to this:

1) If the PC on which you are running your program, is connected to
internet, the parser will be able to reach this URL, and you will not
get this error.

2) You can write a custom EntityResolver to handle this.

Regards,
Mukul

http://gandhimukul.tripod.com
Next in thread → Next in month →