Mensaje
 
a
18/03/2010 01:08:20
General information
Foro:
ASP.NET
Category:
XML
Environment versions
Environment:
C# 2.0
Miscellaneous
ID de la conversación:
01454990
ID del mensaje:
01455318
Views:
29
As I mentioned in my previous message, I tested specifying default values for other tags in the XML file. And it seems like only "string" type tags work. When I specify in the "int" type tag default="0" and leave the tag empty, I get error.
If anybody has any suggestion to why the default for Int or Boolean do not work, please let me know.

>Dmitry,
>
>Possibly the problem is that the boolean element is not really empty, because it's still being specified, even when there's nothing in the element tag.
>
>IOW, you have in your XML an "empty" tag that looks like this:
>
>
><req_entry></req_entry>
>
>or maybe like this:
>
><req_entry />
>
>
>The point is that the XML shouldn't contain the tag at all. Since you have a schema defined, the DataSet should then put the default in for the missing tag. Where did your XML file come from?
>
>~~Bonnie
>
>
>>Hi,
>>
>>I was wondering if anybody can suggest a way around this issue.
>>
>>I created an XML and a schema file (.XSD). The XSD specifies types of all elements in the XML. One of the elements is boolean. The XSD also specifies the default value as following:
>>
>>
>><xsd:element name="req_entry" default="false" type="xsd:boolean"/>		
>>
>>
>>Everything works well.. unless the value in the element "req_entry" in the XML is empty. Then an exception is thrown saying that "The string '' is not a valid Boolean value". I thought that specifying the default value (false) in the schema file will set the value as false. But it does not. Here is the code of how I am loading the XML:
>>
>>
>>DataSet myDataSet = new DataSet();
>>myDataSet.ReadXmlSchema("MySchema.xsd");
>>myDataSet.ReadXml("MyXml.xml");
>>
>>
>>I would appreciate any suggestions.
"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
Previous
Responder
Mapa
Ver