active questions tagged enterprise-library - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T18:27:05Zhttp://stackoverflow.com/feeds/tag/enterprise-libraryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1855584/validation-application-block-questions0Validation Application Block Questionsbioluminescence2009-12-06T14:50:31Z2009-12-07T02:25:04Z
<p>Hi,</p>
<p>Has anyone used the validation application block from enterprise library? Any success?</p>
<p>Anyways, my question is with regards to validating a numeric unique identifier. Lets say I have a Product class, with a ProductId property representing the unique identifier of the product. It is numeric. This identifier cannot be less than 1, it has to be greater than 1. I do not what validation type to choose using the validation application block. I was thinking of trying the range type, but it requires 2 values, a lower and an upper value.</p>
<p>Another question to validating business object properties. Is this the best way to test business objects? I want to specify validation rules just once, then I want to use them across different layers, like ASP.NET. I have never validated business objects this way, just on the client side. Can someone please tell me what is the best route to go with and if I am in the right direction?</p>
<p>Can someone advise?</p>
<p>Thanks
Brendan</p>
http://stackoverflow.com/questions/1703423/how-to-integrate-enterprise-library-validation-application-block-validationresult1How to Integrate Enterprise Library Validation Application Block ValidationResults between WCF and ASP.NET?Tuzo2009-11-09T20:07:58Z2009-12-05T14:11:26Z
<p>Enterprise Library Validation Application Block (VAB) integrates with ASP.NET and also with WCF. </p>
<p>Is there a way to integrate ValidationResults created in WCF with ASP.NET? </p>
<p>e.g. an ASP.NET web page invokes a WCF service. The WCF service validates the data using VAB and returns validation information via a FaultContract. The ASP.NET page can take the results and display some error messages. However, a common approach is to indicate which fields have errors (e.g. inline message or asterisk). It seems that most of these approaches will involve being able to correlate the validation result with a control or with a validator. </p>
<p>I don't think there is an out of the box solution but was also curious if anyone had done this and what their approach was.</p>
http://stackoverflow.com/questions/1832198/postsharp4entlib-with-entlibv4-10PostSharp4EntLib with EntLibv4.1??zee2009-12-02T10:59:54Z2009-12-02T10:59:54Z
<p>I have a project which uses Enterprise Library v4.1, can i use PostSharp4EntLib with Enterprise Library 4.1? The current release of PostSharp4EntLib is supposed to work with EntLib v3.1?</p>
http://stackoverflow.com/questions/1084772/policy-injection-with-asp-net-mvc-controllers0Policy Injection with ASP.NET MVC Controllersnikmd232009-07-05T20:32:53Z2009-11-30T14:18:51Z
<p>I'm running into an issue with the Policy Injection Application Block from Enterprise Library in conjunction with ASP.NET MVC.</p>
<p>In my ControllerFactory, I'm creating the controller and then calling <code>PolicyInjection.Wrap</code> on the controller. This gives me back a Transparent Proxy to the controller which manages the call handler chain.</p>
<p>Finally, I cast the Transparent Proxy to an <code>IController</code> and return it.</p>
<p>This seems to work well, except that none of the call handlers I've defined for my controller are executing. (For example I have a Logging Handler configured, but nothing is being logged by PIAB.)</p>
<p>Is my final cast messing this up somehow? How does <code>ControllerBase.Execute()</code> call into my controller? It seems like my proxy should be utilized. Anyone using PIAB on ASP.NET controllers?</p>
http://stackoverflow.com/questions/1815671/new-net-3-5-project-which-dal-technology-to-use3New .NET 3.5 Project: Which DAL technology to use?Kave2009-11-29T14:27:39Z2009-11-29T15:29:13Z
<p>Hello,</p>
<p>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 that it has to be efficient and scalable in the long run.</p>
<p>I plan to use WPF (MVVM) Client and WCF Service on a 3 Tier system.</p>
<p>Just to sum up all the existing technologies I am familiar with:</p>
<p><strong>DataSets</strong></p>
<p>PRO: Might be a bit old fashioned, but very easy to use and let the most parts to be auto generated for you. One powerful aspect about datasets are the ease of traversing related data through the Relations. Also in a way its disconnected from database and might simplify the updates by taking care of timestamps automatically. Includes validation.</p>
<p>CONTRA: Quite old fashioned. Some consider them as no real business objects/Models but just a mirror of your SQL data tables. Passing them between WCF Service/Client might be more difficult than self created business objects.</p>
<p><strong>Enterprise Library 4.1 - Data Access Block</strong></p>
<p>PRO: The DAL is beautifully put into a Factory pattern. It takes care of connection opening and closing automatically. Very easy to use for most part. It supports both dataSets and normal SQL Sps to create your own Business objects. As part of an ongoing Framework it can be much more efficient to use in combination with rest of the Enterprise Library for an efficient end product.</p>
<p>CONTRA: ??</p>
<p><strong>Linq to SQL</strong></p>
<p>PRO: Auto creates the SQL tables into business objects. Easy to CRUD. Theoretically a very nice way to do it.</p>
<p>CONTRA: Having played around with it when it came out, I found it flaky and sometimes instable. It is already considered a dead technology after Microsoft announcement that Entity Framework 4.0 - as part of .NET 4.0 - will be Microsoft recommended way. Only few bug fixes are too be expected in .NET 4.0 but no more feature extending plans. </p>
<p><strong>Entity Framework 4.0</strong></p>
<p>I don't know anything about it, but only that it will eventually replace everything else as on .NET 4.0. I am also tempted to use it, however since its still in BETA, I wouldnt be able to go that way yet.</p>
<p>I am very tempted to use Enterprise Library 4.1 - Data Access Block and to create my own business objects. The big Con is that it will take more time to create the DAL. Unless someone can convince me of using DataSets through the Data Access Block instead. </p>
<p>What are your comments and ideas?
Many Thanks,
Kave</p>
http://stackoverflow.com/questions/1798689/enterprise-library-policy-injection-logging-managed-security-context-information0Enterprise Library Policy Injection Logging Managed Security Context Information in ASP.NETjmbledsoe2009-11-25T17:41:56Z2009-11-27T05:51:13Z
<p>I am using The Policy Injection Application Block to log methods that are called in my ASP.NET application. I would like these log entries to include information like the current user identity, whether the user is authenticated and so forth. All of this information is provided by the <code>ManagedSecurityContextInformationProvider</code>, but I can't figure out how to get the PIAB to use that provider and how to get that information into my log file. </p>
<p>I may be missing something obvious, but I can't quite figure out what it is.</p>
http://stackoverflow.com/questions/1110843/installing-microsoft-enterprise-libraries-and-databasefactory2Installing Microsoft Enterprise Libraries and DatabaseFactory LoganFrederick2009-07-10T17:21:48Z2009-11-25T20:08:41Z
<p>I'm attempting to use the DatabaseFactory method from the Microsoft Enterprise Library.</p>
<pre><code>using Microsoft.Practices.EnterpriseLibrary.Data;
</code></pre>
<p>The error I get is: <code>The type or namespace 'Practices' does not exist in the namespace Microsoft</code></p>
<p>I tried going to Microsoft's site to install the Enterprise Library, worked through the installation process and it still doesn't work. Did I install it to the wrong location? Any ideas?</p>
<p>Edit: I followed Kev's directions and got everything working. Thanks for your guys' help.</p>
http://stackoverflow.com/questions/312428/logging-using-policy-injection-application-block1Logging using policy injection application blocknetseng2008-11-23T11:59:06Z2009-11-25T17:32:33Z
<p><strong>Hi All</strong></p>
<p>I want to ask, how to use policy injection application block to log methods entry and exit in these cases :</p>
<p><strong>Case1 :</strong> in case of logging events handlers of a web form controls, you know the class let's say _Default must be inherited from class <strong>System.Web.UI.Page</strong> , so we can't inherit our class from <strong>MarshalByRefObject</strong> class so logging will not work.</p>
<p><strong>Case2 :</strong> in case we have a <strong>static</strong> class and we have to log the methods within, what we can do to inherit this class from <strong>MarshalByRefObject</strong> calss, in order to get logging works.</p>
http://stackoverflow.com/questions/955578/wcf-logging-using-logging-application-block1WCF logging using Logging Application BlockAnatoly2009-06-05T12:18:21Z2009-11-21T01:57:33Z
<p>I have a WCF service which is secured with username and password (using SqlMembershipProvider). I'd like to log EVERY (succeeded and failed) login attempt to this service and save user credentials to the database using Logging Application Block. When I turn on WCF logging and trace it with Logging Application Block, i get something like this (about 100 of this logs for one login attempt):</p>
<pre><code>Timestamp: 6/5/2009 12:03:01 PM
Message: <TraceRecord xmlns="http://schemas.microsoft.com/2004/10/E2ETraceEvent/TraceRecord" Severity="Start"><TraceIdentifier>http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.ActivityBoundary.aspx</TraceIdentifier><Description>Activity boundary.</Description><AppDomain>IX.Services.Host.vshost.exe</AppDomain><ExtendedData xmlns="http://schemas.microsoft.com/2006/08/ServiceModel/DictionaryTraceRecord"><ActivityName>Execute 'Services.Contracts.ILoginService.Login'.</ActivityName><ActivityType>ExecuteUserCode</ActivityType></ExtendedData></TraceRecord>
Category: System.ServiceModel
Priority: 2147483647
EventId: 131085
Severity: Start
Title:
Machine: PC204
Application Domain: Services.Host.vshost.exe
Process Id: 7864
Process Name: D:\..\Services.Host.vshost.exe
Win32 Thread Id: 6392
Thread Name:
Extended Properties: TraceEventCache - System.Diagnostics.TraceEventCache
</code></pre>
<p>I cannot find any useful information from this logs (namely user credentials). So, my question is: how can i log user credentials from WCF services to the database using Logging Application Block?</p>
<p>Thanks in advance for your answer!</p>
http://stackoverflow.com/questions/1771808/entlib-logging-add-edit-tracelisteners-at-runtime1EntLib logging - add/edit TraceListeners at runtimeAndy White2009-11-20T16:56:46Z2009-11-20T19:58:09Z
<p>I have a web application where I would like to add or edit Enterprise Library logging at runtime. I'm familiar with how to configure EntLib Logging completely programmatically and through the config file, but I would like to use a combination of the two. I'd like to have some base TraceListeners setup via the config file, but then at application startup, I'd like to conditionally add some Email TraceListeners depending on some other user settings stored in a database.</p>
<p>My current solution is to open the web.config as a Configuration object, and modify the web.config sections by hand, but I'm wondering if there's a way to programmatically add TraceListeners to the currently configured LogWriter (or whichever) classes.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1759141/programmatic-configuration-of-enterprise-library-logging-block1Programmatic configuration of Enterprise Library logging blockDavid W2009-11-18T21:16:53Z2009-11-19T04:17:20Z
<p>I've previously used log4net, but my current employer uses Enterprise Library application blocks. I had previously developed unit tests for my core logging classes as follows and was wondering is someone knew the equivalent for the OneTimeSetup code below for the logging app block (sorry for the long code post):</p>
<pre><code>public abstract class DataGathererBase
{
public readonly log4net.ILog logger = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
public void CollectData()
{
this.LogDebug("Initialize started");
}
public static class Logger
{
private static LoggingSettings settings = LoggingSettings.GetLoggingSettings(new SystemConfigurationSource());
static Logger()
{
log4net.Config.XmlConfigurator.Configure();
}
public static void LogDebug(this DataGathererBase current, string message)
{
if (current.logger.IsDebugEnabled)
{
current.logger.Debug(string.Format("{0} logged: {1}", current.GetType().Name, message));
}
}
}
[TestFixture]
public class LoggerTests:DataGathererBase
{
private ListAppender appender;
private static ILog log;
[TestFixtureSetUp]
public void OneTimeSetup()
{
appender = new ListAppender();
appender.Layout = new log4net.Layout.SimpleLayout();
appender.Threshold = log4net.Core.Level.Fatal;
log4net.Config.BasicConfigurator.Configure(appender);
log = LogManager.GetLogger(typeof(ListAppender));
}
[Test]
public void TestLogging()
{
this.LogDebug("Debug");
Assert.AreEqual(0, ListAppender.logTable.Count());
}
}
</code></pre>
http://stackoverflow.com/questions/1751052/using-enterprise-library-exception-handling-application-block-in-asp-net-code-r1Using Enterprise Library Exception Handling Application Block in ASP.NET - Code Reviewjmbledsoe2009-11-17T19:07:00Z2009-11-18T20:11:47Z
<p>I'm implementing the Enterprise Library Exception Handling Application Block in an ASP.NET application that I am building. I'm planning to handle uncaught application exceptions by placing the following code in my Global.asax.cs:</p>
<pre><code>protected void Application_Error()
{
Exception error = Server.GetLastError();
Exception errorToThrow;
if (ExceptionPolicy.HandleException(error, "Application Error", out errorToThrow))
{
if (errorToThrow != null)
throw errorToThrow;
}
else
Server.ClearError();
}
</code></pre>
<p>I believe this will work to handle various post-handling actions of the policy (None, NotifyRethrow, ThrowNewException) but I want to know if anyone sees significant problems with this implementation.</p>
http://stackoverflow.com/questions/547665/whats-the-essential-difference-between-the-two-handleexception-methods-of-exce0What's the essential difference between the two HandleException() methods of Exception Handling Application Block (Ent Lib 4.1)Jason Bunting2009-02-13T21:03:52Z2009-11-18T04:51:49Z
<p>In the most recent version (4.1, released October 2008) of The Microsoft Enterprise Library's Exception Handling Application Block, there are two HandleException() method signatures, and I am a bit lost on the intent for these, especially since neither the documentation, intellisense, nor the QuickStart apps intimate any meaningful difference.</p>
<p>Here are the two signatures:</p>
<pre><code>bool HandleException(Exception exceptionToHandle, string policyName);
bool HandleException(Exception exceptionToHandle, string policyName, out Exception exceptionToThrow);
</code></pre>
<p>All of the examples I have found use the first, as in this example straight out of the XML documentation comments on the actual method:</p>
<pre><code>try
{
Foo();
}
catch (Exception e)
{
if (ExceptionPolicy.HandleException(e, name)) throw;
}
</code></pre>
<p>And here, from the same source (the XML doc comments for the method), is an example of using the second:</p>
<pre><code>try
{
Foo();
}
catch (Exception e)
{
Exception exceptionToThrow;
if (ExceptionPolicy.HandleException(e, name, out exceptionToThrow))
{
if(exceptionToThrow == null)
throw;
else
throw exceptionToThrow;
}
}
</code></pre>
<p>So, my question is, what does using the second one give you that the first does not? This should probably be obvious to me, but my head is a mess today and I don't really want to keep banging my head against the proverbial wall any longer. :)</p>
<p>No speculations, please; I hope to hear from someone that actually knows what they are talking about from experience using this.</p>
http://stackoverflow.com/questions/924832/mono-compatibility-with-enterprise-library-4-12Mono Compatibility with Enterprise Library 4.1Ervin Ter2009-05-29T07:40:38Z2009-11-17T20:00:14Z
<p>Does anybody using latest enterprise library 4.1 in mono? I used mono migration analyzer to analyze my web application and realized all enterprise library dll is failed in mono. </p>
<p>I need to know is that true that enterprise library 4.1 is not compatible in mono 2.4?</p>
http://stackoverflow.com/questions/658886/enterprise-library-exception-handling-application-block-and-logging-application-b1Enterprise Library Exception Handling Application Block and Logging Application Block proper use in ASP.NETPhantomTypist2009-03-18T15:54:18Z2009-11-17T19:08:37Z
<p>I have a grasp on this application block with ASP.NET, but I feel unsure if I am coding with it properly in ASP.NET.</p>
<p>I've looked all over for proper examples of how to use the Enterprise Library Exception Handling Application Block, but only turn up articles for Windows Forms.</p>
<p>Could somebody please point me in the right direction for usage of the Enterprise Library Exception Handling Application Block with ASP.NET? (e.g. handling exceptions in classes, when to propagate exception to Application_Error in Global.asax, how to process handled and unhandled exceptions in Application_Error).</p>
<p>I would really like to see what other people are doing.</p>
<p>Code incorporating the Enterprise Library Error Handling Application Block with the Logging Application Block would also be helpful.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1749530/setting-a-category-in-the-net-enterprise-library-logging-to-event-log0Setting a 'category' in the .net enterprise library logging (to event log)Matt Joslin2009-11-17T15:12:26Z2009-11-17T17:28:53Z
<p>I am writing some logs to the event log using the Microsoft enterprise library </p>
<p>Its writes logs away fine but doesnt seem to set the category in the event log. The category appears okay in the message body of the log (if I choose to set that) but the <em>event viewer</em> doesnt pick up the category.</p>
<p>What am i missing?
<hr></p>
<p>c# source</p>
<pre><code>LogEntry log = new LogEntry();
log.Message = "Test";
log.Categories.Add("Event");
Logger.Write(log);
</code></pre>
<p>web config</p>
<pre><code><loggingConfiguration name="Logging Application Block" tracingEnabled="true"
defaultCategory="General" logWarningsWhenNoCategoriesMatch="true">
<listeners>
<add source="TestLogSource" formatter="Text Formatter" log="TestLog"
machineName="" listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FormattedEventLogTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=3.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
traceOutputOptions="None" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.FormattedEventLogTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=3.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
name="Formatted EventLog TraceListener" />
</listeners>
<formatters>
<add template="Timestamp: {timestamp}&#xD;&#xA;Message: {message}&#xD;&#xA;Category: {category}&#xD;&#xA;Severity: {severity}"
type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=3.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
name="Text Formatter" />
</formatters>
<categorySources>
<add switchValue="All" name="Events">
<listeners>
<add name="Formatted EventLog TraceListener" />
</listeners>
</add>
<add switchValue="All" name="General">
<listeners>
<add name="Formatted EventLog TraceListener" />
</listeners>
</add>
</categorySources>
<specialSources>
<allEvents switchValue="All" name="All Events" />
<notProcessed switchValue="All" name="Unprocessed Category" />
<errors switchValue="All" name="Logging Errors &amp; Warnings">
<listeners>
<add name="Formatted EventLog TraceListener" />
</listeners>
</errors>
</specialSources>
</code></pre>
<p></p>
http://stackoverflow.com/questions/627557/enterprise-library-logging-block-and-email1Enterprise Library: Logging Block and EmailJack2009-03-09T18:53:59Z2009-11-13T16:22:14Z
<p>Does anyone have a tutorial link or an example on how to use the Logging block to send out error email?</p>
<p>Jack</p>
http://stackoverflow.com/questions/1728571/logging-from-multiple-processes-to-same-file-using-enterprise-library-4-12Logging from multiple processes to same file using Enterprise Library 4.1Riko2009-11-13T11:07:34Z2009-11-13T16:10:46Z
<p>I have several processes running concurrently that I want to log to the same file.</p>
<p>We have been using Enterprise Library 4.1 Logging Application Block (with a <code>RollingFlatFileTraceListener</code>), and it works fine, apart from the fact that it prepends a GUID to the log file name when two processes try to write to the log file at the same time (a quirk of <code>System.Diagnostics.TextWriterTraceListener</code> I believe).</p>
<p>I've tried various things, including calling <code>Logger.Writer.Dispose()</code> after writing to the log file, but it's not ideal to do a blocking call each time a log entry is being written.</p>
<p>The EntLib forums suggest using MSMQ with a Distributor Service, but that is not an option as MSMQ is not allowed at my company.</p>
<p>Is there another way I can quickly and easily log from multiple threads/processes to the same file?</p>
http://stackoverflow.com/questions/1600510/validate-a-collection-has-at-least-one-item-using-validation-application-block1Validate a Collection Has at Least One Item using Validation Application Block.Ian Nelson2009-10-21T12:33:36Z2009-11-13T02:11:11Z
<p>Using the Enterprise Library 4.1 Validation Application Block, how can I validate that a collection property contains at least one item?</p>
http://stackoverflow.com/questions/1714032/have-log-entries-forced-to-a-single-line-when-using-pp-entlib-logging-block0Have log entries forced to a single line when using p&p EntLib logging blockRobert MacLean2009-11-11T09:23:04Z2009-11-11T15:01:47Z
<p>I am using the patterns & practices enterprise library (p&p EntLib) logging block to write to a text file. </p>
<p>Some of the log message contain multiple lines which I would like to force to become a single line - in other words replacing the <code>\r</code> & <code>\n</code> with a space in the log messages prior to them being written to the file.</p>
<p>How do I configure the logging block for this, if this is possible?</p>
http://stackoverflow.com/questions/1712414/purpose-of-unity-application-block-in-microsoft-enterprise-library1Purpose of Unity Application Block in Microsoft Enterprise Library?Dave2009-11-11T01:23:32Z2009-11-11T01:51:47Z
<p>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. </p>
<p>What are some practical uses for the Unity block?</p>
http://stackoverflow.com/questions/460264/enterprise-library-validation-block-validate-nullable-properties1Enterprise Library Validation Block - Validate nullable properties?Robert MacLean2009-01-20T06:24:39Z2009-11-09T20:04:43Z
<p>I am trying to come up with a validation for a nullable property, like int?</p>
<p>Example</p>
<pre><code> [RangeValidator(0, RangeBoundaryType.Inclusive, 1, RangeBoundaryType.Inclusive)]
int? Age { get; set; }
</code></pre>
<p>However if I set Age to null validation fails because it doesn't fall in the range, I know I need an [ValidatorComposition(CompositionType.Or)] as well, but what else should I use? </p>
http://stackoverflow.com/questions/1683009/best-way-to-take-advantage-of-net-3-50Best way to take advantage of .NET 3.5Chris2009-11-05T19:38:47Z2009-11-06T17:41:38Z
<p>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 as a .NET 2.0 assembly. Stored procedures were used for the actual moving of data in and out of the database
(SQL 2005).</p>
<p>I would like to update this application to a take advantage of the new features of .NET 3.5 such as Linq, data entities,
etc. What would be the best approach to make this happen?</p>
http://stackoverflow.com/questions/1667608/is-it-a-good-practice-to-create-wrapper-over-3rd-party-components-like-ms-enterpr3Is it a good practice to create wrapper over 3rd party components like MS enterprise Library or Log4net?rauts2009-11-03T14:21:28Z2009-11-03T19:20:19Z
<p>Hi All,</p>
<p>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 etc for these. </p>
<p>I wanted to know if its a good practise to use these directly or create wrapper over each service and Use a DI to inject that service in the code.</p>
<p>regards</p>
http://stackoverflow.com/questions/1652215/entlibconfig-exe-change-indentation-on-xml0EntLibConfig.exe - change indentation on XMLAndy White2009-10-30T20:45:24Z2009-11-01T00:55:07Z
<p>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 EntLibConfig seems to use 2 spaces.</p>
<p>Is there any way to configure this tool to customize how it indents the XML is writes out? In Visual Studio, I have all the XML settings set to 4 spaces (no tabs), but this does not seem to have any effect.</p>
http://stackoverflow.com/questions/1647856/enterprise-library-editor-overwrites-settings-in-external-files0Enterprise Library editor overwrites settings in external filesJakob Gade2009-10-30T03:24:53Z2009-10-30T03:24:53Z
<p>I’ve come across a rather strange bug (I assume it’s a bug) in the Enterprise Library 4.1 configuration editor. I decided to put the EntLib configuration in external files as we have multiple configurations and want to be able switch between them easily.</p>
<p>Web.config, snippet (irrelevant sections removed):</p>
<pre><code><configuration>
<configSections>
<section name="enterpriseLibrary.ConfigurationSource" type="[... type def ...]" />
<section name="dataConfiguration" type="[... type def ...]" />
...
</configSections>
<enterpriseLibrary.ConfigurationSource selectedSource="Production Mode">
<sources>
<add name="Debug Mode" filePath="Entlib Configs\Debug Mode.config" type="[... type def ...]" />
<add name="Production Mode" filePath="Entlib Configs\Production Mode.config" type="[... type def ...]" />
</sources>
</enterpriseLibrary.ConfigurationSource>
...
</configuration>
</code></pre>
<p>The external files are placed in a subfolder, and everything is working quite nicely.</p>
<p>However: If I now open the web.config in the EntLib configuration editor, the EntLib config settings from the current active external file (set in the selectedSource attribute) are visible – they appear to be set in the web.config, and I assume this is the intention. But if I actually save web.config from the EntLib editor, the settings are removed from the external config file and they not even stored in the web.config. They’re just gone!!! </p>
<p>I think the intention was that you could use the editor to manage multiple config files: Changes would be changed in the correct file (which actually has the settings), but this feature was apparently never fully implemented.</p>
<p>Question: Is there a way to avoid this issue? Is my configuration of the external files wrong (although it’s working fine)?</p>
http://stackoverflow.com/questions/1628808/database-trace-listener-with-enterprise-library-2-0-not-logging-in-database1Database Trace Listener with Enterprise library 2.0 not logging in databaseSweta Jha2009-10-27T04:39:36Z2009-10-27T22:57:33Z
<p>I am using Database TraceListener for logging. I've executed the CreateLoggingDb.cmd and the Logging Database is in place. My web.config looks like the below. </p>
<p>When an excpetion occurs I try to log it as below.</p>
<p>ExceptionPolicy.HandleException(ex, "PayrollException");</p>
<p>The code runs but it does not log in the database table. Please let me know if the settings in web.config are not correct or the procedure for logging has to be different.</p>
<p>
</p>
<p>
</p>
http://stackoverflow.com/questions/1630029/deploy-microsoft-application-block-in-shared-folder1Deploy Microsoft Application Block in Shared Folderrauts2009-10-27T10:52:57Z2009-10-27T12:12:32Z
<p>Hi All,</p>
<p>We are creating a shared libraries which is basically wrapper over the Microsoft Application Blocks (Caching, Logging etc).</p>
<p>I am trying to make this library available to multiple ASP.Net application. </p>
<p>This library is deployed in a shared foler.</p>
<p>I have created a custom Container which will be used by all ASP.net application to use any service (logging, caching) etc from Library. Location of the Library Folder is used by the container to locate the library dll.</p>
<p>All the configuration for the Application Block is in app.config which is loaded dymanically by the Application blocks.</p>
<p>The problem i am facing is that the Configuration tries to load the Application block assuming that Application Block Dlls will stored in the GAC but For some reason I cannot place the application block assemblies in GAC. I have them in the same folder as Library Dll.</p>
<p>Because of this, the Library Dll is not able to load the Application Block. I think one way of resolving this is to Specify the CodeBase element in the runtime section in Machine.Config. I would like to know if there is any better way where in I can specify the location of the Application blocks dlls in Config file.</p>
<p>Any thoughts?</p>
<p>Regards,</p>
http://stackoverflow.com/questions/1624974/how-to-store-diferent-message-formats-in-the-same-log-file0How to store diferent message formats in the same log file?Tom S.2009-10-26T13:59:29Z2009-10-26T14:16:46Z
<p>Hi everyone, im using Enterprise Library Logging Block for tracing messages in my application, and i want to write messages with the following templates, in the same log file:</p>
<pre><code>MESSAGE TEMPLATE 1:
Timestamp: {timestamp}
MessageType: {severity}
Message: {message}
appID: {keyvalue(Username)}
MESSAGE TEMPLATE 2:
Timestamp: {timestamp}
MessageType: {severity}
Message: {message}
Stacktrace:{keyvalue(Stacktrace)}
appID: {keyvalue(Username)}
Module: {keyvalue(Module)}
</code></pre>
<p>For it i use the following code:</p>
<pre><code>LogEntry logEntry = new LogEntry();
logEntry.Message = message;
...
Logger.Write(logEntry);
</code></pre>
<p>However this writes messages with the TEMPLATE 1, and i would like to define what template im using before writting to the file...</p>
<p>Anyone as clues about the best way to do this?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1622975/sending-email-with-the-ms-enterprise-library-logging-application-block-via-smtppi1Sending email with the MS Enterprise Library Logging Application Block via smtppickupfolder?Pandincus2009-10-26T03:46:34Z2009-10-26T04:21:51Z
<p>I like the MS Enterprise Library Logging Application Block because it lets me easily define a few logging settings and then log an error in a line or so of code from my application.</p>
<p>However, I really want to be able to send email using my SMTP server's pickup folder. Just using the plain old System.Net block in your web.config, you could do:</p>
<pre><code><system.net>
<mailSettings>
<smtp deliveryMethod="pickupDirectoryFromIis" from="testuser@domail.com">
</smtp>
</mailSettings>
</system.net>
</code></pre>
<p>or something like that, and then you're done.</p>
<p>Is this possible in the Logging Application Block? I don't want to specify the server and port.</p>
<p>Thanks, Stack Overflow!</p>