我的xml有问题吗?
Spring 框架抛出错误
org.jdom.JDOMException startElement 中的异常:NAMESPACE_ERR:尝试以与名称空间相关的方式创建或更改对象。
对于这个 XML,
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output method="xml" omit-xml-declaration="yes"/>
<xsl:template match="*">
<ns1:response
xmlns:ns1="urn:enterprise.soap.acme.com/objs"
xmlns="urn:enterprise.soap.acme.com/objs">
<ns1:Result>
<ns1:id>1</ns1:id>
<ns1:success>true</ns1:success>
</ns1:Result>
</ns1:response>
</xsl:template>
</xsl:stylesheet>
我认为 xmlns="ur... 不正确。我是对的吗?
Spring framework throws error
org.jdom.JDOMException Exception in startElement: NAMESPACE_ERR: An attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
with this XML
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output method="xml" omit-xml-declaration="yes"/>
<xsl:template match="*">
<ns1:response
xmlns:ns1="urn:enterprise.soap.acme.com/objs"
xmlns="urn:enterprise.soap.acme.com/objs">
<ns1:Result>
<ns1:id>1</ns1:id>
<ns1:success>true</ns1:success>
</ns1:Result>
</ns1:response>
</xsl:template>
</xsl:stylesheet>
I think xmlns="ur... is not correct. Am I right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是更新版本吗?
http://static.springsource.org/spring-ws/site/faq .html#namespace_err
Are you using an updated version?
http://static.springsource.org/spring-ws/site/faq.html#namespace_err