'Is there any sollution or code to find wsdl all methods and which type this methods GET or POST etc
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
Solution 1:[1]
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.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
