Copyright headers updated.

Change-Id: Id7d0d22fd41cce68e7e0e358986f531d1d95e208
Signed-off-by: Martin Fleischer <m.fleischer@peak-solution.de>
5 files changed
tree: 0142f17773edab6b054776551be512d7e4a45505
  1. gradle/
  2. org.eclipse.mdm.realm.login.glassfish/
  3. .gitignore
  4. build.gradle
  5. gradlew
  6. gradlew.bat
  7. LICENSE.txt
  8. NOTICE.txt
  9. README.md
  10. settings.gradle
README.md

available realms

1. Glassfish Login Realm (org.eclipse.mdm.realm.login.glassfish)

The command ‘gradlew install’ at org.eclipse.mdm.realms creates the jar file for this login module.

The jar file will be generated at org.eclipse.mdm.realms/org.eclipse.mdm.realm.login.glassfish/build/libs/org.eclipse.mdm.realm.login.glassfish-1.0.0.jar

  1. Install MDM Login Realm plugin at Glassfish
  • copy the jar file org.eclipse.mdm.realm.login.glassfish-1.0.0.jar to GLASSFISH4_ROOT/glassfish/domains/domain1/lib

  • open the Glassfish login configuration file at GLASSFISH4_ROOT/glassfish/domains/domain1/config/login.conf

  • add MDM realm module entry to this config file

    >MDMLoginRealm {
      org.eclipse.mdm.realm.login.glassfish.LoginRealmModule required;
    };    
    
  • start Glassfish and open administration website (e.g. localhost:4848)

  • open site: Configurations/server-config/Security/Realms

  • create new realm (“New” Button)

    Name: MDMLoginRealm, Class Name: org.eclipse.mdm.realm.login.glassfish.LoginRealm (choose a specific class name (with radio button))

    add Property: Name: jaas-context, Value: MDMLoginRealm

  • activate single sign on at Configurations/server-config/Virtual Servers/server (SSO = Enabled)

  • save and restart the Glassfish application server