• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

DTD not well formed

 
Ranch Hand
Posts: 469
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<?xml version="1.0" encoding="UTF-8"?>
<!--DTD generated by XMLSPY v2004 rel. 4 U (http://www.xmlspy.com)-->
<!ELEMENT TABLES (TABLE*)>
<!ELEMENT TABLE (COLUMN)>
<!ATTLIST TABLE
name ID #REQUIRED
>

<!ELEMENT COLUMN(#PCDATA)>
<!ATTLIST COLUMN
ID ID #REQUIRED
>

In the above code I get the following error
The file is not well formed.Whitespace(blank,tab,CR,LF)expected

I am unable to locate problem.What might be causing this error?

Thanks in advance

Veena
[ October 22, 2004: Message edited by: Veena Point ]
 
Ranch Hand
Posts: 94
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Veena Point:
<?xml version="1.0" encoding="UTF-8"?>
<!--DTD generated by XMLSPY v2004 rel. 4 U (http://www.xmlspy.com)-->
<!ELEMENT TABLES (TABLE*)>
<!ELEMENT TABLE (COLUMN)>
<!ATTLIST TABLE
name ID #REQUIRED
>

<!ELEMENT COLUMN(#PCDATA)>
<!ATTLIST COLUMN
ID ID #REQUIRED
>

In the above code I get the following error
The file is not well formed.Whitespace(blank,tab,CR,LF)expected

I am unable to located problem.What might be the problem?

Thanks in advance

Veena



need a space as follow ELEMENT COLUMN (#PCDATA)
 
Veena Pointi
Ranch Hand
Posts: 469
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks a lot.
 
reply
    Bookmark Topic Watch Topic
  • New Topic