Click here to Skip to main content
15,867,986 members
Articles / Web Development / IIS / IIS 7.0

Five steps to using a logging utility in your projects using Application Blocks

Rate me:
Please Sign up or sign in to vote.
1.60/5 (24 votes)
5 Mar 2014CPOL3 min read 41K   51   5
Steps to use a logging utility in your projects using Application Blocks.

Table of Contents

Introduction

It’s a new world of software reusability. Gone are the days when we need to build things from scratch. One of the most needed functionality is the logging utility. Every software project needs a logging utility. To make your own logging utility is a big project by itself. In this tutorial, we will quickly run through how we can use Microsoft logging application blocks to log messages and activities.

You can log your errors or debug messages to the following sources using logging application blocks:

  • Event log
  • Email
  • Database
  • Message queue
  • Write to text file
  • WMI events
  • Custom locations using application block extension points

Other Application Blocks

  • Validation application blocks: This article explains the 16 steps you need to perform to do validations using VAB: Validation application blocks.
  • Client side validation: One of the shortcomings in VAB is that it does only server-side validations. This article talks how we can leverage VAB for client side: Client side validation.
  • Policy application blocks: This article talks how to implement a plug and play mechanism using Policy application blocks: Policy Application Block
  • Data application: This article talks about the four steps you need to implement data application blocks: Data application block.
  • Exception application block: This application talks how we can use exception application blocks to log exceptions from projects: Exception application block.
  • Unity application block: This application talks about Unity Application Block in DI and IOC: Unity application block.
  • UIP block: This article talks about reusable navigation and workflow for both Windows and Web using Microsoft UIP blocks: UIP block.

Step 1

Create a new project with a simple button on an ASPX page. Let’s name this button btnlogger. What we will do is, when anyone clicks on this button, we will log an error message in the event log.

Image 1

Figure: Simple project

Step 2

Download Enterprise Library 4.0 from http://www.microsoft.com/downloads/details.aspx?FamilyId=90DE37E0-7B42-4044-99BE-F8ECFBBC5B65&displaylang=en. Once you install it, you should see the same in programs – Microsoft Patterns and Practices. Click on Open and browse to your web.config file and click the Open button.

Image 2

Figure: Enterprise Library installed

Image 3

Figure: Open the web.config file

Step 3

All your logging facility is stored on the web.config file. Now right click on the tree, click New, and click the Logging Application block menu.

Image 4

Figure: Add Logging Application Block

Step 4

By default, the logging utility logs to event logs. So you will see in the trace listeners an event log trace listener already added. Click on the event log trace listeners and specify the machine name. Currently my machine name is HP.

Image 5

Figure: Specify machine name

Step 5

Now that we have defined the necessary configuration using the logging enterprise tool, it’s time to call the same in the code. So we add the Enterprise logging application DLL, add the logging namespace, create an object of the logentry object, and finally log the message using the logger DLL.

Image 6

Figure: Use the logging application block

Now if you run the program and click the button, you should see the message logged in the event viewer. To view event viewer, click on Start, Run, and type eventvwr.

Image 7

Figure: Logged in the event viewer

For further reading do watch the below interview preparation videos and step by step video series.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect https://www.questpond.com
India India

Comments and Discussions

 
GeneralMore detail needed Pin
BillW331-Oct-08 8:49
professionalBillW331-Oct-08 8:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.