my dog learned polymorphism
The moose likes XML and Related Technologies and the fly likes what is wrong with this xml code Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » XML and Related Technologies
Reply Bookmark "what is wrong with this xml code" Watch "what is wrong with this xml code" New topic
Author

what is wrong with this xml code

vikas varshney
Greenhorn

Joined: Dec 10, 2011
Posts: 3
<?xml version="1.0" ?>
<!DOCTYPE root[
<!ELEMENT name(age,sex)>
<!ELEMENT age(#PCDATA)>
<!ELEMENT sex(#PCDATA)>
]>
<name>
<age>20</age>
<sex>m</sex>
</name>
William Brogden
Author and all-around good cowpoke
Rancher

Joined: Mar 22, 2000
Posts: 12271
    
    1
XMLSPY found problems with - missing spaces and mismatched root name. Corrected:


Java Resources at www.wbrogden.com
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: what is wrong with this xml code
 
Similar Threads
Overrinding ATTLIST in DTD
how many root element can be defined in one dtd files
validating against a DTD
Multiple ATTLIST declarations for a attribute!
i have written code for dom but output given from the exception caught in the code