Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Problem with XSD Schema when reading XML
Message
From
20/02/2008 13:19:50
 
General information
Forum:
ASP.NET
Category:
XML
Environment versions
Environment:
C# 2.0
Miscellaneous
Thread ID:
01294005
Message ID:
01294360
Views:
17
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.
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform