I just got to learn a bit about web services in .net (.asmx and all stuff)

For my project i need to schedule a program which cralwels a set of websites and then update the newly available data to the database every 30 minute.

I have created a [WebMethod] for both the crawler code to run and for database updation if available.

But i want that this [WebMethod] get automate and runs for every 30 minutes?

link|improve this question

67% accept rate
why would you make the crawler method a Web Method? – Bas Brekelmans Jan 15 at 15:49
4  
And just so you know, asmx is legacy, you should have a look at WCF. – KMan Jan 15 at 15:53
@BasB : I need to schedule so that i can get updated database after each 30 mintues or so. – ItsLockedOut Jan 15 at 15:58
feedback

2 Answers

up vote 3 down vote accepted

it is not necessary create a WebMethod to do this, you can make in the server side, and for schedule operations, I always use Quartz.net

link|improve this answer
Is this Quartz.net can schedule my task if its hosted on a shared hosting environment, IIS etc? – ItsLockedOut Jan 15 at 16:04
@gustavo +1 for quartz.net looks interesting – Andy Skirrow Jan 15 at 16:09
@ItsLockedOut yes it can, I usually use in an asp.net website hosted on IIS – Gustavo Freddo Jan 15 at 16:14
@GustavoFreddo : Okay i would try my hands on that... – ItsLockedOut Jan 15 at 16:23
feedback

I may be incorrect but it looks like you want to schedule a background task using asp.net? I haven't used Quartz.Net but I have done this using a simple example provided by Jeff Attwood. The following code is from Global.asax.cs and on application startup schedules a recurring job every 60 minutes:

void Application_Start(object sender, EventArgs e)
{
    var refreshMinutes = 60;
    AddTask("UpdateInfo", 
            (int)TimeSpan.FromMinutes(refreshMinutes).TotalSeconds);
}

private void AddTask(string name, int seconds)
{
    OnCacheRemove = new CacheItemRemovedCallback(CacheItemRemoved);
    HttpRuntime.Cache.Insert(name, seconds, null,
        DateTime.Now.AddSeconds(seconds), Cache.NoSlidingExpiration,
        CacheItemPriority.NotRemovable, OnCacheRemove);
}

public void CacheItemRemoved(string key, object v, CacheItemRemovedReason r)
{
    if ("UpdateInfo".Equals(key))
    {
        try
        {
            new SearchService().UpdateInfo();
        }
        catch (Exception ex)
        {
            logger.Error("UpdateInfo threw an exception: {0} {1}", ex.Message, ex.StackTrace);
        }
    }

    AddTask(key, Convert.ToInt32(v));
}

Note Phil Haack has a post on The Dangers of Implementing Recurring Background Tasks In ASP.NET which provides some useful techniques for making the process more robust.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.