2

I am trying to move my project from .NET to .NET Core.

I tried using BasicHttpBinding and CustomBinding to connect with my WCF service on the client side, but this throws an error.

Suggest how to implement WebHttpBinding on .NET Core?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
  • Did you check this answers : https://stackoverflow.com/questions/52182419/unable-to-consume-wcf-wshttpbinding-in-net-core ? – mike Sep 24 '21 at 08:58
  • Maybe you can take a look at [this link](https://stackoverflow.com/questions/56462686/alter-a-wcf-service-for-compatibility-with-both-net-framework-net-core-calle).It's for Compatibility with both .NET Framework & .NET Core Callers. – Jiayao Sep 24 '21 at 09:26

1 Answers1

-1

If you need consume the WCF service, then you can try go with https://github.com/dotnet/wcf

This repository contains the .NET Core version of the Windows Communication Foundation client libraries.

Lukasz Szczygielek
  • 2,768
  • 2
  • 20
  • 34