I have a web app that uses SessionManager to handle DO sessions but I also need to off load some work to additional threads. I cannot pass the SessionManager domain to these threads because they don't have access to the HTTPrequest object. I am creating a second domain using the standard Domain.Build which the threads then use to create sessions. What are the problems with using two domains in the same app? |