Tagged Questions

1
vote
2answers
19 views

DTD element type problem

I'm constructing DTD which has 'fuel_system' element.I want to restrict the text between tag.It must be only carbureted or fuel-injected.How can I do this ? I don't mention someth …
0
votes
1answer
23 views

DTD flash open source engine?

DTD flash flex action script open source engine? I need some open source engine for creating some games like Desktop Tower Defense games Does it exist?) So… What do I need? I ne …
1
vote
3answers
151 views

IE cannot find the W3C XHTML DTD (Error 2146697204)

I have a template that starts every page like this: <?xml version="1.0" encoding="utf-8"?> <!-- blah blah--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transition …
0
votes
1answer
32 views

how to represent it in dtd ?

I have two element action and guid. guid is a required field when action is add. but when action is del it will not appear in file. How to represent this in dtd ?
0
votes
1answer
27 views

When should a DTD be made public

When creating a custom external DTD you have the choice of making it private or public. When should a DTD be made public? In this case I'm creating a DTD for an xml file which wil …
0
votes
3answers
176 views

Java 5 Does not validate DTD

I am working with a vendor applet, The applet works fine with JRE 1.4.2_X and 1.6.X but fails on every version of 1.5.X. Running with 1.6 is not an option due to another applicatio …
1
vote
2answers
57 views

DTD ATTLIST Range of Numbers

Hi is it possible to only allow a range of numbers in an ATTLIST? I know you can have an enumeration of a set as follows: But it is possible to have 0 - 100, without having to …
0
votes
2answers
35 views

Localization of HTML documents?

XML documents can be localized by referring to an external DTD document that contains the translations. For example in Mozilla XULRunner it looks like this: <?xml version="1.0" …
1
vote
1answer
30 views

How to define elements in a DTD which share the declaration?

How can I define elements in a DTD which share the same declaration? I tried this which leads to a syntax error: <!ELEMENT (expression|condition) (code-text+)> Where expr …
1
vote
3answers
234 views

Problem validation a XML file with a local DTD file in C#

I'm triying to validate a XML file. I'm using this code XmlReaderSettings settings = new XmlReaderSettings(); settings.ProhibitDtd = false; settings.ValidationType = ValidationTyp …
1
vote
2answers
91 views

How do I validate an XML document against a DTD in C#?

I don't want to do anything fancy, I just want to make sure a document is valid, and print an error message if it is not. Google pointed me to this, but it seems XmlValidatingReade …
1
vote
1answer
29 views

Forward Backward Rule Xml DTD

I want to model a simple (IF Then) rule using DTD. This is what I have come up with: <!ELEMENT forward ((rule | fact)*)> <!ELEMENT rule (if, then)> <!E …
1
vote
2answers
53 views

Element Declaration: Defining content as #PCDATA and one occurence of child element

In the xml spec, it says: [Definition: An element type has mixed content when elements of that type may contain character data, optionally interspersed with child elements.] In th …
1
vote
2answers
65 views

How to validate REST request?

Given this service: POST /hotel HTTP/1.1 <hotel> <a>aaa</a> <b>bbb</b> <c>ccc</c> </hotel> HTTP/1.1 201 CREATED Location: / …
0
votes
1answer
62 views

How to create XML file that uses two DTDs?

We're creating a REST service where the client will send XML containing a financial portfolio. The portfolio XML will use a published standard XML DTD. We would like to add a few …

1 2 3 4 5 8 next
15 30 50 per page