vote up 1 vote down star
2

Hi,

I'm trying to generate XML like this:

<?xml version="1.0"?>
<!DOCTYPE APIRequest SYSTEM
"https://url">
<APIRequest>
  <Head>
      <Key>123</Key>
  </Head>
  <ObjectClass>
    <Field>Value</Field
  </ObjectClass>
</APIRequest>

I have a class (ObjectClass) decorated with XMLSerialization attributes like this:

[XmlRoot("ObjectClass")]
public class ObjectClass
{
    [XmlElement("Field")]
    public string Field { get; set; }
}

And my really hacky intuitive thought to just get this working is to do this when I serialize:

ObjectClass inst = new ObjectClass();
XmlSerializer serializer = new XmlSerializer(inst.GetType(), "");

StringWriter w = new StringWriter();
w.WriteLine(@"<?xml version=""1.0""?>");
w.WriteLine("<!DOCTYPE APIRequest SYSTEM");
w.WriteLine(@"""https://url"">");
w.WriteLine("<APIRequest>");
w.WriteLine("<Head>");
w.WriteLine(@"<Field>Value</Field>");
w.WriteLine(@"</Head>");

XmlSerializerNamespaces ns = new XmlSerializerNamespaces();
ns.Add("", ""); 
serializer.Serialize(w, inst, ns);

w.WriteLine("</APIRequest>");

However, this generates XML like this:

<?xml version="1.0"?>
<!DOCTYPE APIRequest SYSTEM
"https://url">
<APIRequest>
  <Head>
      <Key>123</Key>
  </Head>
  <?xml version="1.0" encoding="utf-16"?>
  <ObjectClass>
    <Field>Value</Field>
  </ObjectClass>
</APIRequest>

i.e. the serialize statement is automatically adding a <?xml root element.

I know I'm attacking this wrong so can someone point me in the right direction?

As a note, I don't think it will make practical sense to just make an APIRequest class with an ObjectClass in it (because there are say 20 different types of ObjectClass that each needs this boilerplate around them) but correct me if I'm wrong.

flag

Automatically? You seem to be adding the declaration manually: w.WriteLine(@"<?xml version=""1.0""?>");. – Cerebrus Jun 1 at 5:47
1  
@Cerebrus, he does not want the inner <?xml?> inside the <APIRequest> tag. – Simon Svensson Jun 1 at 5:55
Yep that's it thanks for clearing that up :-) – Graphain Jun 1 at 6:05
Ahhh, yes, thanks. This indicates that I need another coffee. ;-) – Cerebrus Jun 1 at 6:13

5 Answers

vote up 10 vote down check

Never build xml using string concatenation. It's evil.

Output:

<?xml version="1.0" encoding="utf-16"?>
<!DOCTYPE APIRequest SYSTEM "https://url">
<APIRequest>
  <Head>
    <Key>123</Key>
  </Head>
  <ObjectClass>
    <Field>Value</Field>
  </ObjectClass>
</APIRequest>

Code:

using System;
using System.Diagnostics;
using System.Text;
using System.Xml;
using System.Xml.Serialization;

public static class Program {
    public static void Main() {
        var obj = new ObjectClass { Field = "Value" };

        var settings = new XmlWriterSettings {
            Indent = true
        };

        var xml = new StringBuilder();
        using (var writer = XmlWriter.Create(xml, settings)) {
            Debug.Assert(writer != null);

            writer.WriteDocType("APIRequest", null, "https://url", null);
            writer.WriteStartElement("APIRequest");
            writer.WriteStartElement("Head");
            writer.WriteElementString("Key", "123");
            writer.WriteEndElement(); // </Head>

            var nsSerializer = new XmlSerializerNamespaces();
            nsSerializer.Add("", "");

            var xmlSerializer = new XmlSerializer(obj.GetType(), "");
            xmlSerializer.Serialize(writer, obj, nsSerializer);

            writer.WriteEndElement(); // </APIRequest>
        }

        Console.WriteLine(xml.ToString());
        Console.ReadLine();
    }
}

[XmlRoot("ObjectClass")]
public class ObjectClass {
    [XmlElement("Field")]
    public string Field { get; set; }
}
link|flag
Thanks, I knew the string concat was bad but I thought it would at least work - I guess not! Thanks :-) – Graphain Jun 1 at 6:01
Just checked - thanks heaps! – Graphain Jun 1 at 6:05
If I could vote this up more/give a bounty tip easily I would :-) – Graphain Jun 1 at 6:06
vote up 0 vote down

Scott Hanselman's got a good post on this. I used Kzu's example (which Scott's blog points to) a while back for the same thing and it worked great.

link|flag
@Tone: kind of a meee-tooo? It's just what Doug D said a month ago. -1. – John Saunders Jul 31 at 1:50
vote up 0 vote down

Derive your own XmlTextWriter to omit the XML declaration.

Private Class MyXmlTextWriter
Inherits XmlTextWriter
Sub New(ByVal sb As StringBuilder)
	MyBase.New(New StringWriter(sb))
End Sub
Sub New(ByVal w As TextWriter)
	MyBase.New(w)
End Sub

Public Overrides Sub WriteStartDocument()
	' Don't emit XML declaration
End Sub
Public Overrides Sub WriteStartDocument(ByVal standalone As Boolean)
	' Don't emit XML declaration
End Sub
End Class

Call Serialize with an instance of the derived MyXmlTextWriter.

Dim tw As New MyXmlTextWriter(sb)
Dim objXmlSerializer As New XmlSerializer(type)
objXmlSerializer.Serialize(tw, obj)
link|flag
@Doug D: I have trouble believing you consider this to be a better solution. – John Saunders Jul 31 at 1:48
vote up 0 vote down

This link: http://www.eggheadcafe.com/conversation.aspx?messageid=31106520&threadid=31106516 talks about the same issue with the best conlusion being manual removal of the header so better solutions are welcome!

link|flag
vote up 1 vote down

try DataContractSerializer.

link|flag
Thanks, any ideas for .NET 2.0 though? – Graphain Jun 1 at 5:43
@ArsenMkrt: how would that have helped? -1. – John Saunders Jul 31 at 1:47
@John DataContractSeializer doesn't create header <?xml..., so he could serialize each object by this class – ArsenMkrt Jul 31 at 3:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.