This has nothing to do with Quartz.Net, but is because the IIS server reuses the application pool after a period of inactivity.
I have the same problem, but all I am trying to do is cache data.
Therefore, I need to do the following in the applicationHost.config file:
<serviceAutoStartProviders> <add name="PreWarmMyCache" type="PreWarmCache, MyAssembly" /> </serviceAutoStartProviders>
Then a function is called that populates the XML document and saves it as a lookup table in the cache, which will be used as needed.
And the problem is that if I use the AssemblyQualifiedName attribute, it returns the following for my class:
MyApp.PreWarmCache, App_Code.<
Where ######### is changed every time the code is compiled.
I do not want to separate this from the DLL, as this may lead to a repeated copy of the code.
So the question is the same.
Can I / provide an explicit assembly name for dynamically compiled ASP_ classes on an ASP.NET site?
This is fixed, the output code in a separate assembly, the compiled added link, now everything is complete.
source share