Add XML namespace to existing document in ruby - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T03:09:17Zhttp://stackoverflow.com/feeds/question/623255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/623255/add-xml-namespace-to-existing-document-in-ruby0Add XML namespace to existing document in rubyJoseph Holsten2009-03-08T08:04:28Z2009-08-09T14:00:03Z
<p>I need to add an element to an existing XML document which uses a namespace that doesn't exist in the original. How do I do this?</p>
<p>Ideally I would like to use REXML for portability, but any common XML library would be okay. An ideal solution would be smart about namespace collisions.</p>
<p>I have an xml document which looks like this:</p>
<pre><code><xrds:XRDS
xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)">
<XRD>
<Service>
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI>http://provider.openid.example/server/2.0</URI>
</Service>
</XRD>
</xrds:XRDS>
</code></pre>
<p>and add:</p>
<pre><code><Service
xmlns="xri://$xrd*($v*2.0)"
xmlns:openid="http://openid.net/xmlns/1.0">
<Type>http://openid.net/signon/1.0</Type>
<URI>http://provider.openid.example/server/1.0</URI>
<openid:Delegate>http://example.openid.example</openid:Delegate>
</Service>
</code></pre>
<p>Yielding something equivalent to:</p>
<pre><code><xrds:XRDS
xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)"
xmlns:openid="http://openid.net/xmlns/1.0">
<XRD>
<Service>
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI>http://provider.openid.example/server/2.0</URI>
</Service>
<Service>
<Type>http://openid.net/signon/1.0</Type>
<URI>http://provider.openid.example/server/1.0</URI>
<openid:Delegate>http://example.openid.example</openid:Delegate>
</Service>
</XRD>
</xrds:XRDS>
</code></pre>
http://stackoverflow.com/questions/623255/add-xml-namespace-to-existing-document-in-ruby/623272#6232720Answer by Joseph Holsten for Add XML namespace to existing document in rubyJoseph Holsten2009-03-08T08:32:45Z2009-03-08T08:32:45Z<p>It turns out this is a dumb question. If both the initial document and the element to be added are internally consistent, then namespaces are okay. So this is equivalent to the final document:</p>
<pre><code><xrds:XRDS
xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)">
<XRD>
<Service>
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI>http://provider.openid.example/server/2.0</URI>
</Service>
<Service
xmlns:openid="http://openid.net/xmlns/1.0"
xmlns="xri://$xrd*($v*2.0)">
<Type>http://openid.net/signon/1.0</Type>
<URI>http://provider.openid.example/server/1.0</URI>
<openid:Delegate>http://example.openid.example</openid:Delegate>
</Service>
</XRD>
</xrds:XRDS>
</code></pre>
<p>It is important that both the initial document and the element define a default namespace with the <code>xmlns</code> attribute.</p>
<p>Assume the initial document is in <code>initial.xml</code>, and the element is in <code>element.xml</code>. To create this final document with REXML, simply:</p>
<pre><code>require 'rexml/document'
include REXML
document = Document.new(File.new('initial.xml'))
unless document.root.attributes['xmlns']
raise "No default namespace in initial document"
end
element = Document.new(File.new('element.xml'))
unless element.root.attributes['xmlns']
raise "No default namespace in element"
end
xrd = document.root.elements['XRD']
xrd.elements << element
document
</code></pre>