I am using the following code in XSL to call Java method
<xsl:stylesheet xmlns:xsl="
http://www.w3.org/1999/XSL/Transform" xmlns:java_func="com.commo
n.utils.SU
tils"
extension-element-prefixes
="java_fun
c" version="2.0">
....
<td width="20%">
<xsl:value-of select="java_func:getValFr
omBundle($
fb_id_labe
l)" />
</td>
this works fine.
Now I need to call another method which is in a different class. Please let me know how can I specify two classes and two prefixes in the XSL.
The resultant call will be something like this
<xsl:value-of select="java_func_1:my_new
_method(pa
ram)" />