Adjusting XML config files from a script - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:39:04Z http://stackoverflow.com/feeds/question/316600 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316600/adjusting-xml-config-files-from-a-script 0 Adjusting XML config files from a script lindelof 2008-11-25T07:41:20Z 2009-02-18T18:17:15Z <p>I'm working on automating the configuration of several JBoss servers, which involves editing a substantial number of XML files.</p> <p>I'd like to script all these changes as much as possible. But the "standard" tools (sed, grep et al) do not work well with XML. Without necessarily resorting to a higher-level language, how can I script e.g. the insertion of a given XML snipper after a given XML element in a certain file?</p> <p>Say for instance that my jboss-log4j.xml looks like</p> <pre><code>&lt;!-- ====================== --&gt; &lt;!-- More Appender examples --&gt; &lt;!-- ====================== --&gt; &lt;!-- Buffer events and log them asynchronously --&gt; &lt;appender name="ASYNC" class="org.apache.log4j.AsyncAppender"&gt; &lt;errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/&gt; &lt;appender-ref ref="FILE"/&gt; &lt;!-- &lt;appender-ref ref="CONSOLE"/&gt; &lt;appender-ref ref="SMTP"/&gt; --&gt; &lt;/appender&gt; </code></pre> <p>and that I want to add a new appender-ref element. What's the easiest way to do that from a script?</p> http://stackoverflow.com/questions/316600/adjusting-xml-config-files-from-a-script/316628#316628 1 Answer by mkoeller for Adjusting XML config files from a script mkoeller 2008-11-25T07:54:39Z 2008-11-25T07:54:39Z <p>Typically I'll do this by writing a XSL stylesheet and invoking <a href="http://saxon.sourceforge.net/" rel="nofollow">SAXON</a> from a script.</p> http://stackoverflow.com/questions/316600/adjusting-xml-config-files-from-a-script/316832#316832 0 Answer by Bevan for Adjusting XML config files from a script Bevan 2008-11-25T09:40:56Z 2008-11-25T09:40:56Z <p>NAnt, the .NET cousin of Ant, has <a href="http://nant.sourceforge.net/release/latest/help/tasks/xmlpeek.html" rel="nofollow">XmlPeek</a> and <a href="http://nant.sourceforge.net/release/latest/help/tasks/xmlpoke.html" rel="nofollow">XmlPoke</a> tasks that I've used to very good effect in editing WCF configuration files which are quite complex. If you can find similar tasks for Ant, then you might have a winner.</p> <p>Alternatively, another approach might be to have a "template" version of the configuration file that contains %placeholders% suitable for replacing with one of the more classic text processing tools.</p> <p>A thought - Ant has the idea of a <a href="http://ant.apache.org/manual/CoreTypes/filterchain.html" rel="nofollow">filter chain</a>, which can be used to transform a file while copying - NAnt has the same concept and I've recently used that to good effect configuring deployment files.</p> http://stackoverflow.com/questions/316600/adjusting-xml-config-files-from-a-script/562237#562237 2 Answer by Joseph Holsten for Adjusting XML config files from a script Joseph Holsten 2009-02-18T18:17:15Z 2009-02-18T18:17:15Z <p>You'll find more answers in my <a href="http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing" rel="nofollow" title="Grep and Sed Equivalent for XML">previous question</a>. <a href="http://xmlstar.sourceforge.net/" rel="nofollow" title="XMLStarlet tool collection">xmlstar</a> seems to be the most popular answer.</p>