Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Problem with XSD Schema when reading XML
Message
 
 
À
20/02/2008 13:19:50
Information générale
Forum:
ASP.NET
Catégorie:
XML
Versions des environnements
Environment:
C# 2.0
Divers
Thread ID:
01294005
Message ID:
01294384
Vues:
12
Bonnie,

Thank you very much for your message. I will try your suggestion. I didn't know of the method .ReadXmlSchema and from the example you posted, it should work. I actually just came back from the customer site installing the program without the schema file because I never could get it to work. But if your suggestion works, it will streamline my code by eliminating a bunch of TRY/CATCH.

Again, thank you.

>Dmitry,
>
>I tried that too and it didn't work. But, what will probably work is to first load the schema, then read the XML ... like this:
>
>
>this.oDataFromXML.ReadXmlSchema("TestDataSet_XSD_Test.xsd");
>this.oDataFromXML.ReadXml("TestDataSet_XSD_Test.xml", XmlReadMode.InferSchema)
>
>
>I didn't test with any defaults or anything though in my .xsd, so I'm not sure if this will work for what you're trying to do, but give it a try.
>
>~~Bonnie
>
>
>
>
>>I thought this thing was working last night and I should have just retired at that point <g>, but now I am having a problem again.
>>
>>Maybe someone sees what I am missing.
>>
>>I am trying to load an XML into a dataset. I created XML, then created XSD Schema. Then I load the XML as following code:
>>
>>
>>DataSet dstEmailList;
>>dstEmailList.ReadXml(@cEmailListXmlFileName);
>>// The cEmailListXmlFileName has a valid XML file name.
>>
>>
>>The problem is that the above code ignores the XSD file completely. I tried to modify the XSD file entering some garbage but I get no error on the ReadXml. The main issue is that the data types are not set correctly in the dataset because they are specified in the XSD file, which is being ignored.
>>
>>Here is the segment of the top of XML file where I specify the XSD:
>>
>>
>><?xml version="1.0" encoding="utf-8" ?>
>><EmailList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>>	xsi:noNamespaceSchemaLocation="EmailList.xsd" >
>>
>>
>>Here is the top of the EmailList.xsd file:
>>
>>
>><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" >
>>	<xsd:element name="EmailList">
>>
>>
>>Do you see anything wrong in the above code or the XML files?
>>
>>Thank you in advance for any help.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform