An XML Document Type Definition(DTD) is a text file which lists the element and attribute mappings as well as hierarchy rules used to validate an XML dialect.
1
vote
1answer
13 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
23 views
Problems with DXL validation
mybe SomeOne can help me, I has folder with dxl files and dtd, when i try to validate file
SchemaFactory schemaFactory =SchemaFactory.newInstance("http://www.w3.org/2001/XMLSchema");
Schema ...
0
votes
0answers
7 views
Internet Explorer returns DTD is prohibited
I'm trying to create custom RSS feed for users locally. I created a custom DTD (referring to w3resources :-/) and tested. After some debugging, the RSS is now working fine in FireFox and Opera. Chrome ...
1
vote
2answers
34 views
ERROR: Element is not valid for content model
HELP: the validation error: Element 'ingred' is not valid for content model: '(frontmatter,ingred,prep,comment)' [xml]
Can someone please tell me what I am missing?
<?xml version="1.0" ...
0
votes
0answers
27 views
DTD Element Assistance
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)+>
...
2
votes
3answers
47 views
Are XSD always generated using third-party tools?
I am a beginner with XML. I can do DTD fairly well.
While learning about XSD and how to generate it, I found that all the tutorials available on Google and those on YouTube create XSD using ...
0
votes
1answer
21 views
DTD Qualifiers - difference between placing them inside or outside the parentheses
I'm a writing a DTD for an XML document that has <students> as its root element and may contain 0+ <student> elements.
What is the difference between declaring
<!ELEMENT students ...
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
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
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 ...
-2
votes
2answers
344 views
The markup declarations contained or pointed to by the document type declaration must be well-formed
I have written one XML, but in that XMLon very first line I am getting an error
The markup declarations contained or pointed to by the document type
declaration must be well-formed
below is ...
0
votes
1answer
11 views
In My XML i'm getting error as “The markup in the document following the root element must be well-formed. ”
i've written an xslt for converting an xml file into a html file which is working as expected if i takeout the DTD part(commenting it out).
Below is my DTD. can you please tell me why am i getting ...
0
votes
1answer
38 views
How does one copy document specific DTD during XSL transformation?
I have the following document specific DTD at the top of an XML file created by our editing software:
<!DOCTYPE front SYSTEM "file:///M:/Library/AMH-Paed.dtd" [
<!NOTATION cgm PUBLIC "" >
...
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 ...
1
vote
0answers
33 views
How do I add extra DTD declarations with java DOM
My program is supposed to read an XML doc, edit it, and export it again, but when it does, it exports it without the declarations I originally included:
<!DOCTYPE touchégg [
<!ELEMENT touchégg ...
0
votes
0answers
32 views
Lexer for extracting tokens from a xml document
I have to defne an input file for JFlex. This file generates a lexer that identifies
and prints on standard output the tokens of a XML rule that conforms to a given DTD
: the elements and their ...
1
vote
0answers
73 views
parser.setFeature vs parser.setValidating
What is the diffrence between the following:
parser.setFeature("http://xml.org/sax/features/validation",true);
and
parser.setFeature("http://apache.org/xml/features/validation/schema",true);
and
...
0
votes
1answer
59 views
XML DTD error on closing tags - validation error
I'm using http://www.xmlvalidation.com/index.php to validate my DTD but it is producing errors on the XML closing tags.
XML:
1 <?xml version="1.0" encoding="utf-8" ?>
2 <!DOCTYPE books ...
0
votes
1answer
174 views
Local XML validation with DTD or XSD using a relative path?
An XML file can be defined and validated with an Document Type Description (DTD) or XML Schema (xsd) as follows:
<?xml version='1.0' encoding='UTF-8'?>
<annotation ...
0
votes
1answer
353 views
How to use DOCTYPE in Spring XML file
Most of the time we do not declare DOCTYPE in Spring.
But I want to declare a DOCTYPE in my XML context file so that I can use ENTITY in my xml file.
For example:
<!DOCTYPE beans PUBLIC ...
2
votes
3answers
193 views
How to use DTD ENTITY external reference in log4j.xml
I tried to use entities from external dtd file.
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"
[<!ENTITY logHome SYSTEM "log4j-entity.dtd">]
...
1
vote
1answer
26 views
Additional tag is coming in XML, which is not declared in DTD
I am new to XML. I was trying with this XML :
<?xml version="1.0"?>
<!DOCTYPE person [
<!ELEMENT first_name (#PCDATA)>
<!ELEMENT last_name (#PCDATA)>
<!ELEMENT ...
0
votes
1answer
70 views
Exact dtd URI used in xml file for validation
I have query related to xml validation.When we write below code for xml validation
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
...
0
votes
3answers
159 views
DTD XML Not Deterministic error
I was writing DTD for the XML given here. http://s3.amazonaws.com/spark-public/db/docs/courses-ID.xml
I could not figure out how to write the Department Element.
Here is my DTD code.
<!ELEMENT ...
1
vote
1answer
200 views
Validate xml via dtd, different directory for dtd
I am trying to validate an xml file via a .dtd. I have write this validator:
public bool Validation(XmlDocument xmlDoc)
{
var xml = XmldocToString(xmlDoc);
var r = new ...
0
votes
2answers
71 views
Why doesn't my code generate in the web browser? XML, DTD, CSS
It begins to print everything up till 29d 18h 46m and then it stops. idk why. O.o
Can someone tell me why it prints up until that point and then stops?
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
1answer
88 views
Why does this DTD fail when its almost identical twin doesn't?
Given this snippet of an XMLfile:
<Active>
<SystemName Permissions="RW" Datatype="STRING" Case="MIXED_RESPECT">NASCENT Default System Name</SystemName>
<ModelNumber ...
0
votes
1answer
118 views
Specify a multi-word enumeration value in an XML/DTD
When specifying a list of enumeration values for a DTD attribute definition, is it possible to use multi-word values?
<!ATTLIST SystemName Case ("MIXED RESPECT"|"MIXED IGNORE"|"LOWER ...
0
votes
0answers
51 views
php5 domxml: how to prevent http DTD queries?
When i parse XML document php always get dtd file from "http://hans-moleman.w3.org/" ( tcpdump show queries ).
I am download some DTD in /etc/xml and add new entries for /etc/xml/catalog, but its ...
0
votes
1answer
119 views
xmlReadFile() (C++ Ubuntu) core dumps on broken XML
I am using the libxml2 libraries to parse XML sent to me (my program) as a file from another program. With care that should mean that I never get bad XML, but twice already I've made hand tweaks that ...
0
votes
1answer
228 views
Syntax error in urlrewrite.xml configuration file
I have an error I can't seem to resolve with my Tuckey urlrewrite configuration file in Eclipse. I've narrowed the offending rules down to these entries:
<?xml version="1.0" encoding="UTF-8"?>
...
2
votes
2answers
258 views
XML validation against DTD
I have this XML along with an embedded DTD:
<?xml version="1.0" ?>
<!DOCTYPE customers [
<!ELEMENT customers (name,age,roll,sex)>
<!ELEMENT name (#CDATA)>
<!ELEMENT age ...
0
votes
2answers
240 views
How to add one more dtd to my Spring configration file?
I have use a .dtd to my applicationContext.xml, but now i want to use Spring's AOP based on annotation. I've been told to add a in my applicationContext.xml.
<!DOCTYPE beans PUBLIC ...
1
vote
1answer
118 views
XML DTD Specify a cdata/text pattern for attribute
Is there a way, in a DTD, to specify a "pattern" for a given attribute.
Example: I want to have an attribute called "position" which is a string of the form "X,Y".
I would like to have something in ...
1
vote
2answers
103 views
Add new tags to DITA file
I'm starting with DITA technology. I have read about the basic structure of a DITA document. Now, I doubt arises as follows:
How can I add my own tags to a DITA document?, Should I create a .DTD file ...
1
vote
2answers
41 views
DTD - definition or description?
I've come across "Document Type Defintion" and "Document Type Description" for the meaning of DTD, such as DocBook DTD. Are they interchangable or is one incorrect?
1
vote
2answers
821 views
C++ Builder XE2, TXMLDocument 'DTD is prohibited'
When I try to read an XML document (eagle file) with an DTD I get the error:
Project xx raised exception class EDOMParserError with message 'DTD is
prohibited'
The XML header looks like this:
...
2
votes
4answers
260 views
Making elements always contain only CDATA (embedding XML examples in XML document)
I'm preparing a Pressentation on XML and XSLT for my universities computing club, I'm no expert but I'm better than anyone else, and it's just a 1 hour primer.
So for my slides I figured I would use a ...
0
votes
1answer
160 views
XML won't get validated using two (2) tables in xml - two XMLs into one ?
Given the next XML code :
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hotels SYSTEM "travel.dtd">
<hotels>
<general>
<city>MoscowCity</city>
...
0
votes
1answer
50 views
Is it possible to declare in the same XML file , the same field , in a different table ?
Given the DTD file below :
!ELEMENT hotels (address+)>
<!ELEMENT address (city,street,phone,hotelDetails)>
<!ELEMENT hotelDetails (hotel_code,hotel_rank,hotel_name)>
<!ELEMENT ...
1
vote
1answer
70 views
Insert data that stored in a table , into XMLspy? (for running diagnostics on the data ,later on)
I have a lot of tables of data , and I need to run diagnostics on the tables (their data) so , I want to insert the data into XMLspy , and generate xml file for the tables . Is it possible ? maybe ...
1
vote
1answer
1k views
Why am I given the error “StartTag: Invalid element name” when parsing this XML file with a DTD
The document basically has "catalog" as the root tag with child tags of "movie" followed by one or more "actor". Each of these child tags further contains more child tags. I was supposed to make a DTD ...
0
votes
1answer
67 views
Knowing if the corresponding XML is correct with the Given DTD script
How would I know if The XML that I created follows the rule that is in my DTD?
here's my XML
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE HW SYSTEM "HW.dtd">
<A>
AA = ...
0
votes
1answer
84 views
DTD Definition two children with the same childs
I got three elements defined in a dtd which have the same child element names. What is the correct syntax for:
for all children having the same definition
elements having different children ...
2
votes
1answer
506 views
xmllint validation error for ID attribute
I'm trying to validate this XML document:
<?xml version="1.0"?>
<CONTACTS>
<CONTACT CONTACT_NUM = "1">
<NAME>Alice</NAME>
</CONTACT>
<CONTACT ...
0
votes
1answer
206 views
entity in external xml dtd
I am trying to put ENTITY in externaL DTD file but its not showing values of ENTITY in XML when it is parsed.
But its working when I combine the XML and DTD in one file below is my code for XML and ...
0
votes
3answers
42 views
Is this XML block valid or not?
Is that my XML code valid or not.
<?xml version="1.0"?>
<!DOCTYPE nahrung [
<!ELEMENT nahrung (obst|gemuese|sonstiges)+>
<!ELEMENT obst (#PCDATA)>
<!ELEMENT ...
2
votes
2answers
2k views
How do I define HTML entity references inside a valid XML document?
I need to be able to reference named HTML entities like • instead of the Unicode alternative • in an XML document. I have control over some parts of the XML document, such as ...
2
votes
1answer
267 views
When to use DTD vs XSD for validation
I'm bit confused on which scenario is best to use DTD vs XSD and vice versa. I have a requirement to validate cXML Purchase Order file. If anyone could please help, will be appreciated.
3
votes
1answer
185 views
Can I reference an external DTD for the structure of an ELEMENT in a DTD?
Can I define a DTD such that elements in it have their structures defined in an external DTD?
I mean something like the following (this is an example that I know is invalid in several ways, but which ...




