Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WCF service credentials in asp.net core 2.0

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

like image 204
J.Kirk. Avatar asked Nov 18 '25 17:11

J.Kirk.


1 Answers

Turns out the message feature in security is not yet supported in asp.net core-2.0.

You can see a full overview of what is supported here

like image 181
J.Kirk. Avatar answered Nov 21 '25 06:11

J.Kirk.