(Rene van Hoek) wrote in message news:< om>...
> Hi,
>
> I am using Xalan to transform XML with XSL stylesheets. I don't know
> how too put the output into a string (e.g. std::wstring).
>
> I know that there are classes like DOMStringPrintWriter and
> XalanOutputStreamPrintWriter but I do not know how to use them.
>
> Can someone give an example?
>
> Thanks.
>
> Rene
Oke I found the answer, it is very simple. Use the outputstream classes from stl.
std:

stringstream ostream;
XSLTResultTarget result(ostream);
int run_result = theXalanTransformer.transform(theSource, xsl.c_str(), result);
ostream.str();
Rene