User Claus Thomsen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T15:25:32Zhttp://stackoverflow.com/feeds/user/15555http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/949212/sql-2008-collation0Sql 2008 CollationClaus Thomsen2009-06-04T08:17:49Z2009-06-04T08:35:29Z
<p>What Collation should I choose for my Sql 2008 setup?</p>
<p>The setup is for an international company and Textual Data is Unicode. Default settings is based on Danish Locale PC.</p>
http://stackoverflow.com/questions/908073/easy-way-to-check-for-view-model-changes-in-asp-mvc2Easy way to check for view model changes in asp.mvcClaus Thomsen2009-05-25T21:17:03Z2009-05-25T22:49:16Z
<p>Is there a easy way of checking a view model(Not Domain Model) for modifications in the post back?</p>
<pre><code> public ActionResult Billing()
{
var viewModel = new BillingViewModel();
viewModel.prop1 = DomainService.Prop1 // Map Domain model to View Model
return View(viewModel);
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Billing(BillingViewModel viewModel)
{
//TODO: Check if ViewModel has changes and save to Domain Repository if valid
if (ValidateBillingViewModel(viewModel))
{
</code></pre>
<p>My homebrew solution would be to store a hash of model in hidden field and check it again, but is there a better option? </p>
http://stackoverflow.com/questions/689410/is-there-cache-with-linq-query-support1Is there Cache with Linq query supportClaus Thomsen2009-03-27T11:34:57Z2009-03-27T11:43:21Z
<p>Is there Cache preferably a distributed cache with Linq query support?</p>
http://stackoverflow.com/questions/657282/refresh-problem/657471#6574711Answer by Claus Thomsen for Refresh Problem Claus Thomsen2009-03-18T09:08:13Z2009-03-18T09:08:13Z<p>If I understand you correctly, you try to solve postback refresh problem.</p>
<p>In you postback method you can redirect back to same page when done</p>
<pre><code>Response.Redirect(Request.Path)
</code></pre>
<p>Although this will solve the problem, it is also an additional server round
trip, you should be aware of.</p>
http://stackoverflow.com/questions/654586/ddd-modeling-mn-relation-between-two-roots-where-the-relation-itself-carries-se/654806#6548060Answer by Claus Thomsen for DDD: Modeling M:N relation between two roots where the relation itself carries semantic meaningClaus Thomsen2009-03-17T15:40:07Z2009-03-17T15:40:07Z<p>You should not have a object Like SiteCustomerRelationship, its DB specific.</p>
<p>If its truly DDD you should have a Relation like:</p>
<pre><code>Aggregate<Site> Customer.Site
IEnumerable<Aggregate<Office>> Customer.Offices
</code></pre>
<p>and perhaps </p>
<pre><code>Aggregate<Office> Customer.DefaultOffice
</code></pre>
http://stackoverflow.com/questions/650109/search-engine-friendly-urls-in-asp-dot-net/650853#6508530Answer by Claus Thomsen for Search engine friendly urls in ASP dot NETClaus Thomsen2009-03-16T15:14:23Z2009-03-16T15:14:23Z<p>After some Read up on Routing in Asp.net:</p>
<p><a href="http://blog.eworldui.net/post/2008/04/ASPNET-MVC---Legacy-Url-Routing.aspx" rel="nofollow">http://blog.eworldui.net/post/2008/04/ASPNET-MVC---Legacy-Url-Routing.aspx</a></p>
<p>Which brings both 301 redirects for SEO page rank and Asp.net Routing for permanent organic SEO solution.</p>
http://stackoverflow.com/questions/650109/search-engine-friendly-urls-in-asp-dot-net/650158#6501580Answer by Claus Thomsen for Search engine friendly urls in ASP dot NETClaus Thomsen2009-03-16T12:13:38Z2009-03-16T12:13:38Z<p>You could use <a href="http://urlrewriter.net/" rel="nofollow">http://urlrewriter.net/</a> which can be used on asp.net 1.1 -></p>
http://stackoverflow.com/questions/650090/securing-a-mvc-view-so-only-the-server-can-access-it/650143#6501432Answer by Claus Thomsen for Securing a mvc view so only the server can access itClaus Thomsen2009-03-16T12:08:42Z2009-03-16T12:08:42Z<p>The best practice would be to expose a wcf service for this, and set up a security model that is different than website.</p>
<p>If you must use MVC the best approach use forms authentication with mvc and set </p>
<pre><code>[Authorize(Roles = "SecureUser")]
</code></pre>
<p>On the View.</p>
http://stackoverflow.com/questions/643131/is-there-a-rrdtool-net-equivalent1Is there a RRDTool .net equivalentClaus Thomsen2009-03-13T15:04:14Z2009-03-15T07:19:52Z
<p>I need to monitor a lot of data, and i know that RRDTool is a good option, but entire app is c# so ill prefer some Microsoft way or .net port. </p>
<p>Is there a .net way of doing the same as RRDTool? </p>
http://stackoverflow.com/questions/642337/html-css-in-asp-net-mvc-default-project/642424#6424241Answer by Claus Thomsen for html css in asp.net mvc default projectClaus Thomsen2009-03-13T12:21:12Z2009-03-13T15:07:45Z<p>its a CSS issue but in site.css you can make following changes:</p>
<pre><code>#menucontainer
{
margin-top:40px;
clear: both; /* Add this*/
}
and also
ul#menu
{
border-bottom: 1px #5C87B2 solid;
padding: 0 0 2px;
position: relative;
margin: 0;
text-align: left; /* Change from right to left */
}
</code></pre>
<p>Work for this Site.Master</p>
<pre><code><%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<asp:ContentPlaceHolder ID="head" runat="server">
<title></title>
</asp:ContentPlaceHolder>
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="page">
<div id="header">
<div id="title">
<h1>My MVC Application</h1>
</div>
<div id="logindisplay">
<% Html.RenderPartial("LogOnUserControl"); %>
</div>
<div id="menucontainer">
<ul id="menu">
<li><%= Html.ActionLink("Home", "Index", "Home")%></li>
<li><%= Html.ActionLink("About", "About", "Home")%></li>
</ul>
</div>
</div>
<div id="main">
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
<div id="footer">
</div>
</div>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/642406/how-to-remove-windows-user-account-using-c/642487#6424872Answer by Claus Thomsen for How to remove windows user account using C#Claus Thomsen2009-03-13T12:40:48Z2009-03-13T12:40:48Z<p>Something like this should do the trick(not tested):</p>
<pre><code>DirectoryEntry localMachine = new DirectoryEntry("WinNT://" + Environment.MachineName);
DirectoryEntries entries = localMachine.Children;
DirectoryEntry user = entries.Remove("User");
entries.CommitChanges();
</code></pre>
http://stackoverflow.com/questions/638104/how-can-i-know-a-dll-is-not-a-debug-build0How can I know a dll is not a debug buildClaus Thomsen2009-03-12T10:54:29Z2009-03-12T11:24:57Z
<p>How do i know for sure that my production server uses release build dll's. Is there a way to find that info inside dll? </p>
<p><hr /></p>
<p>Duplicate of: </p>
<ul>
<li><p><a href="http://stackoverflow.com/questions/194616/how-to-tell-if-net-app-was-compiled-in-debug-or-release-mode">How to tell if .net app was compiled in DEBUG or RELEASE mode?</a></p></li>
<li><p><a href="http://stackoverflow.com/questions/290080/how-to-check-if-dll-is-debug-compiled">How to check if DLL is debug-compiled</a></p></li>
</ul>
http://stackoverflow.com/questions/102902/what-is-a-good-ci-build-process4What is a good CI build-processClaus Thomsen2008-09-19T15:31:02Z2009-03-05T06:53:00Z
<p>What constitutes a good CI build-process?</p>
<p>We use CI, but is deployment to production even a realistic CI goal when you have dependencies on several services that should be deployed too and other apps may depend on these too.</p>
<p>Is a good good CI build process good enough when its automated to QA and manual from there?</p>
http://stackoverflow.com/questions/102980/is-iis7-migration-a-piece-of-cake0Is IIS7 migration a piece of cakeClaus Thomsen2008-09-19T15:36:56Z2009-01-13T22:27:06Z
<p>I wish to migrate a website to windows 2008 platform, is there any obvious pitfalls i should be aware of?</p>
<p>code base is c# 3.5,asp.net with ms ajax.</p>
http://stackoverflow.com/questions/424018/using-uniqueidentifiers-guids-as-custom-properties-in-log4net/424171#4241712Answer by Claus Thomsen for Using uniqueidentifiers/guids as custom properties in log4netClaus Thomsen2009-01-08T13:12:52Z2009-01-08T13:12:52Z<p>For your example the following should work:</p>
<pre><code><parameter>
<parameterName value="@Oid" />
<dbType value="Guid" />
<layout type="log4net.Layout.RawPropertyLayout">
<key value="Id" />
</layout>
</parameter>
</code></pre>
<p>Important is you rename @id to something else otherwise you will get Null values in database even if you try to insert strings,</p>
<p>And then use RawPropertyLayout to store, cus you do not need to do a convertion.</p>
http://stackoverflow.com/questions/301499/how-to-detect-image-format-in-a-stream0How to detect image format in a stream Claus Thomsen2008-11-19T10:37:26Z2008-11-19T10:45:18Z
<p>I need to detect Image format to save a image like image1.jpg, image2.gif, but i only have a stream, and i do not know the image format(gif, jpeg, png, etc)</p>
<p>Is there a way to detect imageformat from a stream?</p>
http://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4net3how to log MethodName when wrapping Log4netClaus Thomsen2008-10-01T11:50:01Z2008-10-01T14:30:32Z
<p>I have wrapped Log4net in a static wrapper and want to log </p>
<pre><code>loggingEvent.LocationInformation.MethodName
loggingEvent.LocationInformation.ClassName
</code></pre>
<p>However all i get is the name of my wrapper.</p>
<p>How can i Log that info using a forwardingappender and a static wrapper class like </p>
<pre><code>Logger.Debug("Logging to Debug");
Logger.Info("Logging to Info");
Logger.Warn("Logging to Warn");
Logger.Error(ex);
Logger.Fatal(ex);
</code></pre>
http://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4net/157891#1578911Answer by Claus Thomsen for how to log MethodName when wrapping Log4netClaus Thomsen2008-10-01T14:28:50Z2008-10-01T14:28:50Z<p>Well the error was somewhere in my appender but for completeness ill include the answer to the best of my knowledge:</p>
<p>the Facade you need should wrap ILogger and NOT ILog</p>
<pre><code> public static class Logger
{
private readonly static Type ThisDeclaringType = typeof(Logger);
private static readonly ILogger defaultLogger;
static Logger()
{
defaultLogger =
LoggerManager.GetLogger(Assembly.GetCallingAssembly(),"MyDefaultLoggger");
</code></pre>
<p>...</p>
<pre><code> public static void Info(string message)
{
if (defaultLogger.IsEnabledFor(infoLevel))
{
defaultLogger.Log(typeof(Logger), infoLevel, message, null);
}
}
</code></pre>
http://stackoverflow.com/questions/141534/mvc-n-level-route-building0MVC n-level route buildingClaus Thomsen2008-09-26T19:48:09Z2008-09-27T00:43:57Z
<p>I want to create a productcatalog with N-Level Categories</p>
<blockquote>
<p>e.g.</p>
<pre><code>/Catalog/Category1/Category2/../SubCategoryN/Product/{ProductActions}/{ID}
And at the same time be able to
/Catalog/Category1/Category2/../SubCategoryN/{CategoryActions}
</code></pre>
</blockquote>
<p>Is that possible and if Yes how?</p>
http://stackoverflow.com/questions/141916/what-are-the-good-code-review-walkthrough-techniques/141998#1419981Answer by Claus Thomsen for What are the good code review/walkthrough techniques?Claus Thomsen2008-09-26T21:11:04Z2008-09-26T21:11:04Z<p>A good review start is to write the checkin comments before the reviewer get there, that way review startingpoint is WHAT code needs to accomplish and not how its done - if code review does not catch the essence of what coder wants accomplished then its a waste of time.</p>
http://stackoverflow.com/questions/141781/net-web-service-logging/141835#1418354Answer by Claus Thomsen for .Net Web Service LoggingClaus Thomsen2008-09-26T20:39:27Z2008-09-26T20:39:27Z<p>Use wcf if possible and implement message logging see <a href="http://msdn.microsoft.com/en-us/library/ms730064.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms730064.aspx</a></p>
<pre><code><system.diagnostics>
<sources>
<source name="System.ServiceModel.MessageLogging">
<listeners>
<add name="messages"
type="System.Diagnostics.XmlWriterTraceListener"
initializeData="c:\logs\messages.svclog" />
</listeners>
</source>
</sources>
</system.diagnostics>
<system.serviceModel>
<diagnostics>
<messageLogging
logEntireMessage="true"
logMalformedMessages="false"
logMessagesAtServiceLevel="true"
logMessagesAtTransportLevel="false"
maxMessagesToLog="3000"
maxSizeOfMessageToLog="2000"/>
</diagnostics>
</system.serviceModel>
</code></pre>
http://stackoverflow.com/questions/116147/how-do-you-install-a-ssl-certificate/116219#1162191Answer by Claus Thomsen for How do you Install a SSL CertificateClaus Thomsen2008-09-22T17:22:20Z2008-09-22T17:22:20Z<p>You can look at </p>
<p><a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/bf6b6472-f58e-4271-9297-284357f69023.mspx?mfr=true" rel="nofollow">http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/bf6b6472-f58e-4271-9297-284357f69023.mspx?mfr=true</a></p>
<p>Something like:
set ssl = CreateObject("IIS.CertObj")</p>
<p>ssl.InstanceName = "0.0.0.0:443"</p>
<p>ssl.Import pfxfile, pfxfilepassword, true, true </p>
http://stackoverflow.com/questions/104815/reduce-startup-time-of-net-windows-form-app-running-off-of-a-networked-drive/104870#1048702Answer by Claus Thomsen for Reduce startup time of .NET windows form app running off of a networked driveClaus Thomsen2008-09-19T19:37:50Z2008-09-19T19:37:50Z<p>To speed up load time, you can compile a tiny start application and let that application do the loading of assemblies in runtime from a library outside bin folder.</p>
<p><a href="http://support.microsoft.com/kb/837908" rel="nofollow">http://support.microsoft.com/kb/837908</a></p>
http://stackoverflow.com/questions/104579/cvs-and-visual-studio-2008-integration-options/104778#104778-1Answer by Claus Thomsen for CVS and Visual Studio 2008 - integration optionsClaus Thomsen2008-09-19T19:24:37Z2008-09-19T19:24:37Z<p>Ankh is a open source choice</p>
<p><a href="http://ankhsvn.open.collab.net/" rel="nofollow">http://ankhsvn.open.collab.net/</a></p>
http://stackoverflow.com/questions/102980/is-iis7-migration-a-piece-of-cake/103430#1034301Answer by Claus Thomsen for Is IIS7 migration a piece of cakeClaus Thomsen2008-09-19T16:24:28Z2008-09-19T16:24:28Z<p>I googled a bit and found this link:</p>
<p><a href="http://weblogs.asp.net/steveschofield/archive/2008/09/04/iis6-to-iis7-migration-tips-tricks.aspx" rel="nofollow">http://weblogs.asp.net/steveschofield/archive/2008/09/04/iis6-to-iis7-migration-tips-tricks.aspx</a></p>
<p>Biggest Issue i find is that 3rd party components needs to have 64bit version ready to get most of benefits.</p>
http://stackoverflow.com/questions/103000/should-i-store-a-database-id-field-in-viewstate/103141#1031410Answer by Claus Thomsen for Should I store a database ID field in ViewState?Claus Thomsen2008-09-19T15:50:50Z2008-09-19T15:50:50Z<p>If its a simple id will choose to pass it in querystring, that way you do not need to do postbacks and page is more accessible for users and search engines.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/93909#939091Answer by Claus Thomsen for When is multi-threading not a good idea?Claus Thomsen2008-09-18T16:01:25Z2008-09-18T16:01:25Z<p>In priciple everytime there is no overhead for the caller to wait in a queue.</p>
http://stackoverflow.com/questions/93228/what-casing-is-a-driveletter0What casing is a driveletterClaus Thomsen2008-09-18T14:47:06Z2008-09-18T15:25:55Z
<p>is it uppercased C:\ or lowercased c:\ ?</p>
<p>We tried to come up with a conclusion, only argument is that that MS displays uppercase (C:)</p>
<p>Its not what is technically correct, its a matter of arguments choosing what to use when creating config file or hardcode other path info's e.g in a deployment script.</p>
http://stackoverflow.com/questions/92860/eventhandling-in-ascx-usercontrols1Eventhandling in ascx usercontrolsClaus Thomsen2008-09-18T14:10:01Z2008-09-18T14:21:32Z
<p>What is best practises for communicating events from a usercontrol to parent control/page i want to do something similar to this:</p>
<pre><code>MyPage.aspx:
<asp:Content ID="Content1" ContentPlaceHolderID="MainContentPlaceholder" runat="server">
<uc1:MyUserControl ID="MyUserControl1" runat="server"
OnSomeEvent="MyUserControl_OnSomeEvent" />
MyUserControl.ascx.cs:
public partial class MyUserControl: UserControl
{
public event EventHandler SomeEvent;
....
private void OnSomething()
{
if (SomeEvent!= null)
SomeEvent(this, EventArgs.Empty);
}
</code></pre>
<p>Question is what is best practise?</p>
http://stackoverflow.com/questions/88522/best-way-to-convert-a-decimal-value-to-a-currency-string-for-display-in-html/88555#885552Answer by Claus Thomsen for Best way to convert a decimal value to a currency string for display in HTML.Claus Thomsen2008-09-17T23:06:35Z2008-09-17T23:06:35Z<p>Use </p>
<pre><code>GetPrice().ToString("C", CultureInfo.CreateSpecificCulture("en-GB"))
</code></pre>
http://stackoverflow.com/questions/908073/easy-way-to-check-for-view-model-changes-in-asp-mvc/908099#908099Comment by Claus Thomsen on Easy way to check for view model changes in asp.mvcClaus Thomsen2009-05-27T09:37:28Z2009-05-27T09:37:28Z@Todd The idea, was to avoid the round trip to DB. Linq2Sql's Datacontext is only open during 1 request and cache is closed when new request comes in for the update. I can implement a application query cache, but it adds complexity. http://stackoverflow.com/questions/908073/easy-way-to-check-for-view-model-changes-in-asp-mvc/908099#908099Comment by Claus Thomsen on Easy way to check for view model changes in asp.mvcClaus Thomsen2009-05-25T21:49:58Z2009-05-25T21:49:58ZMy problem is that its costly to look up data again, just to see if user has modified any fields. Yes my ORM LINQ can take care of it, but it will hit DB for each request with a expensive aggregated sql which im not that keen on. Also storing it in Server cache would complicate matters, but it may be a viable solution if no other option presents itself.http://stackoverflow.com/questions/657282/refresh-problem/657471#657471Comment by Claus Thomsen on Refresh Problem Claus Thomsen2009-04-15T14:13:45Z2009-04-15T14:13:45Zasp.net uses form to post all data to server. The server side events are generated based on info in the post of form, and thus if you hit F5 you Resend form, and server side events get raised again. To Avoid this problem Post of forms should always be redirected to new "clean" page after process. http://stackoverflow.com/questions/658689/how-to-associate-labels-with-radio-buttons/659114#659114Comment by Claus Thomsen on How to associate labels with radio buttonsClaus Thomsen2009-03-18T17:15:52Z2009-03-18T17:15:52Zwell its was not a copy paste he beat me to it... However troethom's first example is still flawedhttp://stackoverflow.com/questions/658689/how-to-associate-labels-with-radio-buttons/658701#658701Comment by Claus Thomsen on How to associate labels with radio buttonsClaus Thomsen2009-03-18T16:41:49Z2009-03-18T16:41:49ZIm afraid this solution produces invalid html where id is dublicated
http://stackoverflow.com/questions/654586/ddd-modeling-mn-relation-between-two-roots-where-the-relation-itself-carries-se/654806#654806Comment by Claus Thomsen on DDD: Modeling M:N relation between two roots where the relation itself carries semantic meaningClaus Thomsen2009-03-17T16:30:27Z2009-03-17T16:30:27ZMy point is that is it the relationship that is active/inactive or is it the customer. It woul make a much simpler model if those where attributes of customer instead of having a "meta data" entity between themhttp://stackoverflow.com/questions/14923/can-i-generate-asp-net-mvc-routes-from-a-sitemap/15112#15112Comment by Claus Thomsen on Can I generate ASP.NET MVC routes from a Sitemap?Claus Thomsen2009-03-16T15:22:28Z2009-03-16T15:22:28ZAndrei Rinea: "{controller}/{action}/{*categoryPath}" will do the trick the important part is * that ensures wildcard mapping to N-level categories, but your controller needs to parse the categories manuallyhttp://stackoverflow.com/questions/650109/search-engine-friendly-urls-in-asp-dot-net/650141#650141Comment by Claus Thomsen on Search engine friendly urls in ASP dot NETClaus Thomsen2009-03-16T15:02:35Z2009-03-16T15:02:35ZEric, I cannot see how Asp.Net Routing will solve issue of maintaning e.g. pagerank for old url. So in my opinion using Asp.net routing on an existing site will make SEO even worse. For a long term solution i can second eventually substituting a UrlRewrite that issues a 301 with Asp.net Routing.http://stackoverflow.com/questions/650109/search-engine-friendly-urls-in-asp-dot-net/650141#650141Comment by Claus Thomsen on Search engine friendly urls in ASP dot NETClaus Thomsen2009-03-16T12:59:15Z2009-03-16T12:59:15ZWell it does not solve issue of posting a 301 redirect to client and as far as i understand post its a SEO thing that Arjun is looking for.http://stackoverflow.com/questions/643131/is-there-a-rrdtool-net-equivalent/647435#647435Comment by Claus Thomsen on Is there a RRDTool .net equivalentClaus Thomsen2009-03-16T11:55:59Z2009-03-16T11:55:59ZDefinitely worth a look, its a step in right direction :)http://stackoverflow.com/questions/642337/html-css-in-asp-net-mvc-default-project/642424#642424Comment by Claus Thomsen on html css in asp.net mvc default projectClaus Thomsen2009-03-13T12:42:55Z2009-03-13T12:42:55Zthe "clear: both;" is the keyhttp://stackoverflow.com/questions/638104/how-can-i-know-a-dll-is-not-a-debug-build/638190#638190Comment by Claus Thomsen on How can I know a dll is not a debug buildClaus Thomsen2009-03-12T11:57:22Z2009-03-12T11:57:22ZIts the non-programatic solution I was looking for :)
Only problem is that ildasm.exe is not a "standard" installation for a production server.http://stackoverflow.com/questions/638104/how-can-i-know-a-dll-is-not-a-debug-buildComment by Claus Thomsen on How can I know a dll is not a debug buildClaus Thomsen2009-03-12T11:52:28Z2009-03-12T11:52:28ZThe "Duplicate" is correct but the anwers there did not suit my needs. It a production server and i do not have access to installing neither own apps or 3rd party.http://stackoverflow.com/questions/638104/how-can-i-know-a-dll-is-not-a-debug-build/638209#638209Comment by Claus Thomsen on How can I know a dll is not a debug buildClaus Thomsen2009-03-12T11:41:57Z2009-03-12T11:41:57ZUnfortunately I do not have project available for compiling again :(http://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4netComment by Claus Thomsen on how to log MethodName when wrapping Log4netClaus Thomsen2008-10-01T14:02:46Z2008-10-01T14:02:46ZActually i wrap it like LoggerManager.GetLogger(Assembly.GetCallingAssembly(),"MyDefaultLoggger"), in order to avoid it