Home > Enterprise >  Consume ASMX webservice in Visual studio for mac
Consume ASMX webservice in Visual studio for mac

Time:06-21

How can I reference a ASMX web service (WCF) in visual studio Mac, so that Client classes are generated automatically?

Connected services only offer "openAPI" and "gRPC" services, but no option for ASMX or WSDLs.

How can I reference classic WSDL/SOAP webservices?

I have a .net core Webapplication project on visual studio 2022 for mac (17.0.2 build 8)

CodePudding user response:

As enter image description here

Maybe you can try the dotnet svcutil command line tool, which can be used to generate service references. https://docs.microsoft.com/en-us/dotnet/core/additional-tools/dotnet-svcutil-guide?tabs=dotnetsvcutil2x

  • Related