<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<br>
Etienne wrote:
<blockquote
 cite="mid8fcd02310610260500y42a4c6dfo94d6e5937ddc8e72@mail.gmail.com"
 type="cite">On 10/26/06, <b class="gmail_sendername">Dave</b> <<a
 href="mailto:osm@randomjunk.co.uk">osm@randomjunk.co.uk</a>> wrote:
  <div><span class="gmail_quote"></span>
  <blockquote class="gmail_quote"
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
    <div bgcolor="#ffffff" text="#000000">I've been thinking about this.<br>
Dependency wise Java is probably the easiest solution as all the tools
are probably already out there as Java, so it's one download of a few
MB. Xalan is included in Java 1.5, so you don't even have to download
that. </div>
  </blockquote>
  <div><br>
FYI Xalan used to be included in Java 1.4 but is not part of Java 1.5,
it has to be dowloaded separately.<br>
  </div>
  </div>
  <br>
</blockquote>
<br>
com.sun.org.apache.xalan, it's in the JRE 1.5.0_07, and JRE 1.6.0beta2<br>
<br>
<pre>Transformer transformer = TransformerFactory.newInstance()
                .newTransformer(new StreamSource(xslInputStream));
</pre>
will load it without any other config. You can use the transformer to
do the dirty work on your XML.<br>
<br>
<br>
<br>
</body>
</html>