Tagged Questions

DTD stands for "Document Type Definition" as specified in the XML 1.x Recommendations of the W3C. DTDs define formal grammars for XML documents: which tags you can use and where you can use them. Validating XML processors apply this grammar to XML documents to determine whether they conform to these grammars, in which case the document is "valid".

learn more… | top users | synonyms

52
votes
7answers
2k views

What's up, Doctype?

What is doctype and why do I want to use it? What are the different doctypes I can use? What is the difference between standards and quirks mode, what are some quirks I may run into with differently ...
43
votes
15answers
45k views

How to generate sample XML documents from their DTD or XSD?

We are developing an application that involves a substantial amount of XML transformations. We do not have any proper input test data per se, only DTD or XSD files. We'd like to generate our test data ...
23
votes
6answers
13k views

Disable DTD warning for Ant scripts in Eclipse?

I'm using Eclipse Ganymede. Everything works fine, but I have an anal-retentive yearning for a warning-free Problems tab. Right now it (correctly) complains about my Ant scripts: "No grammar ...
17
votes
11answers
4k views

Is there a difference between 'valid xml' and 'well formed xml'?

I wasnt aware of a difference, but a coworker says there is, although he can't back it up. What's the difference if any?
15
votes
4answers
13k views

Free DTD to XSD conversion utility?

I have a DTD that I need to convert to an XSD (XML schema) file. Is there a free utility or simple way to accomplish this?
13
votes
4answers
9k views

What is difference between XML Schema and DTD?

I have googled this question but I do not understand clearly what is schema and DTD and why Schema is more powerful compared to DTD. Any guidance would be highly appreciated. Thanks.
12
votes
4answers
2k views

dtd vs xsd, which one to choose?

i want to use one of these to describe my xml document. i've read that xsd is better than the older dtd since it supports namespaces and data types. does this mean that i should only use xsd for all ...
12
votes
3answers
8k views

Validate an XML file against local DTD file with Java

How can I validate an XML file against a DTD that is stored locally as a file? The XML file does not have any DOCTYPE declaration (or may have one that should then be overridden). I had a look at this ...
12
votes
2answers
4k views

How do I validate xml against a DTD file in Python

I need to validate an XML string (and not a file) against a DTD description file. How can that be done in python?
10
votes
1answer
121 views

Scala: Find the DTD declaration in a file

