I am new to WCF in general so excuse any inconsistencies in the question.
I am trying to connect to an existing WCF service. The existing WCF service clients that I have seen using the service have used the WebHttpBinding to connect to the WCF service. However, with the new client I am making I am unable to use .NET framework and need to use .NET core where WebHttpBinding is not supported (I tried installing the nuget package for System.ServiceModel.Web and it said that the target had to be .Net Framework - it looks like the GitHub associated with potentially supporting this has not made any moves to do so https://github.com/dotnet/wcf/issues/1413). Is there anyway to connect to the existing WCF server by using normal HTTP requests? Or if not, by using other means within the WCF framework?
I've had a look at What replaces WCF in .Net Core? but its seems to suggest using different frameworks entirely.