There is no request scope inside a CFTHREAD, but you figured that already. In fact, there is hardly any "shared" scope inside a CFTHREAD tag, which is logical. The first part where you pass on request scope as an attribute is fine. But then you are trying to set a new (local) variable with the reserved name "request" and that is where it goes wrong. Use another name and it might work better. But don't expect that what you are doing there, will really change something in the request scope. That can not be done. If you need the code inside the CFTHREAD to do something with your request scope, I recommend you skip the CFTHREAD because it doesn't make sense anyway. You should do that only if the piece of code inside the CFTHREAD can run completely independent of the request.
-- -- online documentation: http://openbd.org/manual/ http://groups.google.com/group/openbd?hl=en --- You received this message because you are subscribed to the Google Groups "Open BlueDragon" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
