OpenConext / Mujina

A mock IDP and SP using the OpenSAML library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Integrating Mujina-idp with End System Applications( ex: Java SpringBoot , Java Micro services or Java Based CMS)

devendar-12 opened this issue · comments

Hi ,

I have a requirement that, i wanted to implement Mujina with my existing End user application. I have 3 different end user applications, mainly focusing on implementing SSO between Mujina-idp ( with dummy users) to Clone of a PROD CMS application.

Can i completely replace mujina-sp and change the configuration files of mujina-idp yml.properties and the End user CMS Application?

Or, do i need to write any intermediate application to communicate with mujina-idp & SP ( CMS Application).?

Your help on this will be much appriciated.

Thanks

You can fork Mujina and delete everything related to the SP. Nothing related to the IdP depends on the SP. Your CMS application can talk directly to the Mujina IdP - no intermediate application is needed.

Do note that this code base was developed for testing purposes and not for running as a real IdP. If you still want to run this in production you will want to disable the IdP API and do something meaningful in https://github.com/OpenConext/Mujina/blob/master/mujina-idp/src/main/java/mujina/idp/SsoController.java#L86.

Thanks for your help with this!!.