<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user">
    <title>gmane.comp.log.log4net.user</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5088"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5087"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5086"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5085"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5084"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5083"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5082"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5081"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5080"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5079"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5078"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5077"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5076"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5075"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5074"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5073"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5072"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5071"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5070"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.log.log4net.user/5069"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5088">
    <title>Re: How to force log4net to refresh timezone information?</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5088</link>
    <description>&lt;pre&gt;

Daily, but not in the way you think. The code runs on a device using
Windows Embedded 7. The device is imaged at our site with OS and our code.
Then it gets shipped to the customer site, connected to a network and fired
up. Installer enters one identifying key and our backend server then
configures the device over the network. We're trying to avoid a reboot
after initial configuration if possible.

I appreciate your recreation. Our system is indeed multi-threaded, and EACH
of our threads has a handler that does the ClearCachedData() call. Time
that our threads generate adjust appropriately. Log4net, as you discovered,
does not. You're now at the point where I am - aware that the library
doesn't seem to have a way to force this to change.

If DOES change on a restart - we're trying to avoid that. It's an
inconvenience. Not surprisingly, a lot of our initial support issues are
related to installation and first start. The weird times make it awkward.
So we do log that we changed the time and what the new offs&lt;/pre&gt;</description>
    <dc:creator>Warrick Wilson</dc:creator>
    <dc:date>2013-05-23T14:02:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5087">
    <title>AW: How to force log4net to refresh timezone information?</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5087</link>
    <description>&lt;pre&gt;I was able to reproduce the issue and - whether this is right or not - the microsoft developers have decided that changes in the system settings are not pushed to running (.NET) processes. Instead every process caches culture information and the cached information is used until it is explicitly refreshed. So the issue you observed is not something that affects only log4net, but it is something that affects all .NET applications around the globe. If you're happy with that explanation don't read on. More fancy stuff follows.

First I did not believe it would be so. Thus I wrote a small test application that does not much but display the current time:

public partial class MainWindow : Window
{
private static readonly ILog log = LogManager.GetLogger(typeof(MainWindow));

static MainWindow()
{
BasicConfigurator.Configure();
}

public MainWindow()
{
InitializeComponent();

DispatcherTimer dt = new DispatcherTimer();
dt.Interval = TimeSpan.FromSeconds(1);
dt.Tick += dt_Tick;
dt.Star&lt;/pre&gt;</description>
    <dc:creator>Dominik Psenner</dc:creator>
    <dc:date>2013-05-23T11:58:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5086">
    <title>AW: How to force log4net to refresh timezone information?</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5086</link>
    <description>&lt;pre&gt;In aircrafts the UTC timezone is used. And one is not allowed to use laptops during starts and landings. :-)

To come back to topic: is the time zone changed within an application or via the windows control panel that can be opened by following the guide below?

http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/windows_date_change_time.mspx?mfr=true

-----Ursprüngliche Nachricht-----
Von: Christian Grobmeier [mailto:grobmeier&amp;lt; at &amp;gt;gmail.com] 
Gesendet: Donnerstag, 23. Mai 2013 12:00
An: Log4NET User
Betreff: Re: How to force log4net to refresh timezone information?

Hi,

On Thu, May 23, 2013 at 11:31 AM, Dominik Psenner &amp;lt;dpsenner&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

Maybe its an app for use in aircraft? You never know...






--
http://www.grobmeier.de
https://www.timeandbill.de


&lt;/pre&gt;</description>
    <dc:creator>Dominik Psenner</dc:creator>
    <dc:date>2013-05-23T11:12:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5085">
    <title>Re: How to force log4net to refresh timezone information?</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5085</link>
    <description>&lt;pre&gt;Hi,

On Thu, May 23, 2013 at 11:31 AM, Dominik Psenner &amp;lt;dpsenner&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

Maybe its an app for use in aircraft? You never know...






--
http://www.grobmeier.de
https://www.timeandbill.de

&lt;/pre&gt;</description>
    <dc:creator>Christian Grobmeier</dc:creator>
    <dc:date>2013-05-23T09:59:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5084">
    <title>AW: How to force log4net to refresh timezone information?</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5084</link>
    <description>&lt;pre&gt;Hi

 

I'm wondering, how often does your deployment computer travel from one
timezone to another while it is powered on?

 

Cheers,

D.

 

Von: Warrick Wilson [mailto:guywithdogs&amp;lt; at &amp;gt;gmail.com] 
Gesendet: Donnerstag, 23. Mai 2013 05:55
An: log4net-user&amp;lt; at &amp;gt;logging.apache.org
Betreff: How to force log4net to refresh timezone information?

 

I've inherited a project that users log4net to do some logging. One of the
things that got noticed was that changes to the timezone on the PC that the
program runs on don't get the logging times changed (e.g. changing the
timezone from Pacific to Eastern does not change the logging time by 3
hours)

 

