The dtd-parsing tag has no wiki summary.
5
votes
1answer
2k 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 ’
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 ...
4
votes
1answer
316 views
how do i parse a dtd file
I want to parse a dtd file and use the info I get from that to create some classes. I know that I can convert it to a xsd and then parse it, but I was hoping to avoid that. Everything I find via ...
3
votes
2answers
391 views
Is it possible to autogenerate Java class from DTD?
I have DTD files of web service, now I need to map database to this web services and I need Java classes to create my entities. But doing this manually from DTD files would be very hard and long ...
2
votes
2answers
63 views
Difference between 2 DTD tag
I want to know what is difference between this 2 ELEMENT tag :
<!ELEMENT bank (account*, customer*, depositor*)>
and
<!ELEMENT bank (account | customer | depositor )*>
thanks.
2
votes
1answer
743 views
MalformedURLException with file URI
While executing the following code:
doc = builder.parse(file);
where doc is an instance of org.w3c.dom.Document and builder is an instance of javax.xml.parsers.DocumentBuilder, I'm getting ...
1
vote
2answers
114 views
Xhtml Invalid Characters?
I have made custom xhtml valdidator in .NET(validating through dtd + some extra rules) and I have noticed a discrepancy between my validation and w3c validation.
In my validator I get the following ...
1
vote
2answers
54 views
Character entities in XHTML 1.0 metadata?
For my title, keywords and description fields on a page with an XHTML 1.0 Doctype what is the correct usage for non-ascii characters like – é etcetera? Do crawlers and social media sites ...
1
vote
1answer
164 views
Java: How to use a DTD inside an XML document when processing it with Java?
I have an xml file which I am trying to process with Java. It turned out I needed a DTD for my XML document because I had non-xml standard entities in my xml document.
So my question is how do I ...
1
vote
2answers
172 views
Transforming DTD's with Python
I'm looking for a library to help me parse and transform DTDs using Python. The only thing I have found so far is xmlproc, but that seems ancient and doesn't seem to support serialization of DTDs. ...
0
votes
1answer
30 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
1answer
257 views
How to load an inline DTD for use with XDocument?
I have a question regarding how to include a document type definition into an XML file, or from and XML file, that is being loaded into XDocument, in WP7. I have DTD file that is similar to this:
...
0
votes
1answer
106 views
How to make Sarissa use a DTD when parsing XML?
I am using Sarissa to convert a string of XML into a DOM document object. Everything is working except that Sarissa is completely ignoring my DTD. Deviations from the DTD rules are not noticed, nor do ...
0
votes
1answer
75 views
Can DTD's be written to allow one or more attributes of any name?
I'm writing a DTD for an XML structure that allows for flexible attribute names, like this:
<root_element>
<child_element>
<element_with_attrib iCouldbeAnything="value" ...
0
votes
0answers
67 views
How do I make a more flexible ATTLIST for a Solr query elevation XML file DTD?
I'm writing a DTD for a Solr configuration file queryElevation.xml. The file format itself is simple, here's the example given in the Solr wiki:
<elevate>
<query text="AAA">
<doc ...