Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C#
Article

Remote Logging using .NET Queued Components

Rate me:
Please Sign up or sign in to vote.
4.36/5 (10 votes)
16 Dec 20023 min read 115.5K   838   28   14
An article on logging using .NET Queued Components.

Introduction

Distributed applications almost always require a logging mechanism to log major events or errors to a logging service. These applications also require the logging solution to be highly available, reliable, and efficient.

In the following article a remote logging mechanism is discussed that uses .NET Queued Component framework for logging. .NET Queued Components provide an asynchronous, highly available, and guaranteed delivery functionality using COM+ queuing framework.

.NET Queued Components

A Queued Component is merely an object that runs asynchronously within COM+. The client of a queued component dynamically creates a proxy object for the deployed queued component. The proxy object works transparently as recorder and records all the methods invoked on the object. When released, this proxy object takes all method calls and builds a message that is sent to the server queue.

A COM+ listener at server side processes the messages in the server queue transparent to the client. It reads the message from the queue and invokes the method on the server object in the same order they were invoked at client side earlier. In case of errors during the method invocation, the method invocation is aborted and the message containing all the method calls is placed into a retry queue. If it fails on that retry, it is put into another retry queue. The intervals between retries are not configurable.

The message is placed into a special queue dead letter queue after five unsuccessful retries. Manual intervention of some type is required to successfully process or deal with such messages.

Logging classes

Proposed solution is based on a client and a server class. The sample code consists of a LogClient and LogServer class. A test application uses LogClient to log messages in LogServer queue. LogServer class inherits from ServicedComponent, which makes it run within EnterpriseServices. LogServer class also implements ILogServer interface to enable queuing support.

C#
// LogServer Interface
public interface ILogServer
{
    void LogEventMessage(string logString);
    void LogExceptionMessage(string logString,byte[] arrBytes);
}

LogEventMessage() method logs a given message and LogExceptionMessage() method logs a given caller name and an object of ApplicationException as byte stream in log file. LogClient calls LogServer Queued Component to log messages. The client's LogEventMessage and LogExceptionMessage methods use a COM Moniker. A Moniker is a special name for a class that not only includes the class name, but also includes controlling information.

C#
LogServer = (ILogServer) 
      Marshal.BindToMoniker("queue:/new:LogService.LogServer");

The .NET Framework includes a special namespace System.Runtime.InteropServices to deal with COM Interop, including COM Monikers. The Marshal.BindToMoniker method comes from the InteropServices namespace. It allows us to create an object from a COM Moniker.

MSMQ must be installed on the computer in workgroup mode in order to run the sample application. A batch file register.bat is included in the sample application package. Change this file according to your directory structure and run it to register the LogServer queue. Start the LogServer from Component Services. Now run LogServerTest application to log messages.

Marshalling

Marshalling between client and server component is simpler for simple types like string, integers but complex types need to implement IPersistStream interface for marshalling. I used byte stream to marshal an ApplicationException object to server.

C#
// Convert an object to a byte array
private byte[] ObjectToByteArray(Object obj)
{
    if(obj == null)
        return null;
    BinaryFormatter bf = new BinaryFormatter();
    MemoryStream ms = new MemoryStream();
    bf.Serialize(ms, obj);
    return ms.ToArray();
}

At server side, un-marshalling is done by converting byte stream to an Object,

C#
// Convert a byte array to an Object
private Object ByteArrayToObject(byte[] arrBytes)
{
    MemoryStream memStream = new MemoryStream();
    BinaryFormatter binForm = new BinaryFormatter();

    memStream.Write(arrBytes, 0, arrBytes.Length);
    memStream.Seek(0, SeekOrigin.Begin);

    Object obj = (Object) binForm.Deserialize(memStream);

    return obj;
}

Further details about .NET Queued Components can be found at MSDN. I hope this logging approach would be helpful.

History

  • Source code last updated - 12/16/2002

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRemote Access com+ Pin
DearSoul17-Oct-06 0:21
DearSoul17-Oct-06 0:21 
Generaliis + msmq over http Pin
cohenraz5-Jan-06 0:58
cohenraz5-Jan-06 0:58 
Generalneed help using client and server on seperate servers Pin
Shan McArthur3-Jul-04 11:28
Shan McArthur3-Jul-04 11:28 
GeneralNo log file is created Pin
VMD26-Sep-03 10:12
VMD26-Sep-03 10:12 
GeneralRe: No log file is created Pin
Mohsin Khalil26-Sep-03 11:01
Mohsin Khalil26-Sep-03 11:01 
GeneralRe: No log file is created Pin
Mohsin Khalil26-Sep-03 11:05
Mohsin Khalil26-Sep-03 11:05 
GeneralNo log file is created Pin
VMD26-Sep-03 10:10
VMD26-Sep-03 10:10 
QuestionQueued Component over the HTTP ? Pin
Adrian Bacaianu4-Aug-03 4:03
Adrian Bacaianu4-Aug-03 4:03 
Generalerror message trying to register Pin
hodgear26-Feb-03 6:16
hodgear26-Feb-03 6:16 
QuestionSuccesses ? Pin
IgDev26-Dec-02 4:16
IgDev26-Dec-02 4:16 
AnswerRe: Successes ? Pin
Mohsin Khalil27-Dec-02 5:59
Mohsin Khalil27-Dec-02 5:59 
GeneralRe: Successes ? Pin
IgDev27-Dec-02 16:49
IgDev27-Dec-02 16:49 
GeneralRe: Successes ? Pin
Anonymous20-Feb-03 7:30
Anonymous20-Feb-03 7:30 
AnswerRe: Successes ? Pin
Diego Trinciarelli10-Oct-06 0:29
Diego Trinciarelli10-Oct-06 0:29 

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.