*/
private SessionContext getReservedContext(String name)
throws ProcessingException {
// synchronized
SessionContext context = null;
SessionContextProvider provider = null;
try {
provider = (SessionContextProvider)this.contextSelector.select( name );
synchronized (provider) {
context = provider.getSessionContext(name);
}
} catch (ComponentException ignore) {
} finally {
this.contextSelector.release( (Component)provider);
}