i\'m moving from one namespace to another in a XML and i have been facing problems with xsi:type attributes for typed elements.
I\'m trying to marshal a sub-class as super-class with xsi:type information as the XML Root element attributes.
Using Xerces SAX parser I try to retrieve all elements and their attributes of this XML file: -------------- Begin XML file to parse ---------------->
I have a WCF client that needs to generate a request containing this XML fragment : <reason xsi:nil=\"true\" nullFlavor=\"NA\" typeCode=\"RSON\" />
do you know if there\'s a difference between these tags on XML/XSD? <a_element /> and <a_element xsi:nil=\"true\"/>
XmlSerializer serializer = new XmlSerializer(typeof(IxComment)); System.IO.StringWriter aStream = new System.IO.StringWriter();
I have a form where user need to enter their particular details. Besides that user also need to upload their photo using the same form. I have tried to used examples from the internet on how to do the