Stories recently tagged with 'WindowsService'

12/2007: Code that I've Blogged over the last 6 months (pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 5 months ago

This is a collection of my blogs posts that include code from over the last 6 months. There's stuff ranging from a Windows Service monitor that runs in the system tray, to UrlRewriting/UrlMapping, to ASP.NET AJAX, to a JavaScript based Slideshow component, to adding iPhone style flick support to scrolling a web page using JavaScript. read more...

add a comment |category: |Views: 15

tags: another

Windows Services ThreadPool Hell(itwebmonkey.com)

submitted by davidsdavids(480) 4 years, 7 months ago

Overcoming issues with threadpools in windows services. read more...

add a comment |category: |Views: 165

tags: another

Talking to a Windows Service hosting WF(ajdotnet.wordpress.com)

submitted by ajdotnetajdotnet(2940) 4 years, 7 months ago

What will become of a Windows Service if I attach a WCF interface to it? A Service in the SOA sense or an internal service? What if I need a publicly available service? read more...

add a comment |category: |Views: 20

tags: another

Hosting WF(ajdotnet.wordpress.com)

submitted by ajdotnetajdotnet(2940) 4 years, 7 months ago

Hosting WF is easy, and there are a lot of samples available. However most samples are too simplistic for real world demands, especially when it comes to Windows Services. read more...

add a comment |category: |Views: 22

tags: another

How To Uninstall a Failed Windows Service Installation(vbnotebookfor.net)

submitted by hl7coderhl7coder(145) 4 years, 9 months ago

How to fix a bad Windows Service install read more...

add a comment |category: |Views: 9

tags: another

A Windows Service Monitor that runs in the system tray(pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 10 months ago

This is a small utility that monitors windows services running on the local machine. And notifies you via an icon in the system tray and a balloon popup telling you which services aren't running. You can also Start and Stop services from this utility. And it's Open Source. read more...

add a comment |category: |Views: 201

tags: another

Creating a Rules Processing Framework - Part 1 - The Rules Provider(wijix.com)

submitted by pjacobspjacobs(375) 5 years, 1 month ago

I will describe how to create a Rules Engine Framework using C#. It will take a few posts to describe the entire process but it's very cool and your going to want to read them all. In Part 1, I am going to describe the Rules Provider. read more...

add a comment |category: |Views: 82

tags: another

Debugging a Windows Service using Visual Studio .NET 2005(wijix.com)

submitted by pjacobspjacobs(375) 5 years, 1 month ago

Demonstrate how to allow Windows Services to be debugged using Visual Studio .NET 2005 read more...

4 comments |category: |Views: 56

tags: another

Creating a .NET Windows Service(en.csharp-online.net)

submitted by HyleHyle(2755) 5 years, 7 months ago

The article details three different approaches to creating a .NET service. Most common is the timer-based service, which simply relies on a timer to invoke the background thread periodically. I also cover two other alternatives: using a single worker thread and using multiple worker threads. While the timer strategy is the simplest, the approaches using a single worker thread and multiple worker threads (specifically the multithreaded approach) offer some advantages. read more...

add a comment |category: |Views: 25

tags: another