#Id/#Ref 未解析

发布于 2024-11-24 02:45:25 字数 433 浏览 1 评论 0原文

我使用 WCF/.NET Framework 4.0 (C#) 创建了一个非常简单的 Web 服务。我已使用 svcutil.exe 实用程序生成了 WSDL 文件。当我使用 Eclipse (Java EE) 导入 WSDL 文件时,出现以下错误:

XSD:属性引用“http://schemas.microsoft.com/2003/10/Serialization/#Id”未解析 XSD:属性引用 'http://schemas.microsoft.com/2003/10/Serialization/#Ref' 未解析

我正在使用 DataContractSerializer 并启用引用保存:

[DataContract(IsReference = true)]

当我打开此选项时关闭选项,上述错误就会消失。我还按照 SO 上另一个线程中的建议压平了我的 WSDL 文件。

I have created a very simple Web Service using WCF/.NET framework 4.0 (C#). I have generated a WSDL file using the svcutil.exe utility. When I import the WSDL file using Eclipse (Java EE), I get the following errors:

XSD: Attribute reference 'http://schemas.microsoft.com/2003/10/Serialization/#Id' is unresolved
XSD: Attribute reference 'http://schemas.microsoft.com/2003/10/Serialization/#Ref' is unresolved

I am using the DataContractSerializer with reference preservation turned on using:

[DataContract(IsReference = true)]

When I turn this option off, the error above, disappears. I have also flatten my WSDL file as suggested in another thread here on SO.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩物 2024-12-01 02:45:25

如果不需要在 Java 中保留引用,请关闭 IsReference,然后打开“preserveObjectReferences”。您可以通过 DataContractSerializer 构造函数的重载、DataContractSerializerOperationBehavior 属性或配置文件来完成此操作。

If you don't need to preserve references in Java, turn off IsReference, and instead turn on "preserveObjectReferences". You can do this via an overload of the DataContractSerializer constructor, via the DataContractSerializerOperationBehavior attribute, or via the config file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文