The program code that was written by "us" has routines in that trap an event
for timezone changes and call TimeZoneInfo.ClearCachedData() (something like
that... doing this from memory).

 

Is there a call that can be made to get the log4net "innards" to do the same
sort of thing?

&lt;/pre&gt;</description>
    <dc:creator>Dominik Psenner</dc:creator>
    <dc:date>2013-05-23T09:31:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5083">
    <title>How to force log4net to refresh timezone information?</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5083</link>
    <description>&lt;pre&gt;I've inherited a project that users log4net to do some logging. One of the
things that got noticed was that changes to the timezone on the PC that the
program runs on don't get the logging times changed (e.g. changing the
timezone from Pacific to Eastern does not change the logging time by 3
hours)

The program code that was written by "us" has routines in that trap an
event for timezone changes and call TimeZoneInfo.ClearCachedData()
(something like that... doing this from memory).

Is there a call that can be made to get the log4net "innards" to do the
same sort of thing?
&lt;/pre&gt;</description>
    <dc:creator>Warrick Wilson</dc:creator>
    <dc:date>2013-05-23T03:55:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5082">
    <title>Re: log4net with IntelliTrace</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5082</link>
    <description>&lt;pre&gt;The learning curve shouldn't be too steep as long as microsoft provides an
API to which you can attach to or invoke into.


2013/5/6 Todd Bradley &amp;lt;Todd.Bradley&amp;lt; at &amp;gt;nirvanix.com&amp;gt;




&lt;/pre&gt;</description>
    <dc:creator>Dominik Psenner</dc:creator>
    <dc:date>2013-05-06T19:45:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5081">
    <title>RE: log4net with IntelliTrace</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5081</link>
    <description>&lt;pre&gt;I'll keep that in mind. The biggest hurdle, I imagine, would be finding a way to stream events into Microsoft's system. I seriously doubt they designed it to be easy to integrate 3rd party tools with, though I could be wrong!


Thanks,
Todd.

From: Dominik Psenner [mailto:dpsenner&amp;lt; at &amp;gt;gmail.com]
Sent: Monday, May 06, 2013 11:12 AM
To: Log4NET User
Subject: Re: log4net with IntelliTrace

Hi Todd,

Feel free to implement your custom appender that sinks events into IntelliTrace. If you're willing to share your achievements and if microsofts licensing allows log4net to invoke IntelliTrace, we would be happy to accept any sensible patches.

Cheers,
D.

2013/5/6 Todd Bradley &amp;lt;Todd.Bradley&amp;lt; at &amp;gt;nirvanix.com&amp;lt;mailto:Todd.Bradley&amp;lt; at &amp;gt;nirvanix.com&amp;gt;&amp;gt;
Yup. We're using VS Ultimate for load testing, and the tests are based on some functional tests that we're trying to use log4net with. We like Apache Logging, as two of us have used log4j at other companies before we came to this C# shop. But we're still trying to come to grips with all&lt;/pre&gt;</description>
    <dc:creator>Todd Bradley</dc:creator>
    <dc:date>2013-05-06T18:28:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5080">
    <title>Re: log4net with IntelliTrace</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5080</link>
    <description>&lt;pre&gt;Hi Todd,

