You've made an inner class but you're calling it as a method!
 
Try this :
 
<xsp:logic>
    make_xsl anObject = new make_xsl();
    anObject.main();
</xsp:logic>
 
you main() method won't be called as you instatiate your make_xsl class, like it would happen if this was your program's starting/main class.
 
Luis Gois

Reply via email to