Wrox Programmer Forums
|
General .NET For general discussion of MICROSOFT .NET topics that don't fall within any of the other .NET forum subcategories or .NET language forums.  If your question is specific to a language (C# or Visual Basic) or type of application (Windows Forms or ASP.Net) try an applicable forum category. ** PLEASE BE SPECIFIC WITH YOUR QUESTION ** When posting here, provide details regarding the Microsoft .NET language you are using and/or what type of application (Windows/Web Forms, etc) you are working in, if applicable to the question. This will help others answer the question without having to ask.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the General .NET section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 7th, 2005, 02:58 AM
Friend of Wrox
 
Join Date: Jun 2004
Posts: 449
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via MSN to r_ganesh76
Default Windows Service

Hi Experts,

I have created a class library in C#. I want one of the methods of this class to be executed at regular interwals. Can anybody give me some idea of achieving this task.

Should I create a Windows Service whcih schedules occationaly the invocation of this class method??

All suggestions are welcome

Thanking in advance


Regards
Ganesh
__________________
Regards
Ganesh
http://ganeshprof.blogspot.com
Find your solution here...
 
Old January 7th, 2005, 05:41 PM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

Yes, a Windows Service sounds like the right tool for the job. Follow the What's This link at the end of my post so see how I implemented a Windows and Web Service to get the title track in my signature.

The article gives a few links to other articles that explain how to build a Windows Service.

Alternatively, have a standard .exe perform the calls to the Class Library, and schedule the .exe with the Windows Task scheduler.

HtH,

Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to: Das alte Leid by Rammstein (Track 7 from the album: Herzeleid) What's This?
 
Old January 11th, 2005, 12:09 AM
Friend of Wrox
 
Join Date: Jun 2004
Posts: 449
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via MSN to r_ganesh76
Default

Thanx Imar

Regards
Ganesh
 
Old January 11th, 2005, 11:01 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

Ganesh,

If the method you want to periodically run needs to run very frequently then a service might be a good idea, however if all you need is for it to run occassionally a scheduled execution might make more sense.

Although I have not worked with windows ervices it seems to be that they should be reserved for such applications that have a more "real-time" demand or applications that need to be called by other things. However, Imar has written services so he's probably a better guy to ask (and listen to).
 
Old January 11th, 2005, 05:08 PM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

I agree with Peter on this. A Windows Service is great for something that has to run continuously, like a Web server, a DNS or DHCP server, Anti Virus software or that incredibly useful WinAmp tracker service... ;)

However, if you need to run some tasks at a certain interval, like send out a mailing once a day, a simple scheduled task (a VB Script, a simple (.NET) .exe, or something like that) is much better suited for the task.

Cheers,

Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.





Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Service monika.vasvani ASP.NET 1.0 and 1.1 Professional 1 January 3rd, 2009 05:39 PM
Impersonate with windows service for Service A/C vinod_yadav1919 C# 0 October 18th, 2008 02:29 PM
Windows Service everest C# 1 March 8th, 2007 01:10 PM
Accessing Windows service from a windows app sajid08 C# 1 October 6th, 2006 10:25 AM
Windows Service bmains Pro VB.NET 2002/2003 2 January 21st, 2005 03:21 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.