Search Results :
×miniOrange Joomla SAML SP SSO plugin helps you to integrate your Joomla site to IdentityServer4 using SAML 2.0 protocol. Our user-friendly plugin simplifies the process of setting up Single Sign-on (SSO) with IdentityServer4 in Joomla, ensuring a secure login experience. This enables users to access various Joomla sites effortlessly using their IdentityServer4 IDP credentials.
Our plugin is designed to be compatible with Joomla 3, 4 as well as 5 and works seamlessly with all SAML 2.0 compliant Identity Providers. For a detailed overview of the comprehensive features offered by the Joomla SAML SP plugin, please visit our page here. Below, we provide a step-by-step guide on configuring SAML SSO login between your Joomla site and IdentityServer4, with IdentityServer4 serving as the Identity Provider (IDP) and Joomla as the Service Provider (SP).
Note: To add SAML IDP functionality you would require modifications in the Startup.cs file.
services.AddIdentityServer()
// the rest of registrations (clients, resources, users, etc)
.AddSigningCredential(new X509Certificate2(/*your cert*/))
.AddSamlPlugin(options => {
options.Licensee = "/*your license key org name*/";
options.LicenseKey = "/*your license key*/";
})
.AddInMemoryServiceProviders(new List());
app.UseIdentityServer()
.UseIdentityServerSamlPlugin();
Configure IdentityServer4 as Service Provider
new Client {
ClientId = "http://localhost:5001/saml",
ClientName = "RSK SAML2P Test Client",
ProtocolType = IdentityServerConstants.ProtocolTypes.Saml2p,
AllowedScopes = { "openid", "profile" }
}
ClientId
Provide entityID from Service Provider Metadata tab
|
ClientName
Provide Service Provider name
|
ProtocolType
IdentityServerConstants.ProtocolTypes.Saml2p
|
AllowedScopes
openid, profile
|
new ServiceProvider {
EntityId = "http://localhost:5001/saml",
SigningCertificates = {new X509Certificate2("TestClient.cer")},/*Enter the certificate name*/
AssertionConsumerServices = { new Service(SamlConstants.BindingTypes.HttpPost, "http://localhost:5001/signin-saml") }
};
Note: The Client ID and Entity ID must be Equal.
EntityId
Provide Entity-Id from Service Provider Metadata tab
|
Signing Certificates
Download the Certificate from Service Provider Metadata tab of the plugin and enter Certificate name
|
Assertion Consumer Service URL
Provide the required Binding type followed by the ACS URL:
Http Post method: SamlConstants.BindingTypes.HttpPost Http Redirect method: SamlConstants.BindingTypes.HttpRedirect ACS URL: Provide ACS URL from Service Provider Metadata Tab |
You have successfully configured IdentityServer4 as SAML IDP ( Identity Provider) for achieving IdentityServer4 SSO login into your joomla Site.
In Joomla SAML plugin, go to Service Provider Setup tab. There are three ways to configure the plugin:
IdP Entity ID or Issuer
SAML Entity ID in the Federation Metadata document
|
Single Sign-On URL
SAML Single-Sign-On Endpoint URL in the Federation Metadata document
|
X.509 Certificate Value
X.509 Certificate in the Federation Metadata document
|
Username:
Name of the username attribute from IdP (Keep NameID by default)
|
Email:
Name of the email attribute from IdP (Keep NameID by default)
|
Name:
Name of the name attribute from IdP
|
If you want Business Trial for FREE click Here
If you don't find what you are looking for, please contact us at joomlasupport@xecurify.com or call us at +1 978 658 9387.
Need Help? We are right here!
Thanks for your inquiry.
If you dont hear from us within 24 hours, please feel free to send a follow up email to info@xecurify.com
This privacy statement applies to miniorange websites describing how we handle the personal information. When you visit any website, it may store or retrieve the information on your browser, mostly in the form of the cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not directly identify you, but it can give you a more personalized web experience. Click on the category headings to check how we handle the cookies. For the privacy statement of our solutions you can refer to the privacy policy.
Necessary cookies help make a website fully usable by enabling the basic functions like site navigation, logging in, filling forms, etc. The cookies used for the functionality do not store any personal identifiable information. However, some parts of the website will not work properly without the cookies.
These cookies only collect aggregated information about the traffic of the website including - visitors, sources, page clicks and views, etc. This allows us to know more about our most and least popular pages along with users' interaction on the actionable elements and hence letting us improve the performance of our website as well as our services.