Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an XML document from which I need to extract a nodeset and add a namespace. So, from a doc I extract this:

<List>
  <ListItem>
    <SomeData>Here is some text</SomeText>
  </ListItem>
  <ListItem>
    <SomeData>Here is some more text</SomeText>
  </ListItem>
</List>

and need to create this:

<my:List xmlsns:my='http://SomeNamespace.org>
  <my:ListItem>
    <my:SomeData>Here is some text</my:SomeText>
  </my:ListItem>
  <my:ListItem>
    <SomeData>Here is some more text</my:SomeText>
  </my:ListItem>
</my:List>

There will be a variable quantity of list items and the elements might change and have different name, so I need a generic solution. Is there an easy way to do that in .Net C#?

share|improve this question

2 Answers

up vote 3 down vote accepted

You can use XSLT for this. Check out this question: http://stackoverflow.com/questions/144713/add-a-namespace-to-elements-using-xslt

Use the .net class XslTransform to do this in code: http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=63

share|improve this answer
Thanks. Used a mixture of these links and this: stackoverflow.com/questions/1778299/… Works fine. – Graeme Feb 8 '10 at 15:29

Use http://msdn.microsoft.com/en-us/library/system.xml.xmlnamespacemanager.addnamespace.aspx

share|improve this answer
Don't quite see this - how to add the namespace prefix to each element this way? – Graeme Feb 8 '10 at 13:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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