Is there any size limitation about xls:copy

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
I had a xml file which had a huge attribute value.
The xml is something as follow, the value of Script attribute is huge size, which s had around 1538457 characters
<Changes LastSeqNumber= "0
<Change Script="....
</Changes>
When I am calling transformNodeToObject method, it is failed with "Unspecified error".
<?xml version="1.0" encoding="UTF-8"?><br/>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform <br/>
<xsl:output method="xml" encoding="UTF-8" indent="yes"/><br/>
<xsl:template match="/ <br/>
<xsl:apply-templates mode="copy"/><br/>
</xsl:template><br/>
<!-- Copy all nodes and elements --><br/>
<xsl:template match="@*|node()" mode="copy <br/>
<xsl:copy><br/>
<xsl:apply-templates select="@*" mode="copy"/><br/>
<xsl:apply-templates mode="copy"/><br/>
</xsl:copy><br/>
</xsl:template> <br/>
</xsl:stylesheet>
Is there any size limitation about xls:copy?? Any configuration to make this size bigger?




View the full article
 
Back
Top