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?
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?
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.