Posted on 2009/01/09 18:10 | Voice Portal/Dialog Designer



"Well Formed" XML과 DTD에 대한 이야기다.
XML with correct syntax is "Well Formed" XML.
XML validated against a DTD is "Valid" XML.

Well Formed XML documents
"Well Formed" XML document는 correct XML syntax를 가진다.

Syntax rules
- XML document는 root element를 가진다.
- XML elements는 closing tag가 있어야 한다.
- XML tags는 case sensitive 하다.
- XML elements는 properly nested이어야 한다.
- XML attribute values는 quoted 되어야 한다.

<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>


Valid XML Documents
"Valid" XML document는 Document Type Definition(DTD)의 rules을 따르는 "Well Formed" XML documents를 말한다.

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE note SYSTEM "Note.dtd">
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>


XML DTD
DTD의 목적은 XML문서의 구조를 정의하기 위한 것이다.

<!DOCTYPE note [
  <!ELEMENT note (to,from,heading,body)>
  <!ELEMENT to      (#PCDATA)>
  <!ELEMENT from    (#PCDATA)>
  <!ELEMENT heading (#PCDATA)>
  <!ELEMENT body    (#PCDATA)>
]>

XML Schema
W3C supports an XML based alternative to DTD called XML Schema

<xs:element name="note"><xs:complexType>
  <xs:sequence>
    <xs:element name="to"      type="xs:string"/>
    <xs:element name="from"    type="xs:string"/>
    <xs:element name="heading" type="xs:string"/>
    <xs:element name="body"    type="xs:string"/>
  </xs:sequence>
</xs:complexType>
</xs:element>

A General XML Validator
XML files의 문법 체크를 도와주기 위하여, XML validator가 있다.
자신이 작성한 XML 소스나 XML파일의 validation을 확인 할 수 있다.


참고 사이트 : w3school












 
트랙백 주소 :: http://www.voiceportal.co.kr/505/trackback/
profile image

To be able to do what you want is the freedom, to enjoy what you do is the happiness.

  1. imhotk의 생각

    Tracked from imhotk's me2DAY 2009/01/09 18:11

    XML Validation “Well Formed” XML과 DTD에 대한 이야기다. XML with correct syntax is “Well Formed” XML. X..

  2. well-으로 이어질 블로그링

    Tracked from blogring.org 2009/01/10 17:32

    well-에 관한블로그를 요약한 것입니다.

  3. 한국어 CSS Validation Service (Test Site)

    Tracked from 웹 뒤에 숨은 Web 2009/01/14 22:49

    한국어로 된 CSS Validation Service를 사용할 수 있게 되었습니다. 한국어로 번역된 CSS Validation Service 현재는 테스트 사이트로 운영중이고, 번역 오류 등 피드백을 받고 있습니다. 오류 수정 및 의견은 CDK(CSS Design Korea) 한국어 CSS Validation Service 소개글에 의견(댓글)으로 남겨 주시면 CDK에 소개를 해주신 신현석님께서 역자분께 전달해 드릴 수 있다고 합니다. 분석 결과를..

  4. Buy cheap phentermine cod.

    Tracked from Cheap phentermine diet pill. 2010/02/27 21:01

    관리자의 승인을 기다리고 있는 트랙백입니다

옵션
댓글 달기

블로그 이미지
Blog Image
김태정, All on Voiceportal

Voice portal에 대한 정보 공유.

by 김태정
프로필 버튼
프로필 상세보기
블로그롤 정보

Calendar*
«   2010/03   »
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31      

Counter*
Total
556032
Today
77
Yesterday
1320