在 .NET 中使用不兼容的 WS-I

发布于 2024-10-20 22:22:56 字数 252 浏览 3 评论 0原文

我有以下服务,需要在 Visual Studio 中使用而不更改 WSDL(因为 wsdl 是第三方)。它不符合 WS-I 配置文件。所以在消费的时候会报错。有什么办法,我可以使用其他软件或命令为此 WSDL 文件生成 C# 类。

http://kunden.netdirekt.de/soap/services.wsdl

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.

http://kunden.netdirekt.de/soap/services.wsdl

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

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

发布评论

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

评论(3

不必在意 2024-10-27 22:22:56

这可能是一项艰巨的任务,但您可以尝试编写 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.

月亮坠入山谷 2024-10-27 22:22:56

.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.

笑忘罢 2024-10-27 22:22:56

最终一切都只是 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.

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