Sharing client variables between applications
I have a situation where I have a small application within a larger application. The small application uses Coldbox and the large one does not, so they have their own application names and settings. I've figured out how to share APPLICATION and SESSION scope variables, but after hours of searching I can't figure out a good way to share CLIENT variables (which are stored in a database). Basically when a user enters the subapp from the main app, I want all of their client variables from the main app to carry over. The best I can figure so far is to pass in the session id and query the client storage database, or make the application names the same for both applications, but I don't really like either of these solutions.
What is the best way to share the CLIENT scope between two separate applications?
Thanks!
