On Jan 9, 2006, at 10:21 AM, Ben Anderson wrote:

I'm messing with using global variables in my flow files and am
observing that these variables get stuffed in the session.  Is there a
way to set these in the request instead?

Why would you want to do that?

Flowscript global variables are a convenient way of accessing session variables. I don't recommend trying to make them be something other than that. Are you just looking for an interface to request attributes? That's the Request object:

        cocoon.request.setAttribute ("something", whatever);
        .
        .
        var x = cocoon.request.getAttribute ("something");

HTH,
—ml—


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