I use the following code to create the XML from a class object
Dim serialize As New
System.Xml.Seri alization.XmlSe rializer(GetTyp e(XYZObject))
serialize.Seria lize(obWtiter, obObject)
But I need the following ' xsi:noNamespace SchemaLocation= "obj-envelope.xsd"'
to be included in the in the main opening tag
How can I cause the XmlSerializer to do that?
Thank you,
Samuel
Comment