Hy,

The java source of the SessionPropagatorAction looks like:

        String[] names = parameters.getNames();

            // parameters
            for (int i = 0; i < names.length; i++) {
                String sessionParamName = names[i];
                String value=parameters.getParameter(sessionParamName);
                if (getLogger().isDebugEnabled()) {
                    getLogger().debug("Propagating value "
                                      + value
                                      + " to session attribute "
                                      + sessionParamName);
                }
                session.setAttribute(sessionParamName, value);
                actionMap.put(sessionParamName, value);
            }

So I think the action put the parameter in the current session and make them also available in the sitemap.

Have a look on the java-api http://cocoon.apache.org/2.1/apidocs/org/apache/cocoon/acting/SessionPropagatorAction.html !

I hope thats helps!

Dirk

What does the SessionPropagatorAction do??

-------------------------------------------------
Still single? Click here to find the perfect match.
http://www.bharatmatrimony.com/cgi-bin/bmclicks1.cgi?141


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



Reply via email to