How to use SoapCore in Asp.net Core project for exposing wsdl at project route folder
问题 Your project, written with Asp.net Core, makes deploying Rest API. However, your customer wanted to communicate with soap. How to make an improvement 回答1: SoapCore has already done many things for us to support this situation. We apply step-by-step changes to our Asp.net Core project. First in Startup.cs: public void ConfigureServices(IServiceCollection services) { try { services.AddSoapServiceOperationTuner(new MyServiceOperationTuner()); services.Configure<XApiSettings>(options => { options