Adjusting XML config files from a script - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T07:39:04Zhttp://stackoverflow.com/feeds/question/316600http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316600/adjusting-xml-config-files-from-a-script0Adjusting XML config files from a scriptlindelof2008-11-25T07:41:20Z2009-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><!-- ====================== -->
<!-- More Appender examples -->
<!-- ====================== -->
<!-- Buffer events and log them asynchronously -->
<appender name="ASYNC" class="org.apache.log4j.AsyncAppender">
<errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
<appender-ref ref="FILE"/>
<!--
<appender-ref ref="CONSOLE"/>
<appender-ref ref="SMTP"/>
-->
</appender>
</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#3166281Answer by mkoeller for Adjusting XML config files from a scriptmkoeller2008-11-25T07:54:39Z2008-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#3168320Answer by Bevan for Adjusting XML config files from a scriptBevan2008-11-25T09:40:56Z2008-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#5622372Answer by Joseph Holsten for Adjusting XML config files from a scriptJoseph Holsten2009-02-18T18:17:15Z2009-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>