cancel
Showing results for 
Search instead for 
Did you mean: 

enable SSO on my j2ee project deployed on Portal & authenticated with UME

Former Member
0 Kudos
56

Hello experts,

I have a j2ee project deployed on portal server, and security has configured in web.xml, I also change the security provider in VA to enable the authentication with UME, this all works fine.

In my mind, this configuration should support SSO, that is, if I logon portal, I can also logon my j2ee application without authentication, and vice versa. But I failed, it seemed they are seperated, this is what i do not want.

How can I configure this? because I need to embed another application of portal in my j2ee application, and I also do not want to make my j2ee app to an iview.

Thank you,

William

Accepted Solutions (1)

Accepted Solutions (1)

former_member698570
Active Participant
0 Kudos

Hi,

did you define any Security Constraints??

If you didn't you should be able to access your custom app without problems and without additional authentication after

logging into portal.

Everything should be fine if you configure the following LoginModules for your custom J2EE Application:

1. EvaluateTicketLoginModule with Flag SUFFICIENT (This will make sure that you can access the application if a Logon Ticket has previosuly been issued to the user (e.g. by authenticating at portal)

2. Any other Login Module in order to authenticate if not already happend (e.g. BasicPasswordLoginModule with Flag REQUISITE)

3. CreateTicketLogindModule with Flag SUFFICIENT (This will create the Logon Ticket and you can use it to authenticate to any other resource or to external Systems or other SAP Systems

Let me know if you need further assistance

Hope this helps (Reward points for useful answers are appreciated )

Cheers

Answers (1)

Answers (1)

Former Member
0 Kudos

in VA, in SecurityProvider, in Authentication Panel of this project, select ticket option from Authentication template solve the problem