vote up 0 vote down star

i am creating xml using linq.xml through xelement. my hirerachy is some thing like this

I want this schema 2 str

here is my code for schema generation

 XNamespace Namespace = XNamespace.Get("urn:APISchema.xsd");
 root = new XElement(namepsace + "Foo");
 root.Add(new XElement("version", "2"));
 root.Add(new XElement("foochild", "str"));

but the resultant schema is

<Foo xlmns="urn:APISchema.xsd">
<version xlmns="">2</version>
<foochild xlmns="">str</foochild>
</Foo>

any idea why such problem why it is appending xlmn to root childs...?

flag

4 Answers

vote up 1 vote down check
root.Add(new XElement(namespace + "foo", "str"))

Edit: upon further SO searching, this question seems to be addressing the same issue.

link|flag
BTW, "Namespace" is a bad variable name :) – Richard Morgan May 22 at 18:54
@root.Add(new XElement(namespace + "foo", "str")) no its not producing required result.... as my xml is far more long.. regarding namespace yep! i agree its bad variable name :) but its just typo for code sample above. – Usman Masood May 22 at 19:00
1  
Every element has a namespace, so when you don't use XNamespace in front of the element name, the XElement constructor assumes you mean to override the parent namespace with "". In short, you need to add the namespace to everything... looking to the right in the SO Related box, this link might help. stackoverflow.com/questions/477962/… – Richard Morgan May 22 at 19:25
this seems odd to me that i need to add namespace to every bit and piece... anyway thanks. – Usman Masood May 23 at 4:53
vote up 0 vote down
XNamespace myNamespace = XNamespace.Get("urn:APISchema.xsd");
root = new XElement(myNamespace + "Foo",
    new XElement(myNamespace + "version", "2"),
    new XElement(myNamespace + "foochild", "str"));

Give that a shot, it should do the trick for you.

link|flag
vote up 0 vote down
XNamespace myNameSpace = XNamespace.Get("urn:APISchema.xsd");
        root = new XElement(myNameSpace + "Foo",
                                new XElement(myNameSpace + "foo", "str"));

IMO This is easier to read. But as Richard stated you just need to add the namespace.

link|flag
David... the sample xml i gave is just for example... my actual xml is containing lot more nested elements and its kinda dynamic.. so i can't use this... what i am doig is creating a root element with namespace and than adding elements to it... the only problem is its displaying xmlns="" to root level childs too which i don't want... – Usman Masood May 22 at 19:07
How are you buidling your dynamic XML? You do have to add the namespace to each of the child nodes as you have done in your root, if you could post a sample of how your building the dynamic it might help. – David Yancey May 22 at 19:37
vote up 0 vote down

You added to the element 'usr:APISchema.xsd::Foo' two elements w/o a namespace. The resulted XML is the expected one. You must add the namespace to each added element: root.Add(new XElement(namespace + "foochild").

link|flag
i just want to add namespace to root element.. could you please provide a little more detail. – Usman Masood May 22 at 18:59

Your Answer

Get an OpenID
or

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