Search code examples
wcf.net-core

.Net Core does not support WSHttpBinding


Moving WSHttpBinding to BasicHttpBinding....

Problem statement: WSHttpBinding is not supported in .Net core.

When my application was in .Net 4.6, I was using WSHttpBinding to create the connection with WCF with below code.

var binding = new WSHttpBinding(SecurityMode.TransportWithMessageCredential);
binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
binding.Security.Message.ClientCredentialType = MessageCredentialType.Certificate;
binding.Security.Message.EstablishSecurityContext = false;
X509Store store = new X509Store(StoreName.My, StoreLocation.CurrentUser);
store.Open(OpenFlags.ReadOnly);
var cert = store.Certificates.Find(X509FindType.FindByThumbprint, "Thumprint", true)[0];
result = new MyClient(binding, address);
client = result as ClientBase<TInterface>;                
client.ClientCredentials.ClientCertificate.Certificate = cert;

Now I am migrating my application to .Net core and i found there is no support to WSHttpBinding. I am planning to move with BasicHttpBinding and made the following changes:

    var binding = new BasicHttpBinding(BasicHttpSecurityMode.TransportWithMessageCredential);
    binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
    binding.Security.Message.ClientCredentialType = BasicHttpMessageCredentialType.Certificate;

With BasicHttpBinding there is no provision to below code:

 binding.Security.Message.EstablishSecurityContext = false;//This code is w.r.t. WSHttpBinding.

So, my question is: Does this changes okay to go with or I should do some other way around? Please assist!


Solution

  • Wshttpbinding is supported in .net core 3.1.

    1.   You should use the Nuget --System.private.serviceModel to get the wshttp binding methods in .NET core 3.1
      

    enter image description here

    1.   Below are the Nuget Packages that will be required.
      

    enter image description here