Reputation: 1
I am using wso2 Identity server , where I configured ADFS as a Identity Provider with SAML SSO web and ADFS send s some SAML Response , and also I configured ServiceProvider in wso2 Identity server , but while i am heating Consumer application it goes to Identity server and then ADFS and after ADFS credential it come back to Consumer and then goes to API Manager and then goes to Backend application , But in the Back end application I got the SAML Response of Service Provider not the SAML Response of Identity provider ADFS.I am getting SAML response with Issuer as localhost:but I mention Identity provider id in IDP as http://adfs.xyz.com/adfs/trust , so i have to got "http://adfs.xyz.com/adfs/trust" as Issuer why I am getting Issuer as localhost.
Upvotes: 0
Views: 904
Reputation: 901
If it is the issuer name that matters you, You can change it at Identity Providers
-> List
-> Resident Identity Provider
-> Inbound Authentication Configuration
-> SAML2 Web SSO Configuration
-> Identity Provider Entity Id
And if you also needs the claims as from the ADFS you'll need to do claim mapping as required as suggested by Jenananthan.
Upvotes: 0
Reputation: 1401
Your use case is similar to the Usecase2 described in [1]. Since your web app sends the saml request to wso2 IS , it will get the saml response from wso2 IS once it is authenticated via federated authentication(ADFS). So issue will be wso2 IS.
1.http://umeshagunasinghe.blogspot.com/2014/06/use-case-scenarios-with-wso2-identity.html
Upvotes: 0