将 Tivoli Access Manager 与 ObjectGrid 集成以对分布式客户机进行身份验证和授权
2009-09-30 00:00:00 来源:WEB开发网清单 1 显示了 Authenticator 实现类中的 com.ibm.websphere.samples.objectgrid.security.tam.TAMAuthenticator 身份验证方法。您将会看到,其中利用了 JAAS 身份验证服务来使用登录名登录到 Access Manager。
清单 1. TAMAuthenticator.authenticate(Credential) 方法
subject = (Subject) AccessController.doPrivileged(new PrivilegedExceptionAction() {
public Object run() throws InvalidCredentialException,
ExpiredCredentialException
{
UserPasswordCredential cred = (UserPasswordCredential) credential;
LoginContext lc = null;
try {
lc = new LoginContext(loginName, new UserPasswordCallbackHandlerImpl(cred
.getUserName(), cred.getPassword().toCharArray()));
lc.login();
Subject s = lc.getSubject();
System.out.println("The authenticated subject is " + s);
return s;
} catch (LoginException le) {
throw new InvalidCredentialException(le);
} catch (IllegalArgumentException ile) {
throw new InvalidCredentialException(ile);
}
ObjectGridAuthorization
客户机经过身份验证后,将从服务器返回 Subject 对象。此 Subject 可以用于对客户机访问进行授权。由于 ObjectGrid 提供 JAAS 授权现成支持,因此可以在 Java 策略文件或 JAAS 授权策略文件中定义 JAAS 授权策略。典型策略与以下所示类似:
- ››Access数据库安全策略之ASP式
- ››Accessibility.updateProperties ,Accessibility...
- ››Access denied for user...
- ››Access denied for user: root@dbhost (Using pas...
- ››access 的页怎么用
- ››Access 2000中的查询分析器
- ››access编程打开其他数据库中的窗体
- ››Access报表打印如何自动分页
- ››access解决组合框无法满足大量数据的选择问题
- ››Access中用Jet SQL语句删除表关系
- ››Access 数据转换问题
- ››Access 2007数据表的操作
更多精彩
赞助商链接