472,351 Members | 1,577 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,351 software developers and data experts.

XML & MSIE: Use of default namespace declaration attribute in DTDnot supported.

When i open the following xml file in internetexplorer:

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE xc:content [
<!ENTITY % xhtml PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
%xhtml;
]>

<xc:xcontent xmlns:xc="http://www.wolterinkwebdesign.com/xml/xcontent" xmlns="http://www.w3.org/1999/xhtml" module="gastenboek">
<xc:bericht>
<xc:id>1</xc:id>
<xc:naam type="string"><![CDATA[Tjerk Wolterink]]></xc:naam>
<xc:email type="email"><![CDATA[tj***@wolterinkwebdesign.com]]></xc:email>
<xc:rating type="option">
<xc:empty/>
</xc:rating>
<xc:content type="text">
Ik moet zeggen je hebt er een mooi werkje van gemaakt<br />
Zeker dat xml buttontje onderin maakt het compleet
</xc:content>
</xc:bericht>
</xc:xcontent>

Then internet explorer says the following:

------
The XML page cannot be displayed
Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
--------------------------------------------------------------------------------

Use of default namespace declaration attribute in DTD not supported. Error processing resource 'http://tjerk.wolterinkwebde...
------
What am i doing wrong??
Jul 20 '05 #1
6 8132
What am i doing wrong??


Nothing.

When MSXML says

Use of default namespace declaration attribute in DTD not supported.

