By tag: service
0
kicks
MVVM with Prism 101 – Part 6b: Wrapping IClientChannel
I could have used the title “Ditching Client Service Proxy” or “Avoiding Add Service Reference”, but that’s not what the meat of the post is about. However, that is essentially the goal of this post. The client service proxy generated when you use “Add Service Reference…” to reference your web servi...
0
kicks
daemoniq: Windows service hosting for mere mortals
Developing and debugging windows services or daemon processes in .Net can be a really painful and tedious process. Daemoniq takes a stab at this problem by providing another level of a abstraction on top of System.ServiceProcess?. This allows developers to concentrate on writing windows services in ...
0
kicks
How to create a setup project to install windows services
This post clearly explains how to create a setup project in visual studio
0
kicks
How to create a windows service in dot net framework
Explains detailed steps to create a windows service using visual studio
0
kicks
LyricWiki.org – How to retrieve lyrics for your mp3 in C
I have an iPhone and I got a lot of songs on it. I don’t particularly love to sing but I got a few bands that have tendencies to say their lyrics in a… obscure way. Since I’m really curious, I’m always on Google searching for the lyrics. I wanted to save some time and avoid unnecessary browsing. The...
0
kicks
Beginning Mocking With Moq 3 - Part 2
Beginners introduction to mocking using the recently released Moq 3 framework.
0
kicks
Use Event Aggregator to make your application more extensible
Recently, in KiGG/DotNetShoutout we have integrated Twitter, nothing complex, very basic thing like when a story is submitted or appears in the front page it will broadcast in Twitter and like our feed it will post the short url of the original story (Cant resist to do some shameless marketing f...
0
kicks
Implementing UnitOfWork Pattern In Linq To SQL Application
Implementing UnitOfWork Pattern In Linq To SQL Application
In my previous post, I have shown how to create Linq to Sql Repository which will have the maximum code coverage, In this post, I will show a simple UnitOfWork class which will flash the changes back to your database. I will be again use...
0
kicks
ASP.NET MVC, Unity and Common Service Locator
In this post, I will show you how can you extend Microsoft Patterns & Practices Unity Application Block and use it in ASP.NET MVC in conjunction with Patterns & Practices Common Service Locator. Extending Unity Unity is a dependency injection container from MS Patterns & Practices team. ...
0
kicks
Waegis is free
The anti-spam service Waegis, which started with a subscription model, just went free, even for the enterprise license.
Why sticking with Akismet any longer?
0
kicks
How to: Debug Windows Service in Visual Studio .NET
Debugging a Windows Service Application is a very unpleasant task because such application doesn’t run from within Visual Studio .NET. A Windows Service Application runs in the Services Control Manager context. This article is about how to debug a Windows Service application as a regulat Windows For...
0
kicks
Creating a .NET Windows Service
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 t...
0
kicks
Waegis - The Web Cleaner
Tired of Spam?
Spammers are disturbing our dear web! How do you feel about them? Do you have a site, blog, forum or Wiki? Have you been affected by lots of spam content on your site? How much of time do you spend to remove them everyday? How can they affect the look and feel of your site? How can t...
0
kicks
DNS-O-MATIC Updater - .NET Windows Service
An open-source project that will detect your current public IP and notify the DNS-O-Matic service which in turn will notify as many as 29 other services of your dynamic IP change (including DynDNS, OpenDNS, NO-IP.com, etc).
0
kicks
Windows Services Can Install Themselves
Using the InstallUtil.exe utility that ships with the .NET SDK can be a real pain. It's rarely in the PATH so you probably have to hunt down the utility when you are working on QA and production servers as I do. Installing a Windows Service should be easier. In this short article, I'll show you a wa...