OK, now I have:

ContextManager cm = (ContextManager) this.manager.lookup(ContextManager.ROLE);
SessionContext sc = cm.getContext("authentication");

My session context (after logging on) is always null. What should the context name be? 
I have tried many different 
things and they are all null. A getContextNames() method would be very useful here!

Regards,

Paul.

On Wed, 3 Sep 2003 13:34:25 +0200, Carsten Ziegeler wrote
> Ok, if you have a component manager in the variable "manager", do this:
> 
> (it's free typed into the mail without syntax checking)
> 
> import org.apache.avalon.framework.component.Component;
> import org.apache.cocoon.webapps.session.ContextManager;
> 
> ContextManager cm =
> (ContextManager)this.manager.lookup(ContextManager.ROLE);
> try {
>   SessionContext sc = cm.getContext(CONTEXT_NAME);
> 
>   // use the context here
> 
> } finally {
>   manager.release((Component)cm);
> }
> 
> This is really all I can provide you, you have to figure out the rest.
> 
> Carsten

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to