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 ...
1
vote
1answer
12 views
Create DTD for node with inner xml node and text
I have pretty simple XML shown below.
<?xml version="1.0" ?>
<message>
This is a message with some <bold>highlights</bold> in a text.
</message>
How can I create DTD ...
0
votes
0answers
16 views
How to prevent validation of HTML files with a DTD instruction when deploying an application with ClickOnce?
I have a dotNet application that I am attempting to deploy using ClickOnce. I am writing a batch file for building the application manifest file and this calls mage.exe as follows:
mage -New ...
-2
votes
0answers
27 views
How do I do an attribute for a page number in my XML and DTD? [closed]
I'm not sure how to write it out... can anyone help?
I need the attribute for a page number
0
votes
2answers
25 views
Where does Mozilla host their XUL XSD Schema?
I'm trying to find the official schema (XSD or DTD) for Mozilla XUL.
Nothing except this weird link crop up in Google searches.
What gives?
0
votes
1answer
69 views
xmllint DTD validation syntax
Trying to validate an XML document; however, xmllint is insisting on reading the options as the file so I'm getting FileNotFound exceptions. Just to confirm, I have the xmllint.exe in the same folder ...
1
vote
1answer
55 views
XML Validation of DTD Elements
Hey guys i've got a XML DTD code that is external but when i try and validate it, i seem to get an error. The code i have is below:
<!DOCTYPE catalog [
<!ELEMENT catalog (book)+>
...
-3
votes
0answers
28 views
How can I present it in DTD [closed]
How can I make DTD file for the following problem?
--Drop and Create Publisher table
DROP TABLE PUBLISHER CASCADE CONSTRAINTS;
CREATE TABLE PUBLISHER (
Name varchar2(50),
Address ...
2
votes
3answers
52 views
how to set default values for attributes in xml using DTD?
How do i set default values for attributes in xml. Consider below test.xml. An attribute 'gender' with default value 'male' has been defined for element 'to'. I am however unable to retrieve it using ...
1
vote
1answer
25 views
Conflict with DTD
I have the feeling to really misunderstand the DTD with XML :
In an XML file (wich got a doctype) I include with an entity another XML file (wich got a doctype, too). And my parser is angry about it. ...
0
votes
1answer
19 views
correctness of a DTD file
i have done a dtd file of a xml file but i dont know if it is right.
so can somebody help me regarding my problem?
the xml file is the following:
...
3
votes
2answers
41 views
DTD: 0, 1 or 2 Elements
I need a DTD which allows an element A to have 0, 1 or 2 child-elements B. I tried it with
<!ELEMENT A (B? |(B,B))>
but then i get an error:
validity error : Content model of A is not ...
-2
votes
2answers
30 views
XPATH find a node if no other node has a sertin value
i need to return all of the book only if ther is no book with the price of 14.95....
the DTD
<!ELEMENT inventory (book)+>
<!ELEMENT book (title, author+, publisher+, price, chapter*)>
...
0
votes
2answers
32 views
In DTDs, why are namespaces given as a URL?
Apparently, the namespace URL that follows xmlns in HMTL and XML pages are meaningless. And all this time I though there actually were namespaces at those addresses...
When I first read/heard about ...
0
votes
2answers
23 views
Why do we need “Entities” in DTD's and other places
I don't understand why we need !Entities in DTD's, as well in markup like HTML.
For example, I saw an entity defined as <!ENTITY copy "©">.
If we can clearly use the © symbol, why do we need ...
3
votes
3answers
123 views
HTML5 is not based on SGML, and therefore does not require a reference to a DTD
From: http://www.w3schools.com/tags/tag_doctype.asp
The < !DOCTYPE > declaration is not an HTML tag; it is an instruction to
the web browser about what version of HTML the page is written in.
...
0
votes
1answer
38 views
XML DTD Namespace not Bound
OK, so I need to declare namespaces for an XML project, and validate using DTD. Everything seems correct, even my friends and professor say so, but I keep getting an error message saying "The prefix ...
0
votes
2answers
29 views
XML/DTD The content of element type “Movie” must match “(Title,Price)”. [7]
Hoping someone can point out the error here - its only an example piece I am trying, but I just cannot get the XML to parse.....
The DTD looks like this
<?xml version="1.0" encoding="UTF-8"?>
...
3
votes
1answer
53 views
How to validate an XML file against a given DTD file?
I have an XML file, which has a DTD reference in it, like this:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE something SYSTEM "something.dtd">
I'm using a DocumentBuilderFactory:
...
0
votes
1answer
16 views
How to define a child element which only comes as first inside a parent element?
I want to create a document type definition for an XML document.
I have the XML document in the following form:
<parent>
<first>Some PCDATA</first>
<a>The elements ...
0
votes
1answer
27 views
Need help to complete the DTD
Here is the scenario.
http://img6.imageshack.us/img6/4451/capture1iw.png
I have created a dtd for there 4 recipes.But you can see in coffee butterfly cakes and coffee moroccan chicken recipes there ...
0
votes
0answers
55 views
Updating my website for IE10
The following html (taken from Debugger on IE10 on Windows 7)
<td id="newTextIcon">
<a class="Menu" onmouseout="delayhidemenu();" onclick="return dropdownmenu(this, event, menuNewCode, ...
0
votes
1answer
41 views
Validate XML and DTD in browser
I have to make a validation of my XML and DTD, my question is what would happen if I remove my XML tag that is defined as a required field in the DTD?, It will continue displaying the XML in the ...
0
votes
1answer
36 views
How to add external link to XML document (DTD shema)?
Firstly - create xml file contract01.xml and add some common link - &buyer;.
With this aim is another file contr01.dtd. Which is created according DTD Sheme.
And need to change link from ...
0
votes
2answers
38 views
Can an XML document follow both a DTD and an XML Schema?
Is it legal for an XML document to specify that it follows both a DTD and a Schema?
Won't the two conflict with one another?
0
votes
1answer
58 views
Java DOM parser error
Here is my xml file:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE Server SYSTEM "Server.dtd">
<Server>
<MaximumUserNumber>2</MaximumUserNumber>
...
2
votes
1answer
30 views
Is my understanding of DTD correct?
I am self-learning XML and here is the first DTD I wrote. Below is the XML data followed by the DTD.
<?xml version="1.0" encoding="unicode" ?>
<!DOCTYPE people SYSTEM "validator.dtd">
...
1
vote
1answer
60 views
java ignore the DTD for validation if a schema is available
Is this possible to ignore an internal DTD for validation, when a document has XSD schema available?
DTD should be used for validation if no schema specified in the source document.
Here's how I ...
0
votes
1answer
60 views
Receiving XML error when Validating with xmllint
When I use xmllint to check my DTD file I get an error message. Please see the output below. I'm not exactly sure where this has all gone wrong.
book.dtd:1: parser error : StartTag: invalid element ...
1
vote
1answer
38 views
How to use an Element child as an attribute in another element within an XML DTD?
I am almost finished creating a DTD for my XML file but I am not sure how to complete the last part. Here is the XML file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE library ...
1
vote
2answers
84 views
How can I set (or ignore) DTD properties with Powershell?
I've got a powershell script that converts HTML documents to Word, RTF, Text and Word 2010 (.docx). A number of documents are erroring out with the following:
Exception calling "Open" with "1" ...
0
votes
2answers
30 views
Can a DTD attribute be fixed AND required?
Can a DTD attribute be fixed AND required?
<!ATTLIST myTag myAttribute CDATA #FIXED #REQUIRED "some text">
0
votes
0answers
60 views
Third party XML with web DTD transforming to internal DTD
I have a third party XML with web DTD looking like this:
<?xml version="1.0"?>
<!DOCTYPE orders
SYSTEM "http://www.mijnwinkel.nl/DTD/orders_export_v2.dtd">
<orders>
<mail ...
0
votes
0answers
66 views
Eclipse Aptana Javascript custom folding via #region and #endregion
I've read the following similar topics:
Aptana Folding/Collapsing javascript code
Regions/code collapse in JavaScript? (Aptana studio)
The answers however do not satisfy me. I want to decide ...
3
votes
1answer
1k views
Error: SyntaxError: DOM Exception 12 on Tag Creation Using jQuery
I have the following javascript:
var orderItemQuantity = $('<input/>', {
type: 'hidden',
name: 'order_detail[][quantity]',
value: itemQuantity
});
The above javascript throws the ...
0
votes
1answer
41 views
External system entities are not working for me in Chrome, IE or Netscape. What am I doing wrong?
I am attempting to replicate the example given in this answer:
http://stackoverflow.com/a/5127928/356011
that illustrates using external entities to include a fragment of XML file in another XML ...
0
votes
0answers
23 views
dtd error extra content at the end of the file
Cant seem to fix my code. I get this error that says extra content at the end of the file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Catalog [
<!ELEMENT Catalog (Movie+)>
...
0
votes
0answers
36 views
Confluence plugin not able to find .dtd file
I am writing a plugin for our companys Confluence.
In this plugin i need to parse some Confluence Storage Format XML.
Therefor i got the confluence.dtd and some .ent Files from here:
...
0
votes
1answer
23 views
Extract information from DTD
In java i want a list of attributes from an element in a dtd file.
DTD Example:
<!ELEMENT note (to,from,heading,body)>
<!ELEMENT to (#PCDATA)>
<!ELEMENT from (#PCDATA)>
...
0
votes
1answer
25 views
Making an element optional in dtd
If an element is declared like below in the dtd:
<!ELEMENT cite.query (#PCDATA|cite.query | citator.treatment>
I get an error saying cite.query must have citator.treatment then how do I make ...
1
vote
1answer
43 views
using DTD and XML to create bank db
I would like to write an XML file for the following data (represented in tables):
Account table:
account-number balance
100 1000
719 9000
715 -3000
...
0
votes
1answer
29 views
How can I convert this into data-attributes?
I'm confused with data-attributes and my task is to convert this into a html5 valid code:
<xy:search campaign="campaign-name" width="280px" height="32px">
</xy:search>
This is an ...
2
votes
2answers
71 views
XSLT get type of an attribute from DTD
Given a valid entry in the DTD of a document:
<!ATTLIST name
id CDATA #IMPLIED
attribute ENTITY #IMPLIED >
How can I get the type of an attribute ...
3
votes
2answers
384 views
Error 403 (Forbidden) on the DTD while opening a SVG with our application
In our C# application, sometimes the app needs to open a svg file. To do so, the following code is used:
XmlReaderSettings settings = new XmlReaderSettings();
settings.ProhibitDtd = false;
...
0
votes
1answer
65 views
What is a recursive DTD? Example if possible
I am trying to find a recursive DTD and an XML data file that is valid with that. Are the existing validators able to validate a recursive DTD? I want to be able to execute XQueries after to that XML ...
0
votes
0answers
50 views
DTD !ELEMENT Tag length in Oracle
I'm facing a difficulty when trying to import and validate the xml file using DTD in oracle.
The first step to import xml from file into Oracle works fine using PL/SQL store procedure.
Code:
-- sql ...
1
vote
1answer
32 views
DTD - Is there a way to require an attribute with a specific value be present?
I want to do require something like this:
<div type="foobar"></div>
In layman speak I want to require the document to have a foobar type element. More specifically I want to require the ...
-3
votes
1answer
106 views
Where is http://www.w3schools.com/entities.dtd [closed]
In many XML DTD tutorials I've ever read (for example in W3School)there is an example in DTD file as follows:
<!ENTITY copyright SYSTEM "http://www.w3schools.com/entities.dtd">
which ...
0
votes
1answer
294 views
javax.xml.transform.TransformerException: com.sun.org.apache.xml.internal.utils.WrappedRuntimeException: Connection timed out: connect
I am trying to transform a xml using XSLT. My xml has "https" url of dtd file in xml doctype. If I remove this doctype I could able to transform the file but with the doctype I am getting below error.
...
5
votes
3answers
127 views
Can I declare and use DTD entities in App.config?
I have tried to define and use DTD entities inside my App.config. For example:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration [
<!ENTITY dataSource ".\SQLEXPRESS">
...
0
votes
2answers
43 views
dtd file doesn't affect xml file
I've got simple xml document. But I need to use DTD file too.
But when I add it or don't add - it changes nothing. File doesn't affect my xml page.
<?xml version="1.0"?>
<?xml-stylesheet ...





