Reputation: 973
I've tried to implement simple username and password validation for my WCF service. My client is a web client in asp.net-core-2.0.
When I'm making a call from my client my System.Private.ServiceModel throws the following exception:
"TransportSecurityBindingElement.BuildChannelFactoryCore is not supported."
Does that mean client credentials is not yet supported in asp.net-core 2.0? If so is there any way to work around this or do I have to work in a different framework?
Bear in mind this is my first time implementing validation on a service in WCF so I'm looking for clear instructions or examples.
Thank you very much
Upvotes: 3
Views: 3586
Reputation: 2517
Update dependencies in visual studio
or in *.csproj (vs code)
Works in .net core 2.2 and .net core 3.1
Upvotes: 2