single-sign-on

Alfresco SSO with Cookie

淺唱寂寞╮ 提交于 2019-12-21 23:10:58
问题 I want to integrate Alfresco with my current login system (which is an LDAP server). I can successfully integrate LDAP authentication in, however, I want to use an external login page and have Alfresco read a cookie to log the user in (the cookie will contain the username and a key which can be used to verify they're logged in with the LDAP server). I looked into the example that came with the SDK, but there doesn't seem to be a way to login the user in without a password. I was looking into

Support SAML SSO and normal login

徘徊边缘 提交于 2019-12-21 20:45:00
问题 I have an application which is accessed by two types of users, internal and external. I need to authenticate external users using SAML. I need to authenticate internal users with the normal form-based login. My application need to support both types of users. I use spring security frame work. Is it possible to support both types of users? if so can you suggest the approach at high level? Thanks. 回答1: You can easily enable support for both form and SAML authentication with configuration

Can I integrate Shibboleth SSO in my Java Webapp without using Apache and shibd?

陌路散爱 提交于 2019-12-21 17:41:40
问题 I'm working on a pure Java web application that uses an embedded Jetty and I want to integrate a Shibboleth login. To do this, I'm following switch.ch's guide for Shibboleth Service Provider Deployment, which states: The Shibboleth Service Provider consists of a daemon shibd running on all major operating systems and a web server module mod_shib which is natively supported by: Apache web servers (versions 1.3.x, 2.x) IIS (versions 6, 7 and 8) My question is, is there a way to integrate

how to do single-sign-on (SSO) between two web apps, PHP and Java EE?

限于喜欢 提交于 2019-12-21 17:36:04
问题 I have an existing Java EE web application running on GlassFish 3.1. Sign in works fine through the jdbcRealm configured in GlassFish 3.1. Someone on another team is developing a separate web application in PHP, the boss doesn't want the user of the apps to have to sign in twice. That is, when they are signed in to the Java web app and they click a link that takes them to the PHP app, they should already be signed in to that app as well. (And vice-versa.) Not sure how to implement this. I was

MSAL with Azure AD B2C and Single Sign On

半世苍凉 提交于 2019-12-21 17:11:31
问题 I'm working on a system with a few Angular 4 SPAs each talking to a separate Asp.NET Core 2.0 WebAPI. Azure AD B2C is being used as the identity service for each SPA/API, and MSAL.js as part of our Angular SPAs. We want to support Single Sign-on to prevent the user needing to re-enter credentials when switching from one SPA to another. Is it possible to get single sign-on behavior using msal.js v0.1.7? 回答1: SSO with MSAL.js is possible. For browser-based apps you achieve SSO through cookies

Azure ActiveDirectory Graph API GraphClient not returning AD Groups

旧时模样 提交于 2019-12-21 14:38:31
问题 I want to retrieve a User's Group information from Azure AD. Using the following Graph API packages to achieve this Microsoft.Azure.ActiveDirectory.GraphClient Microsoft.IdentityModel.Clients.ActiveDirectory 2.13.112191810 I am able to successfully retrieve Users information from the Azure Graph API. But when I run this method to retrieve a User's groups, Fiddler shows a successful HTTP 200 response with JSON fragment containing group information however the method itself does not return with

How to implement openAM SSO to my existing web applications

孤人 提交于 2019-12-21 12:27:11
问题 I'm try to implementing SSO in my existing web applications with using OpenAM by refer following link http://fczaja.blogspot.com/2012/06/idp-initiated-sso-and-identity_21.html PS. my web applications have their own login page already Now what is got after implementation is, openAM login page are protected in my web applications and i need to make login again to my application what i need is, want to skip the login page of my application to become single sign on. so, can anyone tell me what

CAS logout and cookies elimination

自作多情 提交于 2019-12-21 10:18:09
问题 I just made a HelloWorld servlet and implemented CAS on it. I'm being able to log in without problem and CAS is setting 3 cookies in my browser, the CASGT, and 2 JSESSIONID 1 for /cas and another for /helloWorld The problem is that then I access https://blah:8443/cas/logout, I see the logged out succesfuly screen but the cookies still are in my browser, so I'm not being loged out, I can get in again in /helloWorld without the login screen showing up. Do you know what should I do for CAS to

java.sql.SQLException: I/O Error: SSO Failed: Native SSPI library

笑着哭i 提交于 2019-12-21 07:53:31
问题 I have two web-applications which need to run on Tomcat 6, MS SQL 2008 and JTDS-1.2.2 as driver. If I start only one web application everything is working fine, but as soon as I start the second one I get the following error (it does not matter the order): java.sql.SQLException: I/O Error: SSO Failed: Native SSPI library Of course, the library ntlmauth.dll is under C:\WINDOWS\system32 It seems that the second application which starts is not able to find the ntlmauth.dll for the single sign on

Single sign on My joomla site and jobportal (jammit jobs) on same domain?

一个人想着一个人 提交于 2019-12-21 06:29:55
问题 I have a joomla site and i have added another job portal at same domain.Supoose my site is www.abc.com which is joomla site and www.abc.com/jobs is jammit job portal . HOW i do single signon(SSO) my Joomla sites and jammit jobs(Job portal)? 回答1: I don't think there is a "magic" solution: you have to write something we call "bridge" in programming. Create a signon script that uses the APIs of both Joomla and Jammit Jobs for achieving authentication from external applications. You can start