Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8930431
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:53:28+00:00 2026-06-15T08:53:28+00:00

I am working on creating a messaging service that runs in the background of

  • 0

I am working on creating a messaging service that runs in the background of my web role. When the web role starts up it starts a Quartz job that runs once a day and sends some emails. I now have my web role set to never go to sleep because of idle. This allows my job to execute regardless of activity on my site.

The issue that I am having is that if I don’t visit my site when its first deployed the job never starts. I am worried that if my webrole ever gets moved to a new instance by some Azure magic that my email service won’t be running.

The job is started in Global.asax in the Application_Start method. How do I get my web role to automatically start when it’s deployed?

-Edit-

Originally I was trying to start my job from WebRole.cs OnStart, but then I was getting errors from entity framework about my database connection. So if anyone knows how to to access connections strings in my web config from WebRole.cs OnStart that would answer my question too.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T08:53:30+00:00Added an answer on June 15, 2026 at 8:53 am

    Put your code in your WebRole.cs:

    public class WebRole : RoleEntryPoint
    {
        public override bool OnStart()
        {
            Task.Factory.StartNew(StartQuartzJob);
            return base.OnStart();
        }
    
        private void StartQuartzJob()
        {
            // Do work here.            
        }
    }
    

    This code runs when your instance starts (after a deploy, after a reboot, …). The advantage here is that it runs in a different process (WaIISHost.exe) that runs before your web application starts in IIS. So even if you don’t have any requests going to that instance or if your application pool recycles, this process will keep running. Keep in mind that, since this is a different process, you won’t have access to the web.config

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on creating a windows service that will send emails to a customer
I am working on creating a web app that will query event logs on
I'm working on creating an HTML form that has an image in the background.
We are working on creating an installation package for a WCF-based web service. The
I'm working on creating a test suite that runs on multiple databases using dbunit
I'm working on creating a map of Day Z (the game) with leaflet JS
I am working on creating what I hope one day will be a publicly
i'm working on creating an app that streams mp3s from a server. i'm using
I am currently working on creating a header file that acts like the standard
I'm currently working on creating a private messaging system, (PHP/MySQL) in which users can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.