Re: Determine if xml is malformed



That's correct. I'm really looking at how to easily check if the xml file is
well-formed or valid without parsing and checking it myself.

"Scott M." <s-mar@xxxxxxxxxxxxx> wrote in message
news:O7BK0Pi%23GHA.4524@xxxxxxxxxxxxxxxxxxxxxxx
I don't have the class and method call for you, but what you are talking
about is called checking to see if your XML is "valid". I'm not being
picky here because there is also such a thing as "well-formed" xml. When
you say "mal-formed", someone might think you are talking about
"well-formed", when in this case, you are talking about "valid".


"Glenn Palomar" <glenn.palomar@xxxxxxxxxxxx> wrote in message
news:eGyEw2h%23GHA.4888@xxxxxxxxxxxxxxxxxxxxxxx
Hi,

I have an xml file that looks like below. It contains a DOCTYPE
declaration followed by the data itself.

<!DOCTYPE LIB[

<!ELEMENT LIB (TEST?,OS*)>

<!ELEMENT TEST EMPTY>

<!ELEMENT OS (TEST?,SP*)>

<!ELEMENT SP (TEST?,DEVICE*)>

<!ELEMENT DEVICE (TEST?,VERSION*)>

<!ELEMENT VERSION (TEST?)>

<!ATTLIST LIB version CDATA #REQUIRED>

<!ATTLIST LIB date CDATA #REQUIRED>

<!ATTLIST TEST Type CDATA #REQUIRED>

<!ATTLIST TEST Abc CDATA #IMPLIED>

<!ATTLIST TEST Def CDATA #IMPLIED>

<!ATTLIST OS value CDATA #REQUIRED>

<!ATTLIST SP value CDATA #REQUIRED>

<!ATTLIST DEVICE value CDATA #REQUIRED>

<!ATTLIST VERSION value CDATA #REQUIRED>

]>

<LIB version="$Revision: #742 $" date="$DateTime: 2006/10/27 12:50:54 $"
>

<OS value="Vista">

</OS>

<OS value="XP">

<TEST Type="ddd" Abc="sdf" Def="123" />

<SP value="SP1">

<DEVICE value="somedevice">

<VERSION value="6.14.10.8888">

<TEST Type="sdf" Abc="sdf0" />

</VERSION> </DEVICE> </SP> </TEST> </OS> </LIB>

Are there XML .Net classes that I can use to check if the content is
malformed like how VS2205 intellisense works when you manually enter data
into the file.

For example if an attribute is required in a certain node and you don't
put one, is there a way to detect it using .Net classes? Or I have to do
the work by parsing the file and check the content if it follows the
DOCTYPE declaration.

Any help is always appreciated.

Thanks,
Glenn






.



Relevant Pages

  • Re: TAPI 3.0 call attached data
    ... The format of the Call Attached Data is XML. ... XML file with CallAttchedData represents one or multiple data lists ... Root element is CallAttachedData. ... version CDATA #FIXED "1.0" ...
    (microsoft.public.win32.programmer.tapi)
  • Re: Determine if xml is malformed
    ... here because there is also such a thing as "well-formed" xml. ... <!ATTLIST LIB version CDATA #REQUIRED> ... <!ATTLIST TEST Type CDATA #REQUIRED> ...
    (microsoft.public.dotnet.languages.vb)
  • Re: simplexml and CDATA
    ... element when parsing an xml file or string with simplexml. ... CDATA and what simplexml does. ... In CDATA sections, you can include e.g. ...
    (comp.lang.php)
  • Re: html in xml
    ... I need to contain some html tag, which is the body of an html email, in a ... I would use XML simple to retrieve the content of the xml file. ... If xml simple uses an xml parser, I would just put it into a CDATA element. ...
    (comp.lang.perl.misc)
  • Re: simplexml and CDATA
    ... element when parsing an xml file or string with simplexml. ... CDATA and what simplexml does. ... In CDATA sections, you can include e.g. ...
    (comp.lang.php)

Loading