#Id/#Ref 未解析
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果不需要在 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.