在 .NET 中使用不兼容的 WS-I
我有以下服务,需要在 Visual Studio 中使用而不更改 WSDL(因为 wsdl 是第三方)。它不符合 WS-I 配置文件。所以在消费的时候会报错。有什么办法,我可以使用其他软件或命令为此 WSDL 文件生成 C# 类。
I have following service which needs to be consumed in Visual Studio without changing WSDL (as wsdl is third party). It is non compliant WS-I Profile. So it gives error while consuming. Is there any way, I can generate c# class for this WSDL file using another software or commands.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能是一项艰巨的任务,但您可以尝试编写 XSLT 转换,将这种不兼容的 ersatz-WSDL 转换为
wsdl.exe
可消化的格式。It might be a daunting task, but you could try writing an XSLT transformation to transmogrify this non-compliant ersatz-WSDL to a format digestible by
wsdl.exe
..NET 框架无法通过 WSDL.EXE 或 SVCUTIL.EXE 解析 WSDL。
工具对象的元素是对soapenc:Array 的未解析引用
正如@Pradeep 建议的那样,请联系供应商。
The WSDL is not parsable by the .NET framework, either by WSDL.EXE or SVCUTIL.EXE.
The elements that the tools object to are the unresolved references to soapenc:Array
As @Pradeep suggests, contact the vendor.
最终一切都只是 XML...,因此如果需要,您可以制作自己的 XML 请求,然后处理返回的 XML。非常痛苦,但这就是人们每天在 .net 世界之外必须做的事情。
It is all just XML in the end...., so if need be you could craft your own XML requests and then process the XML that comes back. Very painful, but that is what people have to do outside of the .net world every day.