public AuthorizationResponse getAuthorizationResponse(String userName)
throws ManifoldCFException {
HttpClient client = getClient();
// Construct a cache description object
ICacheDescription objectDescription = new GenericAuthorizationResponseDescription(userName,
createCacheConnectionString(), this.responseLifetime, this.LRUsize);
// Enter the cache
ICacheHandle ch = cacheManager.enterCache(new ICacheDescription[]{objectDescription}, null, null);
try {