views:

14

answers:

1

I've been having to perform changes to a handful of xml configuration files which is tedious and error prone. I was wondering if there was a tool available like the web.config transformation tool that I could use to transform regular xml with.

A: 

A great tool for changing xml files is XSLT. Unfortunately, I'm not familiar with the web.config transformation tool, so I can not say if they are similar.

Willfulwizard
I'm aware of XSLT, but is there anything that will execute those transforms for me without having to write code to do it?
Dave
@Dave - you want magical transformations that read your mind?
Oded
command line maybe? c:\>transform my.xml with-this.xslt > output-to-this.xml
Dave
Google "XSLT Command Line" result 1: http://xml.apache.org/xalan-j/commandline.html
Willfulwizard