Hi all, When transforming an XML that has a very large element (e.g. around 32800 characters, so bigger than a short could index) I get : Error raised (Transforming) : String index out of range: -32669
I am not doing anything special with the transformation (see xsl snippet below, the large element is the 'LargeInfoText'). Is this due to the version that I am using? thanks, Alex. Name: org/apache/xalan Comment: Main Xalan engine implementing TrAX/JAXP Specification-Title: Java API for XML Processing Specification-Vendor: Sun Microsystems Inc. Specification-Version: 1.1 Implementation-Title: org.apache.xalan Implementation-Version: 2.2.D11 Implementation-Vendor: Apache Software Foundation Implementation-URL: http://xml.apache.org/xalan-j/dist/ <xsl:choose> <xsl:when test="LargeInfoText != ''"> <tr> <td colspan="2">Large info block</td><td><textarea rows="10" cols="90" name="LargeInfo"><xsl:value-of select="LargeInfoText" /></textarea></td> </tr> </xsl:when> <xsl:otherwise> <tr> <td colspan="2">Large info block</td><td>** BLANK **</td> </tr> </xsl:otherwise> </xsl:choose> ********************************************************************************************** The information contained in this message or any of its attachments may be confidential and is intended for the exclusive use of the addressee(s). Any disclosure, reproduction, distribution or other dissemination or use of this communication is strictly prohibited without the express permission of the sender. The views expressed in this email are those of the individual and not necessarily those of Sony or Sony affiliated companies. Sony email is for business use only. This email and any response may be monitored by Sony United Kingdom Limited. (05) **********************************************************************************************
