How to create a partial proxy class from a large WSDL?

I have a large WSDL file from a third-party service provider.

Is there a way to cherry pick what services, contracts, endpoints do I want when I use the wsdl tool command line?

Visual Studio crashesh due to the volume of services included in wsdl.

Update It seems impossible. You just need to edit wsdl to contain only the relevant contracts. A third party solved the problem.

+4
source share
1 answer

Copy the service links to a separate class library first.

  • Create a new class library project
  • Add a service link for all required WSDLs
  • dll , .

: , , , Visual Studio , , WSDL. Visual Studio , . .

+1

Source: https://habr.com/ru/post/1659839/


All Articles