0
votes
0answers
11 views

IIS Custom Duration Logging

My ASP.NET Web Application serves on IIS 7.0 and .NET 4.0 I want to measure total duration for "any request to my web services methods (asmx)" This log needs to include some custom data (for example ...
1
vote
1answer
28 views

passing values to nlog custom target

I have created a custom nLog target and it is working except for one thing. I want to pass the logged in person name to the target, I have created a property called ApplicationUser which will pick up ...
0
votes
1answer
29 views

Appharbor: How can I monitor ASP.NET MVC server load and performance without access to IIS log files

I need to monitor the load and performance on my ASP.NET MVC web service application. The application is hosted on AppHarbor and behind a load balancer. Currently just running 2 web workers. Some ...
3
votes
1answer
47 views

Custom Log4Net appender not creating table or storing entries correctly

I am currently in the process of creating a prototype of a custom Log4Net appender, which is going to store information on all exceptions that occur within the project in an Azure table. The table is ...
0
votes
1answer
68 views

How to create a log file using enterprise library

in my web application iam trying to crate a log file and writing errors and exceptions in the log file, but when i run my application it log file is not creating in my solution folder or in bin ...
0
votes
1answer
28 views

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 ...
0
votes
0answers
98 views

create log file for each and every session created in web application

I need the log info for each and every session created in the web application in asp.net. the log file must be rollback by size 5 I am using the following code. For each time the log file created i ...
4
votes
1answer
81 views

Using more than one trace listeners

I have 2 WCF services which I am hosting from a single windows host. I use trace listener which logs the data into application logs. I have added following code into the config file. ...
0
votes
0answers
29 views

Elmah - Using filters, two different database, some errors to 1 database some errors to another

This is under asp.net MVC3, using elmah. In general we are using ELMAH to log all errors and it works great. I would like to know if it is possible to log to two different elmah databases from the ...
1
vote
0answers
27 views

Add a table to Elmah Error details View

I've just started working with Elmah in an ASP.NET MVC project. I was wondering if there's anyway to add a new table to the Error details view like the one from server variables. I know how to add ...
0
votes
0answers
20 views

iis logging - logging server resource and not urls

on server 2008, iis 7.5 - i have installed several websites. old ones who uses asp.net2 framework and new ones who uses asp.net 4 framework. i set up for both types of sites logs and checked all ...
0
votes
1answer
24 views

Log browser settings, rendered html on client's browser.

We regularly receive reports about different client side errors especially our users seeing "this page contains secure and nonsecure items" warnings when using our site. We know that the various ...
1
vote
1answer
119 views

Logging Web API calls MVC 4

I need to log to the database every call to my Web API. Now of course I don't want to go to my database on every call. So lets say I have a dictionary or a hash table object in my cache, and every ...
2
votes
2answers
75 views

Is there a way to log any unexpected Exception occurred in ASP.NET page?

I'm using log4net to log expected Exception like following: try { // some exception occurred } catch (Exception ex) { log.Error("Exception occurred!", ex); } The info will be written to a ...
2
votes
1answer
103 views

How can i use built in membership methds with my own database ASP.NET mvc 4

Ok so i have been searching hard but i cannot find the solution to this problem, which should be fairly common though. The problem is that ASP.NET MVC automatically creates the code using WebSecurity ...
8
votes
9answers
297 views

Design pattern / C# trick for repeated bit of code

I have a WCF service which logs any exceptions and then throws them as FaultExceptions. I am doing a lot of repetition e.g. in each service method. try { // do some work } catch(Exception ex) { ...
1
vote
0answers
53 views

How to limit text log size done with TraceSource in ASP.NET web application?

I'm using this example to implement a simple text logging for my ASP.NET web application written in C#. It works fine, except that I don't know how to limit the log file from growing uncontrollably. ...
0
votes
1answer
65 views

Property Change Logging

Currently on my application I am doing logging on any value the user changes, which works fine. I have a class object MyObject and Logs object and on each property I am raising an event as such: ...
0
votes
2answers
298 views

Error Logging in C# Website

I am planning to implement error logging writing something similar to this: public static void WriteError(string errorMessage) { try { string path = "~/Error/" + ...
3
votes
1answer
193 views

.Net Custom TraceListener.TraceEvent not firing

We have a custom TraceListener (inherited from System.Diagnostics.TraceListener) which we use for our ASP.NET web application logging. It's been working great - no issues. Then all the sudden it ...
1
vote
1answer
116 views

Can I get a Log of all ASP.net Control Events fired by my page even if I don't handle those events?

I have an asp.net page with several controls (ListViews, Buttons etc). I'd like to generate a log (possibly outputted to the Trace log) of all: events were caused by the user on postback (e.g. ...
0
votes
3answers
80 views

Logging Server Name & Server IP

When an exception is thrown, we log it. However, we are unable to retrieve the server name or I.P address. Not sure if this is the right way to retrieve it. Log.ServerName = ...
0
votes
1answer
307 views

Writing logging information into file with System.Diagnostics.TextWriterTraceListener in asp.net mvc 3

In my asp.net mvc 3 app I want to track SQL code that is generated by Linq To Sql. I want to write it in a file. Here is what I do: web.config changes: <system.diagnostics> <trace ...
0
votes
1answer
39 views

can I limit log4net to eventview by size?

My webApplication uses log4net that writes to event-viewr. I want to limit its size to 1 GB. is there any way to do this within the webcofig? (as it can be limited to log file)
0
votes
1answer
122 views

How to customize the formatter for the loggingConfiguration?

I am new to EnterpriseLibrary.Logging. In the web.config, under the loggingConfiguration, we have following formatters: <formatters> <add name="Default Formatter" ...
2
votes
2answers
995 views

log4Net log file not writing

I am trying to implement log4net in my asp.net web application. But unfortunately the file is not creating.. Below is is my configuration.. 1 . Added log4net .dll reference 2 . Web.config settings. ...
1
vote
1answer
267 views

Asynchronous write error log file

I am creating a public facing web site and one of the requirement is to write all the errors/warning in a log file. I have try catch block everywhere and also I can catch the errors in the ...
2
votes
2answers
440 views

Find failed validators asp.net

I have a page, where I want to log every validation message which the user failed to meet the requirements the associated field. The problem is my postback/button click never occurs (maybe because of ...
0
votes
1answer
257 views

MVC 4 view (cshtml) error is not logging to Splunk via log4net

I have implemented error handling code to log exceptions to Splunk (using log4net) wherever they occur in my MVC 4 application. The problem is that when an exception arises within a view file ...
1
vote
2answers
79 views

Expose the HttpContext in log4net

I have an ASP.NET website and I am doing logging with log4net. As logging requirements change often, I want to enable PMs to modify the information that gets logged and also to be able to log extra ...
2
votes
1answer
106 views

ASP.NET how to log request url when exception happens?

I see thousands of "[2012/10/31 16:08:23] FATAL: An unhandled error occurred. - Exception : A potentially dangerous Request.Path value was detected from the client (%)." in my log file. I think ...
1
vote
0answers
150 views

Error handling not working asp.net

I have the following code for handling my errors Global.asax.cs in Application_Error Exception exception = Server.GetLastError(); if (exception != null) { //Log the error } However I also have ...
0
votes
2answers
189 views

asp.net authorization for many different folders

I am using asp.net (c#). Problem: I need to allow users to login from different pages: www.mypage.com/login.aspx www.mypage.com/orgs/org-1/login.aspx www.mypage.com/orgs/org-2/login.aspx ...
0
votes
1answer
190 views

Using Log4net to send email through smtp, email never received

To perform error logging for my WebAPI application, I am using Log4net. I have two log4net appenders, a SmtpEmail appender that uses another server equipped with smtp to send the error-notice email, ...
1
vote
1answer
49 views

where to instantiate logging class to log all logs of a request once?

there is a logging class that logs user activities into a database . as I didn't wanted to write logging codes in all methods ( violating SRP principle if I'm not wrong ) , I decided to define ...
0
votes
1answer
433 views

Log 4 net not logging to file

Probably a very simple setup, but I've tried to setup Log4Net. In my web.config I have: <log4net> <appender name="File" type="log4net.Appender.RollingFileAppender"> <file ...
0
votes
1answer
43 views

is this a good approach to create a logging system

I want to create a log system not to log exceptions , but user activities and what they do upon data . for example when a user deletes a record , I want to log username , records id , date and ... . ...
2
votes
2answers
240 views

LogParser Access Denied error

I using Logparser to parse IIS Log and show information on a web page. Everything is working fine in my development environment but once I publish the application to server I get the following error: ...
2
votes
2answers
460 views

log4net does not write in IIS 6.0

I have the following log4net configuration: <log4net> <appender name="Console" type="log4net.Appender.ConsoleAppender"> <layout type="log4net.Layout.PatternLayout"> <!-- ...
0
votes
1answer
134 views

Sharing information within a web service request

We have a solution where we use a WCF Client Message Inspector to read a correlation id (and other values) out of a http header. We then store this value in the ...
0
votes
1answer
149 views

Umbraco Log table is getting filled with At /keepalive/ping.ashx (Referred by: ):

I am getting the following error log entry in every few seconds into one of the website UmbracoLog table... At /keepalive/ping.ashx (Referred by: ): Trying to find the solution for the issue for few ...
0
votes
0answers
68 views

Do ASP.NET or the Windows Event Log Rate Limit?

I'm testing out some error handling in ASP.NET MVC, but my exceptions only get logged around once per minute (at least that's what it looks like). I have CustomErrors turned on: <customErrors ...
0
votes
1answer
1k views

Log by Microsoft.Practices.EnterpriseLibrary.Logging 5.0 does not work

I'm using Logging 5.0, when I call: LoggerUtils.WriteLog("test","test"); It passed but I have no log information. Below is my configuration (at config.web): <section ...
0
votes
1answer
197 views

Users activity log with more efficient way [closed]

I am working on application which is same as soundcloud.com. I am developing application in ASP.NET MVC 2. I have to create a user activities log. Those activities will be displayed to the uses who ...
0
votes
1answer
108 views

SQL event logging in ADO.net

We want to log sql events and its working but the problem is it always says sa as an user. Whereas I would like this to be personalized. Is there anyway in ADO.Net where I can pass custom display ...
2
votes
1answer
115 views

How to log web errors on Asp.Net as Fiddler Request File

Background: On our asp.net web application we are saving error information (ex.Message, Stack Trace, User Id etc) on to our database. So periodically we go back and try to reproduce the same error on ...
0
votes
1answer
157 views

Linq-to-sql Logging With GetModifiedMembers Lookup Values

I'm using Entity.GetModifiedMembers() to log the updated values of the entities. But since there are lookup values, the modified members are seen as the related lookup Ids. To make the view that the ...
3
votes
1answer
394 views

Logging raw and compressed HTTP responses in ASP.NET & IIS7

Along the lines of this question I want to create a HttpModule that will do some custom logging of requests and responses for us. Using the code in the most popular answer for that question I've got a ...
0
votes
1answer
145 views

log4net with asp.net mvc - can't watch file for changes

So in a console .Net application I can watch all my log4net events stream by with (the powershell command) get-content .\log.log -Wait which is similar to the linux tail command and I assume uses ...
0
votes
1answer
701 views

EL 5.0 toggling logging on/off

I am using enterprise library 5.0 for logging and I am not sure how to switch off the logging. Currently it is switched on and workng as it should. Here is my web.config section on logging, it was ...

1 2 3 4 5 6