D
DolceVita
Hi,
I code in C#
What I try to do is load a xml in string in a IXMLDOMDocument and that
make a validation error:
the attribute xsi:nil on "Date" element is not valid!
What I try to insert is a nillable element my schema in infopath accept
this no problem but if I try to load that in my IXMLDOMDocument I have
an error!
My code:
IXMLDOMDocument AVxml = (IXMLDOMDocument)thisXDocument.CreateDOM();
AVxml.loadXML("<AV xmlns=''
xmlns:tsd='http://namespaces.softwareag.com/tamino/TaminoSchemaDefinition'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<AVel >
<Title>Statutendatum</Title>
<Date xsi:nil='true'/>
</AVel>
</AV>");
What I need to make for that don't make me this error of parsing?
Thanks a lot
I code in C#
What I try to do is load a xml in string in a IXMLDOMDocument and that
make a validation error:
the attribute xsi:nil on "Date" element is not valid!
What I try to insert is a nillable element my schema in infopath accept
this no problem but if I try to load that in my IXMLDOMDocument I have
an error!
My code:
IXMLDOMDocument AVxml = (IXMLDOMDocument)thisXDocument.CreateDOM();
AVxml.loadXML("<AV xmlns=''
xmlns:tsd='http://namespaces.softwareag.com/tamino/TaminoSchemaDefinition'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<AVel >
<Title>Statutendatum</Title>
<Date xsi:nil='true'/>
</AVel>
</AV>");
What I need to make for that don't make me this error of parsing?
Thanks a lot