是否有任何补偿或代码可以找到WSDL所有方法,哪种类型的方法获取或发布等等

发布于 2025-01-23 00:49:52 字数 247 浏览 0 评论 0 原文

我有一个wsdl:

我想提取所有方法和定义的方法获取,发帖等。

有什么办法可以在.net core中做到这一点

I have a wsdl : https://www.lb.lt/webservices/ExchangeRates/ExchangeRates.asmx?WSDL

I want to extract all methods and defined types of methods GET,POST etc.

Is there any way that I can do this in .NET Core

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

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

发布评论

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

评论(1

意中人 2025-01-30 00:49:52

In .Net the tool of choice to parse WSDLs and turn them into code has mostly been

不确定这是哪个版本,但是在这里您可以找到您可以找到项目的源代码。您可以研究它,看看它解析了WSDL结构以获取所追求的数据。

而且还有选项可以将WSDL解析为XML(使用DOM,XSLT等),并了解所需的元素,了解WSDL文件的结构是标准的,并由各种规格定义。

In .Net the tool of choice to parse WSDLs and turn them into code has mostly been Svcutil.exe.

Not sure which version this is, but here you can find the source code of the project. You could study it and see where it parses the WSDL structure to get the data you are after.

And there is also the option to parse the WSDL as XML (using a DOM, XSLT, etc.) and go for the elements that you want, knowing the structure of a WSDL file is standard and defined by various specifications.

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