function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
integrationintegration 

Salesforce+SAML delegated Authentication

I have succesfully integrated SAMLwith Salesforce(Federated Authentication).But my requirement is Salesforce should send SAML request to my application(delegated Authentication)  and after successfull authentication my application will redirected request to a secure resource.

 

Can Salesforce send SAML assertion for user authentication...? 

does Salesforce supporing it..?

 

Please reply 

AishAish

Salesforce does support delegated authentication but being unsure about your use case as yet, I'd say keep the following considerations in mind:

- You'll need to set up your own authentication soap based web service as the response from the Salesforce delegated authentication is a SOAP response

- The 3 parameters Salesforce will send back to your web service end point are: username, password, source ip

 

More information can be found here.

integrationintegration

Thanks for the reply....