xsl-list
[Top] [All Lists]

Re: [xsl] How to disable/turn off the inclusion of DTD in html/xhtml to xml

2010-07-22 05:03:20
On 22/07/2010 09:40, Jack Bush wrote:
Hi David,

First of all, thank you very much for responding to this thread.

Are you supplying a local dtd?I can see from the log you posted that you are
supplying local entity files but I only see the w3c URI for the DTD (and you
will get a 503 if you try to reference that more than a couple of times a day)

Yes, I do supply the local dtd.

But what I meant was do you reference it in the catalog.


Why does it start to pop up if I try to
reference it more than a couple of times a day?

because the w3c let you download it, but if you try again their server automatically decides that you are going to hit them with 10000000 requests a second so prevents being swamped by banning your Io address and you get 503 (forbidden) errors instead.



When you asked this on the saxon list (where you posted the catalog) Jirka
pointed out some errors in your catalog, the log you posted here looks the>same
though. So I assume the error is the same and your catalog needs to reference a
local copy of the dtd.

Yes, I did post the same question on Saxon list but didn't get a response from
Jirka on the saxon list who pointed out some errors in the catalog.xml.

jirka replied to the list (I got the reply for example)


Below is the catalog.xml for your reference:

<?xml version="1.0"?>
<!DOCTYPE catalog
PUBLIC "-//OASIS/DTD Entity Resolution XML Catalog V1.0//EN"
"http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd";>
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
<group prefer="system" xml:base="file:///E://">
<public
publicId="-//W3C//DTD XHTML 1.0 Transitional//EN"
uri="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>

This is wrong, it should point at your local copy. As it is it says
"if you see the public id for xhtml fetch a dtd frm w3.org, which is exactly what you want to avoid.

<system
systemId="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";
uri="xhtml1-transitional.dtd"/>

This one is correct as long as xhtml1-transitional.dtd is in the same directory as your catalog

<system
systemId="xhtml1-transitional.dtd"
uri="xhtml1-transitional.dtd"/>
<uri
name="corporateStyleSheet.xsl"
uri="corporateStyleSheet.xsl"/>


<uri
</group>
</catalog>

Could you resend the suggestion from Jirka again?


The saxon list is archived:


http://sourceforge.net/mailarchive/message.php?msg_name=4C45C40B.5080005%40kosek.cz


Thanks a lot,

Jack



David


________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--