我的xml有问题吗?

发布于 2024-11-07 04:08:10 字数 746 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文