> > But I think if you have users in mid-session and you switch apps on them, > it could present problems no matter how you try to solve it. >
That's true. Although using routes is probably the safer method (should be no problems within a single request), a single page typically involves multiple requests (i.e., the HTML, plus requests for the static files, plus possible Ajax requests), so changing the routing could result in the multiple requests from a given page hitting two different apps. Anthony