I'm not familiar with the scala XML library. Is there a simple way to find the DTD of a document ? From what I've seen so far, scala.xml.XML.load only returns the Elem (the XML content of the ...
10
votes
2answers
937 views

DTD with RFDa and XHTML 1.0 Transitional support

Is there a W3C document type available with both XHTML 1.0 transitional support and RDFa support? I am aware of the XHTML+RDFa 1.0 (http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd) DTD but that is ...
9
votes
1answer
53 views

Mobile Document Type Definition

Mobile site is not showing correctly. I have to zoom in to view my site correctly even if I have the correct DTD: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC ...
9
votes
6answers
6k views

Reference to undeclared entity exception while working with XML

I am trying to set the innerxml of a xmldoc but get the exception: Reference to undeclared entity XmlDocument xmldoc = new XmlDocument(); string text = "Hello, I am text &alpha; &nbsp; ...
9
votes
5answers
12k views

Make DocumentBuilder.parse ignore DTD references

When I parse my xml file (variable f) in this method, I get an error C:\Documents and Settings\joe\Desktop\aicpcudev\OnlineModule\map.dtd (The system cannot find the path specified) I know I do ...
8
votes
2answers
352 views

How can I force a SAX parser to use a DTD if one is not specified in the input file?

How can I force a SAX parser (specifically, Xerces in Java) to use a DTD when parsing a document without having any doctype in the input document? Is this even possible? Here are some more details ...
8
votes
9answers
2k views

Is Scala/Java not respecting w3 “excess dtd traffic” specs?

I'm new to Scala, so I may be off base on this, I want to know if the problem is my code. Given the Scala file httpparse, simplified to: object Http { import java.io.InputStream; import ...
8
votes
9answers
6k views

Special Characters in XML

I am creating a left navigation system utilizing xml and xsl. Everything was been going great until I tried to use a special character in my xml document. I am using » and I get th error. ...
7
votes
3answers
792 views

DTD parser for Django/Python

Is there a tool that can generate Django models from a DTD? Failing that, are there any decent DTD parsers available for Python?
7
votes
2answers
4k views

Where are the schemas for XML files on an Android project?

Where are the schemas (DTD or XML schema) for the XML files used on Android like AndroidManifest.xml or the layouts?
7
votes
3answers
1k views

How can I prevent XML::XPath from fetching a DTD while processing an XML file?

My XML starts like this $ cat a.xhtml <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ... My code starts like this ...
6
votes
3answers
140 views

Official XHTML 1.1 DTDs vs. official XHTML 1.1 XML Schemas

I have the option of validating XHTML 1.1 documents against the official XHTML 1.1 DTDs (I use the plural because the "main" DTD actually includes several others) or against the official XHTML 1.1 XML ...
6
votes
3answers
555 views

DTD required elements ordering

I want to have list of required elements in any order defined in dtd, but have no idea how I could do this. For example, I have following definition: <!ELEMENT parent (child1, child2, child3)> ...
6
votes
3answers
1k views

An error has occurred opening extern DTD (w3.org, xhtml1-transitional.dtd). 503 Server Unavailable

I'm trying to do xpath queries over an xhtml document. Using .NET 3.5. The document looks like this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
6
votes
1answer
855 views

Extending XHTML

I'm playing around with writing a jQuery plugin that uses an attribute to define form validation behavior (yes, I'm aware there's already a validation plugin; this is as much a learning exercise as ...
5
votes
1answer
1k views

Using JDOM to Parse XML file with external DTD that has not been declared in the XML file

In my XML file I have some entities such as &rsquo; So I have created a DTD tag for my XML document to define these entities. Below is the Java code used to read the XML file. SAXBuilder builder ...
5
votes
2answers
371 views

Where is the HTML5 Document Type Definition?

The "old" HTML/XHTML standards have a DTD (Document Type Definition) defined for them: HTML 4.01 http://www.w3.org/TR/html401/sgml/dtd.html XHTML 1.0 ...
5
votes
2answers
612 views

php script to convert xml to dtd

Is there any PHP script to convert XML file to DTD. I tried a lot. I can able to find tools but can't PHP script. Is there any? any help will be thankful... Fero
5
votes
2answers
3k views

DTD download error while parsing XHTML document in XOM

I am trying to parse an HTML document with the doctype declared to use the transitional dtd as follows: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
5
votes
2answers
5k views

.NET : How to validate XML file with DTD without DOCTYPE declaration

I have an XML file with no DOCTYPE declaration that I would like to validate with an external DTD upon reading. Dim x_set As Xml.XmlReaderSettings = New Xml.XmlReaderSettings() x_set.XmlResolver = ...
5
votes
4answers
5k views

schema validation with msxml in delphi

I'm trying to validate an XML file against the schema's it references. (Using Delphi and MSXML2_TLB.) The (relevant part of the) code looks something like this: procedure TfrmMain.ValidateXMLFile; ...
5
votes
3answers
451 views

Where can I find good documentation on how to write XML DTDs?

The description of DTDs in the XML 1.1 specification is very terse, and it is difficult to gain an appreciation of what features are available. For example, from looking at the unflattened ...
5
votes
3answers
6k views

how to disable dtd at runtime in java's xpath?

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 ...
5
votes
5answers
7k views

Validate XML using a custom DTD in PHP

Is there a way (without installing any libraries) of validating XML using a custom DTD in PHP?
5
votes
2answers
562 views

The best way to validate XML in a unit test?

I have a class with a ToString method that produces XML. I want to unit test it to ensure it is producing valid xml. I have a DTD to validate the XML against. Should I include the DTD as a string ...
4
votes
3answers
66 views

Howto assign HTML semantics to my XML elements to get them rendered in my web browser?

I have an xml file like this: <?xml version="1.0" encoding="UTF-8"?> <todo> <list><item>first</item><item>second</item></list> ...
4
votes
1answer
302 views

how to validate xml against dtd

I have a XML document: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE ONIXMessage SYSTEM "http://www.editeur.org/onix/2.1/reference/onix-international.dtd"> <ONIXMessage> ...
4
votes
5answers
1k views

Yet another question regarding the html5 dtd/schema

If there is no DTD or schema to validate the H5 document against, how are we supposed to do document validation? And by document validation, I mean "how are we supposed to ensure our html5 documents ...
4
votes
1answer
193 views

xml dtd- how to avoid parsing the content of an element?

Among the elements that consist my xml, I have got element let's call it 'X' that can contain many different kind of inner elements. Therefore I'd like to define the DTD parser to avoid parsing its ...
4
votes
2answers
727 views

Path to XML DTD for DBUnit in multi-module Java/Maven project?

I have a multi-module maven project. Within the persist module I have a number of XML files data files that reference a DTD: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE myapp-data ...
4
votes
1answer
783 views

How do I use a custom XmlResolver to resolve public identifiers *inside* a DTD?

I've written a class extending XmlUrlResolver to resolve references to public identifiers in XML documents. For example, when an XML document starts with: <?xml version="1.0" ...
4
votes
1answer
2k views

How to stop Eclipse IDE from trying to download DTDs for validation?

I have a XHTML-file using the following doctype-definition: `<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">` Eclipse ...
4
votes
5answers
255 views

HTML: Do we really need different DocTypes?

why w3c has the conventions of different Doc-types .. ? Instead they could have recommended only one Doc-type (say loose type.. as it would prone to less number of SILLY errors) and would have ...
4
votes
2answers
2k views

XML validation against given DTD in PHP

In PHP, I am trying to validate an XML document using a DTD specified by my application - not by the externally fetched XML document. The validate method in the DOMDocument class seems to only ...
4
votes
2answers
7k views

Difference between PCDATA and CDATA in DTD

What is the difference between #PCDATA and #CDATA in DTD?
3
votes
2answers
65 views

Custom tag namespace implementation in HTML5

For an audio player I'm building, I'd like to have a tag similar to what Google and Facebook use for their share widgets. For example, it could be: <fp:player data-type="mp3" ...
3
votes
1answer
46 views

Where is the official podcast DTD?

The podcast howto on the Apple website shows a sample XML file, which refers to a podcast DTD: podcast-1.0.dtd. The DTD is not available at this address, unfortunately. I heard you can validate a ...
3
votes
1answer
114 views

How to make jQuery Mobile attributes XHTML-valid

I started using jQuery Mobile some time ago, and as those that know jQuery Mobile know, it uses it's own HTML attributes to give items a predefined role. Mostly divs. Some examples: <div ...
3
votes
1answer
41 views

DTD Parsing: Parameter entity reference name including another parameter entity reference - is it well formed?

I'm writing a DTD parser and I'm a little uncertain how to expand parameter entities. For example is this DTD excerpt valid? <!ENTITY % xx '&#37;zz;'> <!ENTITY % zz '&#60;!ENTITY ...
3
votes
1answer
29 views

What happens if a DTD link leads nowhere?

Fairly simple question, say I'm referencing a dtd for my XML's doctype: <!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN" ...
3
votes
1answer
93 views

XML format specification (DTD, XSD..) for Unit Test Reports

A lot of tools produces and consumes the same XML File format for Unit Test report. Example (source): <?xml version="1.0" encoding="UTF-8" ?> <testsuite errors="0" failures="0" ...

1 2 3 4 5 8