DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1930>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1930 Problem with extensions using Weblogic 6.X and JBoss ------- Additional Comments From [EMAIL PROTECTED] 2001-11-15 07:57 ------- $icon is <xsl:value-of select="ICON_FILENAME"/> will yield not text but a node- set consisting of any ICON_FILENAME nodes which are children of the current node. If you want the text ICON_FILENAME, you'll need to enclose that in apostrophes. I'm not sure which you wanted. If your extension function takes a parameter of String, XalanJ will convert the node-set to a String as if by a all to the XPath string() function so that should work fine. If your extension is located in WEB-INF/classes/..., then XalanJ will use the current thread's context ClassLoader to try to load the extension. It is possible that JRun is not setting the context ClassLoader or that you need some special directive or plug-in to cause the context ClassLoader for the current thread to be set to the ClassLoader that JRun is using. You might refer this issue (of how the thread's context ClassLoader is set) over to the JRun people and see if they can shed some light on it. In the meantime, I'll check around as well. Gary
