hi, I am trying to use the BSF PostProcessor with a basic XSLT Script! it runs without errors but I dont know how to read sample data nor to ouput something in a variable.
I found one exaple using this postprocessor with javascript http://www.havecomputerwillcode.com/blog/?p=500 but cannot find code using xslt, maybee somebody used it before... this is my xslt, extracting id-attributes: <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl=" http://www.w3.org/1999/XSL/Transform" > <xsl:output method="text" version="1.0" encoding="UTF-8" indent="yes"/> <xsl:template match="/"> <xsl:value-of select="//*/@id"/> </xsl:template> </xsl:stylesheet>

