Valtira has the released Rolecall 1.1. Rolecall is an identity management framework that provides Single Sign-On (SSO) support to both J2EE and .NET applications. New features are aimed at service provider integration with frameworks such as JAAS and OSUser.
Features
Rolecall provides single sign-on capabilities to environments with multiple web applications so that users need to login just once to access all your web applications. You can even configure Rolecall to use your existing Active Directory, Novell NDS, LDAP server or custom user store so that your web applications share login credentials with your existing security infrastructure.
* Group based Principal and Application management.
* External Principal and Group management support.
* Clean, powerful and easy-to-use web-based interface for user account and access administration.
* Email notifications to users of account changes.
* Supports application-layer security restrictions for Principal management.
* Pre-built J2EE integration libraries.
* Supports most relational database engines, including Oracle, MySQL, MS SQL, and PostgreSQL.
* Simple installation on any J2EE application server or standalone distributions (Orion and Tomcat).
Licensing
* 3 applications - $300 - ($90 per additional application)
* unlimited applications - $1,000
* source code (includes unlimited applications) - $3,500
Online Download
Rolecall is available for download in two different formats, standalone and a WAR distribution. We recommend you download the Standalone version for evaluation purposes, this version will allow you to get up and running with the least amount of effort.
You can download Rolecall at http://www.valtira.com/page/rolecall.jsp.
Free Licenses to Open Source Projects
Are you working on software released under an Open Source License?
If so, Valtira has license options for your project support needs. Do you need a single sign-on solution to integrate all of your project management tools like Jive, Confluence, and JIRA? Use Rolecall free of cost for your project.
Requirements for our licenses for Open Source projects are:
* Our software must be supporting your Open Source efforts and not unrelated commercial efforts. You can be a commercial entity, but you require a different license to support your commercial needs.
* Open Source efforts are considered projects releasing their software under a commonly accepted Open Source license.
-
Rolecall 1.1 Released: Identity Management Framework (5 messages)
- Posted by: Justen Stepka
- Posted on: August 31 2004 21:39 EDT
Threaded Messages (5)
- sso with java and php by artful dodger on September 06 2004 09:04 EDT
- sso with java and php by Marcin Szczepanski on September 06 2004 18:16 EDT
- sso with java and php by George Reese on September 06 2004 23:26 EDT
- Rolecall 1.1 Released: Identity Management Framework by Ian Purton on September 06 2004 10:37 EDT
- Rolecall 1.1 Released: Identity Management Framework by George Reese on September 06 2004 23:32 EDT
-
sso with java and php[ Go to top ]
- Posted by: artful dodger
- Posted on: September 06 2004 09:04 EDT
- in response to Justen Stepka
I'd love to find a product that integrates single sign on for php applications like phpbb2 and custom developed applications written in Java. -
sso with java and php[ Go to top ]
- Posted by: Marcin Szczepanski
- Posted on: September 06 2004 18:16 EDT
- in response to artful dodger
I'd love to find a product that integrates single sign on for php applications like phpbb2 and custom developed applications written in Java.
You can do that with Tivoli Access Manager, although it's hella expensive :) Technically for anything that doesn't support LTPA (ie. Websphere or Domino) you're just trusting the authenticated credentials the reverse-proxy passes you in the headers. -
sso with java and php[ Go to top ]
- Posted by: George Reese
- Posted on: September 06 2004 23:26 EDT
- in response to artful dodger
Rolecall can support any web application. It has a web services based API for authenticating users and managing SSO credentials. So, yes, it can support PHP apps.. -
Rolecall 1.1 Released: Identity Management Framework[ Go to top ]
- Posted by: Ian Purton
- Posted on: September 06 2004 10:37 EDT
- in response to Justen Stepka
Justen,
How does this integrate into JAAS, i.e. if I'm in a session been can I just call the getPrincipal() method to see who is calling the method or do I have to call directly into your services ?
Thanks
Ian Purton
Website and Server Monitoring | Email Marketing | Website Traffic Analysis | Top 100 Album Charts -
Rolecall 1.1 Released: Identity Management Framework[ Go to top ]
- Posted by: George Reese
- Posted on: September 06 2004 23:32 EDT
- in response to Ian Purton
Justen,How does this integrate into JAAS, i.e. if I'm in a session been can I just call the getPrincipal() method to see who is calling the method or do I have to call directly into your services ?ThanksIan PurtonWebsite and Server Monitoring | Email Marketing | Website Traffic Analysis | Top 100 Album Charts
JAAS is not an identity management system. You cannot use it to find out info about the users. While getPrincipal() can be used to get some rudimentary user info, JAAS is really only useful for applications that want to ask "is this user a valid user?" and "can this user perform that action"? And JAAS is not even really good at asking the latter (since you cannot access independent of actually attempting to perform the action in question.