This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: null pointer exception in Saxon


> I'm using the extension functions in Saxon to integrate a 
> Java Hashtable into a stylesheet, but get a null point exception when 
> testing a null value.

In investigating this, I've found other problems in using the Java Hashtable
class from a Saxon stylesheet. The methods put() and get() take arbitrary
Objects as their values, so Saxon doesn't do the type conversion you might
expect. This has odd effects, for example after 
<xsl:value-of select="hashtable:put($table, 'Mike', 'Kay')"/>
<xsl:value-of select="hashtable:put($table, 'Mike', 'King')"/>
you will have two entries in the table, because the two keys are not
considered equal.

The moral is, stick to simple data type mappings! To use the Hashtable
class, you probably need to put a wrapper around it. I'm trying to improve
the mapping rules for the next version.

Mike K


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]