Prepare Soap service with SAML assertion in .net

449 Views Asked by At

I must implemented SOAP Web Service but i don't have a lot experience in this job. I read something about WCF, SoapCore etc. and tried to create some solutions. What I need to implement:

  1. Service which get request with SAML token in header (wsse:security).
  2. After receiving request I must forward SAML token with elements from soap:body to verification services.
  3. If I get allow to share data with request actor. I must generate response with some data from database.

My tech stack is .net vb/c#.

1

There are 1 best solutions below

4
Theobald Du On

You can create the demo first according to the official documentation: SAML Token Provider. This sample demonstrates how to implement a custom client SAML token provider. A token provider in Windows Communication Foundation (WCF) is used for supplying credentials to the security infrastructure.