Feel free to implement your custom appender that sinks events into
IntelliTrace. If you're willing to share your achievements and if
microsofts licensing allows log4net to invoke IntelliTrace, we would be
happy to accept any sensible patches.

Cheers,
D.


2013/5/6 Todd Bradley &amp;lt;Todd.Bradley&amp;lt; at &amp;gt;nirvanix.com&amp;gt;




&lt;/pre&gt;</description>
    <dc:creator>Dominik Psenner</dc:creator>
    <dc:date>2013-05-06T17:11:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5079">
    <title>RE: log4net with IntelliTrace</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5079</link>
    <description>&lt;pre&gt;Yup. We're using VS Ultimate for load testing, and the tests are based on some functional tests that we're trying to use log4net with. We like Apache Logging, as two of us have used log4j at other companies before we came to this C# shop. But we're still trying to come to grips with all the changes in environments.



From: Sam Carter [mailto:cppprogrammer&amp;lt; at &amp;gt;live.com]
Sent: Thursday, May 02, 2013 7:09 PM
To: Log4net User Group
Subject: RE: log4net with IntelliTrace

I think you need Visual Studio Ultimate to use it (i.e. hefty license cost)
________________________________
From: Todd.Bradley&amp;lt; at &amp;gt;nirvanix.com&amp;lt;mailto:Todd.Bradley&amp;lt; at &amp;gt;nirvanix.com&amp;gt;
To: log4net-user&amp;lt; at &amp;gt;logging.apache.org&amp;lt;mailto:log4net-user&amp;lt; at &amp;gt;logging.apache.org&amp;gt;
Subject: log4net with IntelliTrace
Date: Thu, 2 May 2013 18:09:40 +0000
Has anyone tried integrating log4net with Microsoft IntelliTrace?

http://msdn.microsoft.com/en-us/library/vstudio/dd264915.aspx

That's their system for recording "events" that happened during execution of an app, such as debugger&lt;/pre&gt;</description>
    <dc:creator>Todd Bradley</dc:creator>
    <dc:date>2013-05-06T14:57:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5078">
    <title>Re: ThreadID not changing</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5078</link>
    <description>&lt;pre&gt;What happens when you retrieve the current thread id on your own and include it in the log message? Does it match %t?

I believe LoggingEvent by default captures the current thread id at the time the log is being generated then makes that available as %t. FixFlags is the property name. I think FixFlags.Partial is the default:

http://logging.apache.org/log4net/release/sdk/log4net.Core.FixFlags.html


________________________________
 From: Randar101 &amp;lt;randar.puust&amp;lt; at &amp;gt;blueprintsys.com&amp;gt;
To: log4net-user&amp;lt; at &amp;gt;logging.apache.org 
Sent: Friday, May 3, 2013 10:53 AM
Subject: ThreadID not changing
 

We have an application that has the following architecture:
-IIS
-WCF RIA Services.  
-Silverlight client
-We log on both the client and the server and use Clog to send the logs from
the client

My issue is with our server logs.  Whenever log4net logs the threadId, it
seems to be the same until something big happens (i.e. IIS Reset).  So the
log file looks like this even though these are two users hitting it at the
same time&lt;/pre&gt;</description>
    <dc:creator>Ron Grabowski</dc:creator>
    <dc:date>2013-05-03T16:26:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5077">
    <title>ThreadID not changing</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5077</link>
    <description>&lt;pre&gt;We have an application that has the following architecture:
-IIS
-WCF RIA Services.  
-Silverlight client
-We log on both the client and the server and use Clog to send the logs from
the client

My issue is with our server logs.  Whenever log4net logs the threadId, it
seems to be the same until something big happens (i.e. IIS Reset).  So the
log file looks like this even though these are two users hitting it at the
same time.

