Tagged Questions
Microsoft Enterprise Library is a collection of application blocks and core infrastructure designed to assist developers with common enterprise development challenges such as logging, validation, data access, etc.
51
votes
6answers
17k views
Enterprise Library Unity vs Other IoC Containers
What's pros and cons of using Enterprise Library Unity vs other IoC containers (Windsor, Spring.Net, Autofac ..)?
31
votes
6answers
3k views
Can Unity be made to not throw SynchronizationLockException all the time?
The Unity dependency injection container has what seems to be a widely known issue where the SynchronizedLifetimeManager will often cause the Monitor.Exit method to throw a ...
26
votes
4answers
9k views
System.Web.Caching vs. Enterprise Library Caching Block
For a .NET component that will be used in both web applications and rich client applications, there seem to be two obvious options for caching: System.Web.Caching or the Ent. Lib. Caching Block.
...
21
votes
7answers
8k views
What's your favorite (free) log viewer for EntLib or Log4Net? [closed]
Currently we have Enterprise Library Logging going to the Event Log & a rolling flat file, but I'd like to implement database level logging so that I can have much better ...
20
votes
5answers
9k views
log4net vs Enterprise Library, which is better? faster?
Anyone know of some performance comparisons of the latest version Enterprise Library and the latest version of log4net?
Any technical reason why I should choose one over the other?
17
votes
10answers
2k views
Continue with Microsoft Enterprise Library?
I've been using the Microsoft Enterprise Library since before it was labeled as such for abstracted data access, in place of writing my own DAL. Originally I was just importing one file (sqlhelper.cs) ...
17
votes
3answers
7k views
Advantages and disadvantages of using Enterprise Library
Im just starting a project and since this project is personal I was wondering what are the advantages of using Enterprise Library? We use the version 2 for several projects in the office but im not ...
16
votes
10answers
2k views
Are you using the Microsoft Enterprise Library?
In my shop we currently develop what I would consider small to medium sized projects. We have been investigating the Enterprise Library and how it may be able to help us in development. I have ...
13
votes
6answers
2k views
Microsoft Exception Handling Block - Isn't it a perfect example for overengineering?
Ever since Microsoft has introduced the application blocks, I've been bumping into people who use the Exception Handling Application Block. I've recently had a closer look myself and would summarize ...
10
votes
2answers
3k views
Is there a log4net version for Silverlight?
Is there a log4net version built against Silverlight somewhere?
Failing that, can someone suggest an alternative logging framework to use in Silverlight?
9
votes
5answers
164 views
How to Decouple IoC Framework Implementation
I've been learning IoC, Dependency Injection etc. and enjoying the process. The benefits of decoupling and programming to interfaces are, to me, a no-brainer.
However, I really don't like binding ...
9
votes
6answers
13k views
Problem when trying to configure enterprise library 5.0 (Data Access Application Block)
Hi There Stackoverflow,
I am running into some problems while trying to get DAAB from Enterprise library 5.0 running. I have followed the steps as per the tutorial, but am getting errors...
1) ...
9
votes
2answers
5k views
Does Fluent-NHibernate support mapping to procedures?
I've been wondering if it's possible to have Fluent-NHibernate communicate with stored procedures that already exist and assign mapping from the result set to my own domain objects.
Also is ...
8
votes
1answer
244 views
Enterprise Library validation blocks
I've just started using the ms validation blocks which i think are awesome. but have a couple of questions regarding data validation between layers.
Currently I'm using the repository pattern as a ...
8
votes
1answer
4k views
Where does Microsoft.Practices.ServiceLocation come from?
Does any one know where Microsoft.Practices.ServiceLocation comes from? This is a namespace and a dll used in MS EnterpriseLibrary. Admittedly it's a very simple dll with just a handful of classes ...
8
votes
2answers
4k views
How to write just message to debug output with Enterprise Library Logging?
I want to implement logging with EntLib Logging and hook up two TraceListeners for category "Debugging". One will write those messages to file and other will output them to system trace output the ...
7
votes
4answers
891 views
System.Diagnostics.Debug namespace vs Other logging solutions (log4net, MS Enterprise Library, etc.)
I'm currently investigating various logging possibilities for .net projects and I can't decide between System.Diagnostics.Debug/Trace features and third party libraries like log4net, MS Enterprise ...
7
votes
2answers
2k views
log4net vs MS Logging Application Block
I am trying to understand pros and cons of using log4netor enterprise library logging application block (LAB) for logging in application. I know one thing LAB is little difficult to use then log4net.
6
votes
3answers
1k views
Table valued parameter in a stored procedure gets execute permissions denied error
I get the following error when calling a stored procedure that has a table valued parameter as one of the parameters
The EXECUTE permission was denied on the object 'ValidationErrors'
...
6
votes
5answers
812 views
New .NET 3.5 Project: Which DAL technology to use?
I am preparing a new Windows project and wonder what kind of DAL technology to use. Originally I was looking for something simpler to not spending too much time on building it. But I understand also ...
6
votes
10answers
2k views
How to effectively log asynchronously?
I am using Enterprise Library 4 on one of my projects for logging (and other purposes). I've noticed that there is some cost to the logging that I am doing that I can mitigate by doing the logging on ...
6
votes
1answer
2k views
How to send email in HTML format with Microsoft Enterprise Library?
I know how to send mails using the Microsoft Enterprise Library 2.0 using a text formatter. But these emails are always in plain text. Is there any way with entlib 2.0 to send these mails in HTML ...
6
votes
6answers
6k views
Pitfalls for converting a .net 2.0 solution to .net 3.5
We're moving a solution with 20+ projects from .net 2.0 to 3.5 and at the same time moving from Visual Studio 2005 to 2008. We're also at the same time switching from MS Entlib 2.0 to 4.0.
Is there ...
5
votes
2answers
359 views
MVC Mini Profiler with Microsoft Enterprise Library
I'm sure it's possible to profile the Enterprise Library SQL commands, but I haven't been able to figure out how to wrap the connection. This is what I have come up with:
Database db = ...
5
votes
1answer
507 views
Enterprise Library 5.0 - Application Logging - Incorrect DateTime
I am using Microsoft Enterprise library 5.0 for application logging of my .net application.
Logging is working properly. But the problem is the DateTime that is being logged along with the logging ...
5
votes
2answers
798 views
Differences between MEF, EntLib and Prism
I have a relatively basic question but more than anything just need some clarity really, I have been using Prism (Composite Application Guidance) to create a WPF MVVM desktop application in C#, this ...
5
votes
1answer
575 views
Using Unity Framework & Validation Application Block to Validate Method Parameters
Question
Is it posible to have the Validation.Validate() method of the Validation Application Block see each parameter of the IParameterCollection supplied by Unity as my custom UserModel?
...
5
votes
2answers
1k views
Purpose of Unity Application Block in Microsoft Enterprise Library?
Can someone explain to me what is the purpose of the Unity Application Block? I tried looking through the documentation but its all very abstract.
What are some practical uses for the Unity block?
...
5
votes
5answers
402 views
Is there a reason to NOT use .NET Framework-defined exception classes in your own code?
So, we are using the Enterprise Library 4.1 Exception Handling Application Block to deal with logging/handling our exceptions in a multiple-project application. We have a few custom exceptions and are ...
5
votes
1answer
4k views
Enterprise Library Database Trace Listener?
I'm using EntLib v4 for Logging and currently I'm saving the events to the default text file listener.
I would like to use MS SQL database as my event sink and I saw that the database listener is ...
4
votes
3answers
445 views
Enterprise Library Logging: Custom trace listener which sends messages to arbitrary WCF endpoint
I'm trying to write a custom trace listener for Enterprise Library Logging which sends all log messages to an arbitrary WCF endpoint. The idea behind this is that I can set up a simple console app, ...
4
votes
1answer
180 views
What is the LogWriter.ShouldLog(LogEntry) method behaviour based on?
What is the LogWriter.ShouldLog(..) method behaviour based on? Or what is the real intention of its usage? Its documentation page is rather sparse and doesn't provide much insight. Quoting it:
...
4
votes
4answers
2k views
Enterprise Logging Block vs NLog vs log4net
I need to use a logging library in my project and considering between Enterprise Logging Block vs NLog vs log4net. I found some links on the comparison but most of those are quite old and complaint ...
4
votes
2answers
1k views
When should I use Tracing vs Logger.NET, Enterprise Library, log4net or Ukadc.Diagnostics?
How do I choose between standard tracing, Logger.NET, Enterprise Library, log4net or Ukadc.Diagnostics?
Is there a situation where one is more appropriate than the other? ... what would that be? ...
4
votes
4answers
111 views
Why would I want to replace an exception?
I am using Enterprise Library 5.0, a tool to manage cross-cutting concerns like logging from.
One of the options the tool gives me is to "replace" an exception. I can see the purpose of wrap in some ...
4
votes
3answers
181 views
What exactly is “Reliable” logging?
So, I was talking with a guy the other day about Enterprise Library Logging Application Block and log4net.
Something I noticed was that log4net claims:
log4net is not reliable. It is a ...
4
votes
3answers
649 views
Microsoft Enterprise Library alternatives
Microsoft Enterprise Library has somewhat controversial feedback. Some developers like it, some say it is overengineered. Are there any alternatives to it? Both free and commercial.
4
votes
2answers
3k views
Upgrading EntLib 4.1 to 5 with Oracle.DataAccess.Client
I am upgrading a project from EntLib 4.1 to EntLib 5. I've skimmed through the Migration Guide, changed all the references and updated all the config files to point to EntLib 5. All worked fine accept ...
4
votes
4answers
362 views
How can I learn Enterprise Library 4.0?
I'm trying to learn the Enterprise Library. I found this useful code sample to get data from a SQL database. But I tried to send data via a parameter. I'm also using the UPDATE, DELETE, and SAVE ...
4
votes
3answers
3k views
Logging from multiple processes to same file using Enterprise Library 4.1
I have several processes running concurrently that I want to log to the same file.
We have been using Enterprise Library 4.1 Logging Application Block (with a RollingFlatFileTraceListener), and it ...
4
votes
8answers
615 views
Is it a good practice to create wrapper over 3rd party components like MS enterprise Library or Log4net?
This is more like a good practise question. I want to offer different generic libraries like Logging, caching etc. There are lots of third party libraries like MS enterprise library, log4Net, NCache ...
4
votes
3answers
3k views
Compare Logging Application Block in Enterprise Library versus Log4net?
Can somebody please compare these two logging mechanism?
4
votes
1answer
991 views
Exception.Data info is missing in EntLib log
How do I get the Exception Handling Application Block (EHAB) to write the values from the Exception.Data property in the log?
try
{
// ...
}
catch (Exception ex)
{
...
4
votes
2answers
2k views
Installing Microsoft Enterprise Libraries and DatabaseFactory
I'm attempting to use the DatabaseFactory method from the Microsoft Enterprise Library.
using Microsoft.Practices.EnterpriseLibrary.Data;
The error I get is: The type or namespace 'Practices' does ...
4
votes
1answer
1k views
System.ServiceModel.Security.MessageSecurityException occuring under ExceptionShielding
We are using the Enterprise Library 4.1 Exception Handling Application Block's ExceptionShielding feature in combination with a custom RoleProvider with our WCF services.
When the RoleProvider ...
4
votes
3answers
1k views
AS400 Data Connection in ASP.NET
I have an application that will reside within a business2business network that will communicate with our AS400 in our internal network environment. The firewall has been configured to allow the data ...
4
votes
2answers
504 views
Do common JARs have to be repeated accross WARs in an EAR?
I have a JAR file for authorization. I need it for each of my WAR files. All the WAR files are packaged in an EAR file. Do I have to repeat this common JAR in every WAR, or is there a structure for ...
4
votes
2answers
2k views
Enterprise Library Logging Block not logging
I'm having an issue with the 3.1 version of the logging application block...
With 3.5 framework my application works fine on my desktop... once it's deployed out to our qa box... the logging ceases ...
4
votes
4answers
2k views
How to use enterprise library logging in a .NET custom action
I have some library code which is used from my application and is also used by a .NET custom action in a Visual Studio installer project. The library code in turn uses the Enterprise Library logging ...
3
votes
5answers
51 views
Logging with backup appender
Is there any .NET logging framework that have ability to switch appender if something is wrong with current one. Actually what I want is following:
If I'm using database appender and when something ...