I have a web application and have setup Quartz to initialize the scheuduler during application starts up. My question is does Quartz Scheduler live within the same appdomain or the scheduler has its own appdomain?
The reason I asked this is because in my Quartz job, I need to retrieve some configuration data using ConfigurationManager.GetSection["MySettings"] (which is available in my web.config) and sometimes it will complain that it can't find the configuration.
What I'm puzzled is this does not happen to all the instances of the job, it is intermitent.
Anyone faces this kind of issue before?
Regards, lyf