Server: 02/05/2013 18:16:16, GMT-05:00, ThreadId:179, , TestUser3,
Debug,Currently logged in as TestUser3
Server: 02/05/2013 18:16:16, GMT-05:00, ThreadId:179,
uo2sexbeikaej0hpwoiylxxz, TestUser3, Debug,Initializing
UserManagementDomainService
Server: 02/05/2013 18:16:16, GMT-05:00, ThreadId:179,
uo2sexbeikaej0hpwoiylxxz, TestUser3, Debug,[UserManagementDomainService]
running query [GetUserManagementCacheData] Thread[146] Instance[New] 
Server: 02/05/2013 18:16:16, GMT-05:00, ThreadId:179, , , Debug,"Begin
[/Services/TheApplicationSys-RC-Client-RIA-Models-Services-SettingsDomainService&lt;/pre&gt;</description>
    <dc:creator>Randar101</dc:creator>
    <dc:date>2013-05-03T14:53:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5076">
    <title>RE: log4net with IntelliTrace</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5076</link>
    <description>&lt;pre&gt;I think you need Visual Studio Ultimate to use it (i.e. hefty license cost)

From: Todd.Bradley&amp;lt; at &amp;gt;nirvanix.com
To: log4net-user&amp;lt; at &amp;gt;logging.apache.org
Subject: log4net with IntelliTrace
Date: Thu, 2 May 2013 18:09:40 +0000









Has anyone tried integrating log4net with Microsoft IntelliTrace?
 
http://msdn.microsoft.com/en-us/library/vstudio/dd264915.aspx
 
That’s their system for recording “events” that happened during execution of an app, such as debugger events, exceptions, etc. I haven’t personally used it, but IntelliTrace sounds like it might be useful for troubleshooting distributed
 load tests, and we’re standardizing on log4net for logging in our test code.
 
 
Cheers,
Todd.
       &lt;/pre&gt;</description>
    <dc:creator>Sam Carter</dc:creator>
    <dc:date>2013-05-03T01:08:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5075">
    <title>log4net with IntelliTrace</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5075</link>
    <description>&lt;pre&gt;Has anyone tried integrating log4net with Microsoft IntelliTrace?

http://msdn.microsoft.com/en-us/library/vstudio/dd264915.aspx

That's their system for recording "events" that happened during execution of an app, such as debugger events, exceptions, etc. I haven't personally used it, but IntelliTrace sounds like it might be useful for troubleshooting distributed load tests, and we're standardizing on log4net for logging in our test code.


Cheers,
Todd.
&lt;/pre&gt;</description>
    <dc:creator>Todd Bradley</dc:creator>
    <dc:date>2013-05-02T18:09:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5074">
    <title>AW: Issues with deploying log4net</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5074</link>
    <description>&lt;pre&gt;Hi Ron,

 

it states could not load file or assembly [..] or one of its dependencies.
Do you run log4net against the same .NET version, i.e. has the QA server
another .NET version installed than your developer machine? Are there other
differences between one system and the other? Maybe there is a strange
version of log4net installed on the QA servers GAC?

 

Cheers,

D.

 

Von: Ron Daggett [mailto:rdaggett&amp;lt; at &amp;gt;rxcrossroads.com] 
Gesendet: Mittwoch, 17. April 2013 21:37
An: Log4NET User
Betreff: RE: Issues with deploying log4net

 

Im publishing the app, once to my local server on my local machine, and the
second time to the QA server. The only difference is the directory that I
publish too. The system runs fine using VS2010, deploys locally and runs
fine, but breaks when I try and deploy to a server.

 

Thank you,

 

Ron Daggett

Software Developer

RxCrossroads

Office: 502-963-0059

Cell: 502-303-8312

Fax: 502-322-1012

 &amp;lt;mailto:rdaggett&amp;lt; at &amp;gt;rxcrossroads.com&amp;gt; rdaggett&amp;lt; at &amp;gt;rxcrossroads.com

 

This informa&lt;/pre&gt;</description>
    <dc:creator>Dominik Psenner</dc:creator>
    <dc:date>2013-04-19T06:29:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5073">
    <title>RE: Issues with deploying log4net</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5073</link>
    <description>&lt;pre&gt;I'm publishing the app, once to my local server on my local machine, and the second time to the QA server. The only difference is the directory that I publish too. The system runs fine using VS2010, deploys locally and runs fine, but breaks when I try and deploy to a server.

 

Thank you,

 

Ron Daggett

Software Developer

RxCrossroads

Office: 502-963-0059

Cell: 502-303-8312

Fax: 502-322-1012

rdaggett&amp;lt; at &amp;gt;rxcrossroads.com &amp;lt;mailto:rdaggett&amp;lt; at &amp;gt;rxcrossroads.com&amp;gt; 

 

This information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material, the disclosure of which is governed by applicable law.  Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited.  If you received this in error, please contact me and destroy the materials contained in this message. 

 

From: Steven Whatmore [mailto:Steven.Whatmore&amp;lt; at &amp;gt;p&lt;/pre&gt;</description>
    <dc:creator>Ron Daggett</dc:creator>
    <dc:date>2013-04-17T19:37:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5072">
    <title>RE: Issues with deploying log4net</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5072</link>
    <description>&lt;pre&gt;Further to that first email - it sounds like you are not running the same version of the DLL(s) when you deploy - otherwise you would already have run across this issue locally


From: Steven Whatmore [mailto:Steven.Whatmore&amp;lt; at &amp;gt;purefacts.com]
Sent: April-17-13 3:25 PM
To: Log4NET User
Subject: RE: Issues with deploying log4net

There has been a number of posts about this and you can probably find what you need on the net somewhere but essentially you need an assembly binding in your web.config I believe - it should be something like the following (only an example)

&amp;lt;runtime&amp;gt;
    &amp;lt;assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"&amp;gt;
      &amp;lt;dependentAssembly&amp;gt;
        &amp;lt;assemblyIdentity name="Common.Logging" publicKeyToken="af08829b84f0328e"/&amp;gt;
        &amp;lt;bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="2.1.1.0"/&amp;gt;
      &amp;lt;/dependentAssembly&amp;gt;
    &amp;lt;/assemblyBinding&amp;gt;
&amp;lt;/runtime&amp;gt;



Steve Whatmore, MBA, MCP, .NET
Software Development Manager / Architect
416.598.1241 x245
------------------------&lt;/pre&gt;</description>
    <dc:creator>Steven Whatmore</dc:creator>
    <dc:date>2013-04-17T19:29:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5071">
    <title>RE: Issues with deploying log4net</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5071</link>
    <description>&lt;pre&gt;There has been a number of posts about this and you can probably find what you need on the net somewhere but essentially you need an assembly binding in your web.config I believe - it should be something like the following (only an example)

&amp;lt;runtime&amp;gt;
    &amp;lt;assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"&amp;gt;
      &amp;lt;dependentAssembly&amp;gt;
        &amp;lt;assemblyIdentity name="Common.Logging" publicKeyToken="af08829b84f0328e"/&amp;gt;
        &amp;lt;bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="2.1.1.0"/&amp;gt;
      &amp;lt;/dependentAssembly&amp;gt;
    &amp;lt;/assemblyBinding&amp;gt;
&amp;lt;/runtime&amp;gt;



Steve Whatmore, MBA, MCP, .NET
Software Development Manager / Architect
416.598.1241 x245
-------------------------------------------------
PureFacts Financial Solutions
372 Bay Street, Suite 1400
Toronto, Ontario M5H 2W9
416.598.1241 main
888.596.9338 toll free
416.598.9226 fax
www.purefacts.com
Please consider the environment before printing this e-mail.
This e-mail may be privileged and/or confidential, and the sender does not waive a&lt;/pre&gt;</description>
    <dc:creator>Steven Whatmore</dc:creator>
    <dc:date>2013-04-17T19:25:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5070">
    <title>Issues with deploying log4net</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5070</link>
    <description>&lt;pre&gt;I'm having an issue with log4net version 1.2.9.0. When I deploy my app
locally, it runs as expected. When I try and deploy to a QA Web server,
I get the following message when I try and open the page:

 

 

 

Thank you in advance for any assistance you can provide.

 

Thank you,

 

Ron Daggett

Software Developer

RxCrossroads

Office: 502-963-0059

Cell: 502-303-8312

Fax: 502-322-1012

rdaggett&amp;lt; at &amp;gt;rxcrossroads.com &amp;lt;mailto:rdaggett&amp;lt; at &amp;gt;rxcrossroads.com&amp;gt; 

 

This information transmitted is intended only for the person or entity
to which it is addressed and may contain confidential and/or privileged
material, the disclosure of which is governed by applicable law.  Any
review, retransmission, dissemination or other use of, or taking of any
action in reliance upon, this information by persons or entities other
than the intended recipient is prohibited.  If you received this in
error, please contact me and destroy the materials contained in this
message. 

 

&lt;/pre&gt;</description>
    <dc:creator>Ron Daggett</dc:creator>
    <dc:date>2013-04-17T19:12:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5069">
    <title>RE: Log4net NOT working on .net 4.5</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5069</link>
    <description>&lt;pre&gt;Generally it is good idea to configure logging system as early as possible to avoid such problem. Good place is Main() method of the class which starts the whole application.
Radovan

________________________________
Od: Dominik Psenner [mailto:dpsenner&amp;lt; at &amp;gt;gmail.com]
Odesláno: 10. dubna 2013 10:29
Komu: 'Log4NET User'; 'El Tigre'
Předmět: RE: Log4net NOT working on .net 4.5

I'm glad you finally worked it out and I hope you learned something. In the future you should consult the manuals and check if you're doing things how it's written down in the manuals. Posting something like "all is setup correctly (I have used log4net in the past)" without being sure can cause embarassing reactions. :)

Cheers,
D.

________________________________
From: El Tigre [mailto:el_tigre4jc&amp;lt; at &amp;gt;yahoo.com]
Sent: Wednesday, April 10, 2013 10:08 AM
To: Log4NET User
Subject: Re: Log4net NOT working on .net 4.5


GOT it... had to put the initialize method din the constructor without parameters:

public Form1()
        {
            Initi&lt;/pre&gt;</description>
    <dc:creator>Radovan Raszka</dc:creator>
    <dc:date>2013-04-10T13:52:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.log.log4net.user/5068">
    <title>RE: Log4net NOT working on .net 4.5</title>
    <link>http://permalink.gmane.org/gmane.comp.log.log4net.user/5068</link>
    <description>&lt;pre&gt;I'm glad you finally worked it out and I hope you learned something. In the future you should consult the manuals and check if
you're doing things how it's written down in the manuals. Posting something like "all is setup correctly (I have used log4net in the
past)" without being sure can cause embarassing reactions. :-)

 

Cheers,

D.

 

  _____  

From: El Tigre [mailto:el_tigre4jc&amp;lt; at &amp;gt;yahoo.com] 
Sent: Wednesday, April 10, 2013 10:08 AM
To: Log4NET User
Subject: Re: Log4net NOT working on .net 4.5

 


GOT it... had to put the initialize method din the constructor without parameters: 

 

public Form1()

        {

            InitializeComponent();

            XmlConfigurator.Configure();

         }

 

NOw it works! thank you for help!

&lt;/pre&gt;</description>
    <dc:creator>Dominik Psenner</dc:creator>
    <dc:date>2013-04-10T08:29:23</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.log.log4net.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.log.log4net.user</link>
  </textinput>
</rdf:RDF>
