vote up 2 vote down star

Hi:

This feed (snippit of it) needs to look exactly like this:

<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
                xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">

what do I add to this C# code to add that extra xmlns, xsi junk:

writer.WriteStartDocument();
writer.WriteStartElement("AmazonEnvelope");

this feed is rejected without it--

Thanks!!

flag

33% accept rate
You haven't mentioned which programming language you're using. One assumes C# because WriteStartDocument is a method on XmlWriter, but that's not a guarantee. – Randolpho May 29 at 21:01
It says "C#" in the middle of the line just below the XML fragment..... – marc_s May 29 at 21:11

2 Answers

vote up 4 vote down

Try this:

writer.WriteStartElement("AmazonEnvelope");
writer.WriteAttributeString(
  "xmlns", "xsi", null, "http://www.w3.org/2001/XMLSchema-instance");
writer.WriteAttributeString(
  "xsi", "noNamespaceSchemaLocation", null, "amzn-envelope.xsd");
...
writer.WriteEndElement();
link|flag
wow, i learn so much here!! I'm moving along now... amazon accepted the feed... touchy api!! – Scott Kramer May 29 at 21:42
vote up 3 vote down

Is .NET 3.5 an option?

XNamespace ns = "http://www.w3.org/2001/XMLSchema-instance";

string s = new XElement("AmazonEnvelope",
    new XAttribute(XNamespace.Xmlns + "xsi", ns),
    new XAttribute(ns + "noNamespaceSchemaLocation", "amzn-envelope.xsd")
).ToString();


or with XmlWriter:

const string ns = "http://www.w3.org/2001/XMLSchema-instance";
writer.WriteStartDocument();
writer.WriteStartElement("AmazonEnvelope");
writer.WriteAttributeString("xmlns", "xsi", "", ns);
writer.WriteAttributeString("xsi", "noNamespaceSchemaLocation",
      ns, "mzn-envelope.xsd");
writer.WriteEndDocument();
link|flag
alot of code based on XmlWriter, so not an option at the moment... – Scott Kramer May 29 at 21:32
cool, looks good – Scott Kramer May 29 at 21:52

Your Answer

Get an OpenID
or

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