Add XML namespace to existing document in ruby - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T03:09:17Z http://stackoverflow.com/feeds/question/623255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/623255/add-xml-namespace-to-existing-document-in-ruby 0 Add XML namespace to existing document in ruby Joseph Holsten 2009-03-08T08:04:28Z 2009-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>&lt;xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)"&gt; &lt;XRD&gt; &lt;Service&gt; &lt;Type&gt;http://specs.openid.net/auth/2.0/signon&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/2.0&lt;/URI&gt; &lt;/Service&gt; &lt;/XRD&gt; &lt;/xrds:XRDS&gt; </code></pre> <p>and add:</p> <pre><code>&lt;Service xmlns="xri://$xrd*($v*2.0)" xmlns:openid="http://openid.net/xmlns/1.0"&gt; &lt;Type&gt;http://openid.net/signon/1.0&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/1.0&lt;/URI&gt; &lt;openid:Delegate&gt;http://example.openid.example&lt;/openid:Delegate&gt; &lt;/Service&gt; </code></pre> <p>Yielding something equivalent to:</p> <pre><code>&lt;xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)" xmlns:openid="http://openid.net/xmlns/1.0"&gt; &lt;XRD&gt; &lt;Service&gt; &lt;Type&gt;http://specs.openid.net/auth/2.0/signon&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/2.0&lt;/URI&gt; &lt;/Service&gt; &lt;Service&gt; &lt;Type&gt;http://openid.net/signon/1.0&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/1.0&lt;/URI&gt; &lt;openid:Delegate&gt;http://example.openid.example&lt;/openid:Delegate&gt; &lt;/Service&gt; &lt;/XRD&gt; &lt;/xrds:XRDS&gt; </code></pre> http://stackoverflow.com/questions/623255/add-xml-namespace-to-existing-document-in-ruby/623272#623272 0 Answer by Joseph Holsten for Add XML namespace to existing document in ruby Joseph Holsten 2009-03-08T08:32:45Z 2009-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>&lt;xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)"&gt; &lt;XRD&gt; &lt;Service&gt; &lt;Type&gt;http://specs.openid.net/auth/2.0/signon&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/2.0&lt;/URI&gt; &lt;/Service&gt; &lt;Service xmlns:openid="http://openid.net/xmlns/1.0" xmlns="xri://$xrd*($v*2.0)"&gt; &lt;Type&gt;http://openid.net/signon/1.0&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/1.0&lt;/URI&gt; &lt;openid:Delegate&gt;http://example.openid.example&lt;/openid:Delegate&gt; &lt;/Service&gt; &lt;/XRD&gt; &lt;/xrds:XRDS&gt; </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 &lt;&lt; element document </code></pre>