Saxon Xslt 处理器错误
在我的.net应用程序中,我尝试使用saxon xslt处理xml,xslt版本是2.0。 当数据很大时,我会收到以下错误。
[net.sf.saxon.trans.XPathException] = {“org.xml.sax.SAXParseException:XML文档结构必须在同一实体内开始和结束。”}
知道它是什么吗?提前致谢。
In my .net application i am trying process an xml using saxon xslt, the xslt version is 2.0.
When the data is large i am getting the following error.
[net.sf.saxon.trans.XPathException] = {"org.xml.sax.SAXParseException: XML document structures must start and end within the same entity."}
Any ideas what it is? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您提供的消息表明您尝试转换的 XML 文档(或者可能是 XSLT 样式表)不是格式良好的 XML。您可以使用 XML 解析器读取 XML 文档(和样式表)吗?
The message you've provided suggests to me that the XML document you're attempting to transform (or perhaps the XSLT stylesheet) is not well-formed XML. Can you read the XML document (and the stylesheet) using an XML parser?