It is not a best practice nor recommend way to call a servlet from scheduler. You can call a service from scheduler. Move the existing logic in Servlet to a OSGi service or write a new service and call that OSGi service in your scheduler.This promotes better separation of concerns, code reusability,...