They mean,
"We know this is a legal construct, but we are not going to support it"
You can modify the xhtml dtd so it does work in IE (eg the XHTML+MathML
one at
http://www.w3.org/Math/DTD/
works
but since your input file clearly isn't XHTML, why have the DTD
reference at all?

David
Jul 20 '05 #2
David Carlisle wrote:
What am i doing wrong??

Nothing.

When MSXML says

Use of default namespace declaration attribute in DTD not supported.

They mean,
"We know this is a legal construct, but we are not going to support it"
You can modify the xhtml dtd so it does work in IE (eg the XHTML+MathML
one at
http://www.w3.org/Math/DTD/
works
but since your input file clearly isn't XHTML, why have the DTD
reference at all?

David

Because it can contain html, the xml is generated from a database,
this xml file is then put in an xsl file, and that xsl file should
not affect the xhtml, and it only works when i use a namespace for xhtml in the xml file.
Jul 20 '05 #3
Tjerk Wolterink <tj***@wolterinkwebdesign.com> writes:
Because it can contain html, the xml is generated from a database,
this xml file is then put in an xsl file, and that xsl file should
not affect the xhtml, and it only works when i use a namespace for xhtml in the xml file.


Yes but unless your DTD reference declares _all_ of the elements used,
not just the XHTML ones, the file will not be dtd-valid anyway so
there's not much to be gained in having a DTD at all.

The only thing that can be gained is defaulting of the xhtml namespace
declarations and that can't be made to work in IE. As the message said
it is an intentional non-conformance by MS.

The namespace Rec incidentally does advise against defaulting namespace
declarations. This also would fail with mozilla, for different reasons,
mozilla does not read external dtd files, so would never see the default
namespace declaration.

Can't you modify your generation from the datatabase so that your top
level element has
xmlns="http://www.w3.org/199/xhtml"
which is all you need to ensure that unprefixed html elements are XHTML
and matched by your stylesheet.

David
Jul 20 '05 #4
David Carlisle wrote:
Tjerk Wolterink <tj***@wolterinkwebdesign.com> writes:

Because it can contain html, the xml is generated from a database,
this xml file is then put in an xsl file, and that xsl file should
not affect the xhtml, and it only works when i use a namespace for xhtml in the xml file.

Yes but unless your DTD reference declares _all_ of the elements used,
not just the XHTML ones, the file will not be dtd-valid anyway so
there's not much to be gained in having a DTD at all.

The only thing that can be gained is defaulting of the xhtml namespace
declarations and that can't be made to work in IE. As the message said
it is an intentional non-conformance by MS.

The namespace Rec incidentally does advise against defaulting namespace
declarations. This also would fail with mozilla, for different reasons,
mozilla does not read external dtd files, so would never see the default
namespace declaration.

Can't you modify your generation from the datatabase so that your top
level element has
xmlns="http://www.w3.org/199/xhtml"
which is all you need to ensure that unprefixed html elements are XHTML
and matched by your stylesheet.

David


i do not follow you there.

My top level element has xmlns="http://www.w3.org/1999/xhtml"

Here look at the xml:

===
<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE xc:content [
<!ENTITY % xhtml PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
%xhtml;
]>

<xc:xcontent xmlns:xc="http://www.wolterinkwebdesign.com/xml/xcontent" xmlns="http://www.w3.org/1999/xhtml" module="gastenboek">
<xc:bericht>
<xc:id>1</xc:id>
<xc:naam type="string"><![CDATA[Tjerk Wolterink]]></xc:naam>
<xc:email type="email"><![CDATA[tj***@wolterinkwebdesign.com]]></xc:email>
<xc:rating type="option">
<xc:empty/>
</xc:rating>
<xc:content type="text">
Ik moet zeggen je hebt er een mooi werkje van gemaakt<br />
Zeker dat xml buttontje onderin maakt het compleet
</xc:content>
</xc:bericht>
</xc:xcontent>
===
I do not have a DTD for the <xc: namespace, i'm planning to build a xsd for the xml format.
But i do use :
<!DOCTYPE xc:content [
<!ENTITY % xhtml PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
%xhtml;
]>
Because the <xc:content xml file can contain xhtml entities, if i do not add this doctype declaration
then my xsl parser will complain (the xslt processor does not now &nbsp; therefore i have the doctype declaration).

So what do you exactly mean, how can i solve this problem?

Jul 20 '05 #5
In article <41**********************@news.wanadoo.nl>,
Tjerk Wolterink <tj***@wolterinkwebdesign.com> wrote:
Because the <xc:content xml file can contain xhtml entities, if i do not
add this doctype declaration
then my xsl parser will complain (the xslt processor does not now &nbsp;
therefore i have the doctype declaration).


You can just include the entity definition part of the DTD instead:

<!ENTITY % HTMLlat1 PUBLIC "-//W3C//ENTITIES Latin 1 for XHTML//EN"
"xhtml-lat1.ent">
%HTMLlat1;

<!ENTITY % HTMLsymbol PUBLIC "-//W3C//ENTITIES Symbols for XHTML//EN"
"xhtml-symbol.ent">
%HTMLsymbol;

<!ENTITY % HTMLspecial PUBLIC "-//W3C//ENTITIES Special for XHTML//EN"
"xhtml-special.ent">
%HTMLspecial;

-- Richard
Jul 20 '05 #6
My top level element has xmlns="http://www.w3.org/1999/xhtml"


so it has. Sorry.

Because the <xc:content xml file can contain xhtml entities, if i do not add this doctype declaration
then my xsl parser will complain (the xslt processor does not now &nbsp; therefore i have the doctype declaration).
If you only need the entity definitions then you can just include those,
you don't need the full XHTML dtd

eg:

<!DOCTYPE xc:content [
<!ENTITY % HTMLlat1 PUBLIC
"-//W3C//ENTITIES Latin 1 for XHTML//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">
%HTMLlat1;

<!ENTITY % HTMLsymbol PUBLIC
"-//W3C//ENTITIES Symbols for XHTML//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml-symbol.ent">
%HTMLsymbol;

<!ENTITY % HTMLspecial PUBLIC
"-//W3C//ENTITIES Special for XHTML//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml-special.ent">
%HTMLspecial;
]>
<xc:content...

possibly replacing http://www.w3.org/TR/xhtml1/DTD/ by a URI to a local
copy on your file system, to save hitting a remote server every time.

Or as I say you can use a version of teh XHTMl DTD that works with IE, eg
<!DOCTYPE xc:content SYSTEM "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd">"
<xc:content...

but that's a rather big DTD to download every time if you just want the
HTMl entities.

David
Jul 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: John L. Clark | last post by:
I am curious as to the rationale, and effect, of having default namespaces not applying (directly) to attributes (see...
1
by: indo3 | last post by:
HELLO For the top root element of my schema file, i want to declare following attribute: <xs:attribute name="xmlns:m" type="xs:string"...
3
by: Mike Dickens | last post by:
hi, i'm sure this has come up before but havn't managed to find an answer. if i have the following xslt <?xml version="1.0"...
17
by: Torbjørn Pettersen | last post by:
I've got a table where I want some of the cells to use a background image. The cells have variable height, so I am using an image with a rather...
4
by: johkar | last post by:
When the output method is set to xml, even though I have CDATA around my JavaScript, the operaters of && and < are converted to XML character...
4
by: Samuel R. Neff | last post by:
I'm writing an xslt in vs.net 2003 and in order to get intellisense on the html content I added the default namespace declaration...
7
by: Bilal | last post by:
Hello all, I came across this problem while working out the bugs in my identity trasnformation stylesheets but sidestepped it for later to see if...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.