0

I have an ASP.NET application and a job scheduled using Quartz.NET that runs once every day. The job execution is nothing but a method call (Execute method to be specific) in one of the classes that implements IJob interface. If I host this web application on GoDaddy's grid hosting (they call it a cloud) where we dont have access to the physical server, would this job still run?

Shyam
  • 139
  • 1
  • 7

1 Answers1

0

Quart.Net has some dependencies to 3rd party libraries (common logging) that do not let it run under medium trust. So, if you can host Quartz.Net somewhere it can run under full trust, you should be ok, otherwise, you'll need to recompile Quartz.Net without the dependency to common logging.

jvilalta
  • 6,679
  • 1
  • 28
  • 36