Questions tagged [enterprise-library]

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.

Microsoft Enterprise Library consists of a collection of application blocks and core infrastructure. All of these are reusable software components designed to assist developers with common enterprise development challenges. It also comes with a lot of guidance, including the Developer's Guide, MSDN documentation, Hands-on Labs, Videos and Demos.

Enterprise Library 6 contains the following:

  • Data Access Application Block
  • Exception Handling Application Block
  • Logging Application Block
  • Validation Application Block
  • Policy Injection Application Block
  • Unity Dependency Injection Container
  • Semantic Logging Application Block (SLAB)
  • Transient Fault Handling Application Block ("Topaz")

Sites

Books

enter image description here

1586 questions
0
votes
1 answer

Best way to take advantage of .NET 3.5

I currently have an asp.net web application which is using seperate assemblies for the data access, the business logic, entity objects, and the web user interface. The data access was created using Microsoft's Data Access Application Block compilied…
0
votes
0 answers

Enterprise library v5 exception

I am getting the following exception while executing queries through enterprise library v5. SqlCommand.DeriveParameters failed because the SqlCommand.CommandText property value is an invalid multipart name "SELECT QUERY", the current limit of "4" is…
nilobarp
  • 3,806
  • 2
  • 29
  • 37
0
votes
2 answers

How to store complex configuration information for a .Net/ASP.Net application on .Net 4.5

I am looking for a simple and elegant means to store settings for my application. Here is an example that closely depicts that I am looking for public class Office { string location; int numberOfWorkStations; int numberOfServers; …
0
votes
1 answer

Can I use mutiple RuleSet withe in a same Validator Attribute in Microsoft Enterprise Library Validation Framework

Helllo..... I am quite new in Microsoft Enterprise Library Validation Framework. My question is that I want same validation condition in two different RuleSet. Is it possible to put two rule set with in the same Validator like below ///…
Jatin Khurana
  • 1,155
  • 8
  • 15
0
votes
1 answer

Oracle Data Provider (ODP.NET) using Microsoft Enterprise Library 6.0?

I am using ODP.NET's Oracle.DataAccess.Client 4.112.2 as my Oracle Data Provider and EntLib 6.0. Does anyone know of someone that has implemented this functionality having created your own OracleDatabase that derives from EntLib's Database. I have…
Donald N. Mafa
  • 5,131
  • 10
  • 39
  • 56
0
votes
1 answer

EntLibConfig.exe - change indentation on XML

The "EntLibConfig.exe" tool that comes with Microsoft Enterprise Library tends to reformat entire .config XML files after you change some of your settings in the GUI. With XML files, we have a coding standard of 4 space indentation, but…
Andy White
  • 86,444
  • 48
  • 176
  • 211
0
votes
1 answer

Enterprise Library Logging - Send email with line-breaks

I use Enterprise Library Logging to log errors and to send some notifications. I've configured Email Listener. I need to send some list of warnings at the end of user session. Log.LogMessage(String.Join(vbCrLf, Errors), Log.Severity.Error,…
0
votes
1 answer

C#.Net : How to read trace file path defined in App.config through .net code?

Trace File Path in App.Config as follows -
Sumit Deshpande
  • 2,155
  • 2
  • 20
  • 36
0
votes
1 answer

Using Enterpise Library 6 Exception Handling Application Block with WCF?

I have these three packages loaded to my WCF service project: EnterpriseLibrary.Common Version 6.0.1304.0 EnterpriseLibrary.ExceptionHandling 6.0.1304.0 EnterpriseLibrary.ExceptionHandling.WCF Version 6.0.1304.0 Here is the service interface…
BBauer42
  • 3,549
  • 10
  • 44
  • 81
0
votes
2 answers

ESB Toolkit and Enterprise Library collision

Hi i need to use enterprise library 5 to maintain consistency across the board in the enterprise environment. Unfortunately we have got biz talk installed in our machines. It seems that enterprise library collides with ESB Toolkit. ESB Toolkit…
nzdev
  • 324
  • 1
  • 9
  • 24
0
votes
1 answer

asp.net mvc3 how to set connection string for enterprise library

I am trying to learn mvc3/4 by trying to build my current project. How do you set the connection string for enterprise library? I have downloaded the libraries and added as reference. But I dont know how to set the connection string. this is what I…
Arif YILMAZ
  • 5,754
  • 26
  • 104
  • 189
0
votes
1 answer

Validation Application Block with ASP.NET MVC4 applications

I want to use the Enterprise Library Validation Application Block with my ASP.NET MVC4 application. Which version of Enterprise Library is recommended? Can anyone provide an example of XML Configuration file for VAB for ASP.NET MVC4? I found an…
Andy
  • 1,080
  • 5
  • 20
  • 35
0
votes
1 answer

Azure Autoscaling Application Block - Enterprise Library 6.0

First, if you use nuget and add in the Azure Autoscaling application block and try to run it, you will get a error on the StorageClient assembly version, since its compiled with the older version. I found a solution to this ( a hack really ) -…
Dave
  • 629
  • 6
  • 11
0
votes
1 answer

Missing LoggingHandler in Enterprise Library 5.0

I have been experimenting with both ELMAH and the EL 5.0. I may go to ELMAH as it is a bit easier to deal with for an internal-only project, but this has been bothering me. I tried setting up the EL 5.0 Exception Handling block in conjunction with…
appsecguy
  • 1,019
  • 3
  • 19
  • 36
0
votes
1 answer

How to make Enterprise Library 5 to be compatible with .NET 4.5?

I'm working with a project under .NET 4.5 & trying to use EL 5.0 Logging application block. The purpose is to load logging block schema from a separate file. Code which is shown below is executed successfully under .NET 4.0, but throws the…
JSP
  • 457
  • 1
  • 7
  • 19