User vdhant - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T03:12:24Zhttp://stackoverflow.com/feeds/user/30572http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/245354/where-how-castle-windsor-sets-up-logging-facility2Where & How Castle Windsor sets up logging facilityvdhant2008-10-29T00:17:33Z2009-10-18T12:27:03Z
<p>Hi guys</p>
<p>I'm fairly new to Castle Windsor and am looking into the in's and out's of the logging facility. It seems fairly impressive but the only thing i can't work out is where Windsor sets the Logger property on my classes. As in the following code will set Logger to the nullLogger if the class hasn't been setup yet but when Resolve is finished running the Logger property is set. </p>
<pre><code>private ILogger logger;
public ILogger Logger
{
get
{
if (logger == null)
logger = NullLogger.Instance;
return logger;
}
set { logger = value; }
}
</code></pre>
<p>So what I am wondering is how and where windsor sets my Logger property. </p>
<p>Cheers
Anthony</p>
http://stackoverflow.com/questions/1392618/unit-testing-linq-to-sql-and-working-around-the-data-context0Unit Testing, Linq to SQL and working around the Data Contextvdhant2009-09-08T08:05:46Z2009-09-08T09:54:17Z
<p>Hi guys </p>
<p>I have been looking at the following and it would appear that there are great benefits to be gained by using compiled queries...
<a href="http://blogs.msdn.com/ricom/archive/2008/01/14/performance-quiz-13-linq-to-sql-compiled-query-cost-solution.aspx" rel="nofollow">http://blogs.msdn.com/ricom/archive/2008/01/14/performance-quiz-13-linq-to-sql-compiled-query-cost-solution.aspx</a> </p>
<p>My problem is that I want to unit test my queries, but compiled queries need a concrete instance of a class that derives from DataContext (which is particularly difficult to mock out)... Thus I have come up with the following code and I was wondering if any knows whether I should still get the performance benefits of compiled queries... </p>
<pre><code>private static readonly Func<IDatabase, IActionParameters, ISportProgramMapper, IQueryable<ISportProgram>> _GetQueryUnCompiled =
(db, parameters, mapper) => from x in db.SportProgramDataSource.ThatHaveActiveSports()
where x.SportProgramId == parameters.Id
select mapper.FromDataToEntity(x);
private static readonly Func<Database, IActionParameters, ISportProgramMapper, IQueryable<ISportProgram>> _GetQuery = CompiledQuery.Compile<Database, int, ISportProgramMapper, IQueryable<ISportProgram>>((db, parameters, mapper) => _GetQueryUnCompiled(db, parameters, mapper));
public IActionResult<ISportProgram> Get(IActionParameters parameters)
{
Check.Argument("parameters").ThatValue(parameters).IsNotNull();
IDatabase db = this.CreateDatabase();
ISportProgramMapper mapper = this.CreateMapper<ISportProgramMapper>();
Database typedDb = db as Database;
var result = typedDb != null ? _GetQuery(typedDb, parameters, mapper).FirstOrDefault() : _GetQueryUnCompiled(db, parameters, mapper).FirstOrDefault();
return this.CreateActionResult(result);
}
</code></pre>
<p>Note in a unit test scenario my db wont be of type Database which means it will call the uncompiled version, in a prod scenario it will be of type Database and will run the compiled version. </p>
<p>Cheers
Anthony</p>
<p>Update:
Ok even if I do refactor the code so that my method which is currently in the DAL uses a repository that returns an IQueryable the underlying question still remain, the version of the repository that uses the compiled queries would wrap a version that contains the raw query, in a similar fashion to what I am doing at the moment... with the pattern of having the _GetQuery call _GetQueryUnCompiled do I still get a performance benefit?? </p>
http://stackoverflow.com/questions/1347009/caching-data-access-layer-results1Caching Data Access Layer Resultsvdhant2009-08-28T13:35:29Z2009-08-28T13:45:55Z
<p>Hi guys </p>
<p>I want to do some caching at the data access layer to help boost performance. I have decided that I will use the HTTPContext cache, with an abstraction layer on top so i can switch in and out other caching strategies later on if needed. </p>
<p>Basically the cache should be variant, meaning that for each individual method it will cache a different result based on the values that are passed in. </p>
<p>My question is given that if I am wanting to have a "cache per function" and for the system to determine whether to hit the database or the cache based on the values that are being passed into the method, how would I go about doing this (i.e. taking a hash of the items values or something - but there must be a better way).</p>
<p>I know that I could do some stuff with cross cutting concerns and the EL and the Caching Application Block, but the overhead of that is a little more than I am looking for. I am wanting to do something fairly light weight and that I can control (i.e. i could pass in a parameter that I could check which would bypass the cache - for instance) </p>
<p>Cheers Anthony</p>
http://stackoverflow.com/questions/1184392/wpf-animate-from-one-style-to-another1WPF- Animate from one style to anothervdhant2009-07-26T11:57:40Z2009-07-26T11:57:40Z
<p>Hi guys </p>
<p>Just wondering if anyone know how to animate from one style to another i.e. going from NormalStyle to ActiveStyle when the user focuses on the textbox</p>
<pre><code><Style x:key="NormalStyle" TargetType="{x:Type TextBox}">
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="BorderThickness" Value="2" />
</Style>
<Style x:key="ActiveStyle" TargetType="{x:Type TextBox}" BasedOn="{StaticResource NormalStyle}">
<Setter Property="BorderBrush" Value="Green" />
<Setter Property="BorderThickness" Value="4" />
</Style>
</code></pre>
<p>Cheers
Anthony </p>
http://stackoverflow.com/questions/1183982/wpf-how-to-make-style-triggers-trigger-a-different-named-style-to-be-applied1WPF - How to make Style.Triggers trigger a different named style to be appliedvdhant2009-07-26T07:34:40Z2009-07-26T08:31:32Z
<p>Hi guys </p>
<p>Lets say I have the below:</p>
<pre><code><Style TargetType="{x:Type TextBox}">
<Setter Property="BorderThickness" Value="1" />
<Setter Property="BorderBrush" Value="Gray" />
<Style.Triggers>
<Trigger Property="IsFocused" Value="true">
<Setter Property="BorderBrush" Value="Green" />
<Setter Property="BorderThickness" Value="2" />
</Trigger>
</Style.Triggers>
</Style>
</code></pre>
<p>This works fine and there is nothing too much wrong here, but it is a fairly simple case. What happens if I want to have the IsFocused style state listed as a exsplicit style how do reference that style as being the IsFocused style, i.e. </p>
<pre><code><Style x:key="ActiveStyle" TargetType="{x:Type TextBox}">
<Setter Property="BorderBrush" Value="Green" />
<Setter Property="BorderThickness" Value="2" />
</Style>
<Style TargetType="{x:Type TextBox}">
<Setter Property="BorderThickness" Value="1" />
<Setter Property="BorderBrush" Value="Gray" />
<Style.Triggers>
<Trigger Property="IsFocused" Value="true">
-- Here I want to reference ActiveStyle and not copy the copy the setters
</Trigger>
</Style.Triggers>
</Style>
</code></pre>
<p>Cheers
Anthony</p>
http://stackoverflow.com/questions/872413/castle-windsor-resolving-and-generics0Castle Windsor resolving and genericsvdhant2009-05-16T13:15:00Z2009-05-16T13:50:25Z
<p>Hi guys
I have the following:</p>
<pre><code>public interface ISubject { ... }
public class Subject<T> : ISubject { ... }
public class MyCode<T> {
...
pulic void MyMethod()
{
var item = container.Resolve<ISubject>(); //????? how do I pass in T
}
...
}
</code></pre>
<p>In this case how do i do the resolve.</p>
<p>Cheers
Anthony</p>
http://stackoverflow.com/questions/242868/moq-good-sample-apps5moq - good sample appsvdhant2008-10-28T10:53:41Z2009-05-05T06:30:22Z
<p>Hi guys</p>
<p>I know that there has been a couple questions about tutorials on moq. But I am wondering if there are any sample apps out there that use moq in the context of an n-tier business application using ado.net.</p>
<p>I find the tutes good, but they don't seem to bring everything all together into the big picture. Thus, I am looking for a sample app that brings the full picture together.</p>
<p>Also, I think there is a little bit of a lack of examples which specifically deal with mocking and testing the logic in the data access layer.</p>
<p>Cheers
Anthony</p>
http://stackoverflow.com/questions/781514/detect-when-link-is-activated-either-by-click-or-tab-and-enter2Detect when link is activated - either by click or tab and entervdhant2009-04-23T12:41:11Z2009-04-23T13:42:49Z
<p>Hi Guys </p>
<p>Just wondering if anyone knows of a way that wiring up jquery to run a function for when a user clicks on a link or tabs to a link and hits enter.</p>
<p>I want to intercept that activation of a link and perform an action before the page is changed, but I want to do it in either case.</p>
<p>Cheers
Anthony </p>
http://stackoverflow.com/questions/41244/dynamic-linq-orderby/704341#7043412Answer by vdhant for Dynamic LINQ OrderBy vdhant2009-04-01T07:04:53Z2009-04-01T07:04:53Z<p>Just building on what others have said. I found that the following works quite well.</p>
<pre><code> public static IEnumerable<T> OrderBy<T>(this IEnumerable<T> input, string queryString)
{
if (string.IsNullOrEmpty(queryString))
return input;
int i = 0;
foreach (string propname in queryString.Split(','))
{
var subContent = propname.Split('|');
if (Convert.ToInt32(subContent[1].Trim()) == 0)
{
if (i == 0)
input = input.OrderBy(x => GetPropertyValue(x, subContent[0].Trim()));
else
input = ((IOrderedEnumerable<T>)input).ThenBy(x => GetPropertyValue(x, subContent[0].Trim()));
}
else
{
if (i == 0)
input = input.OrderByDescending(x => GetPropertyValue(x, subContent[0].Trim()));
else
input = ((IOrderedEnumerable<T>)input).ThenByDescending(x => GetPropertyValue(x, subContent[0].Trim()));
}
i++;
}
return input;
}
</code></pre>
http://stackoverflow.com/questions/694576/javascript-token-replace-append/695857#6958570Answer by vdhant for Javascript token replace/appendvdhant2009-03-30T02:37:42Z2009-03-30T02:37:42Z<p>Hi guys </p>
<p>The following is what I ended thiking about. What do you guys recon?</p>
<p>Thanks
Anthony </p>
<pre><code>function Tokenizer(input, tokenSpacer, tokenValueSpacer) {
this.Tokenizer = {};
this.TokenSpacer = tokenSpacer;
this.TokenValueSpacer = tokenValueSpacer;
if (input) {
var TokenizerParts = input.split(this.TokenSpacer);
var i, nv;
for (i = 0; i < TokenizerParts.length; i++) {
nv = TokenizerParts[i].split(this.TokenValueSpacer);
this.Tokenizer[nv[0]] = nv[1];
}
}
}
Tokenizer.prototype.add = function(name, value) {
if (arguments.length == 1 && arguments[0].constructor == Object) {
this.addMany(arguments[0]);
return;
}
this.Tokenizer[name] = value;
}
Tokenizer.prototype.addMany = function(newValues) {
for (nv in newValues) {
this.Tokenizer[nv] = newValues[nv];
}
}
Tokenizer.prototype.remove = function(name) {
if (arguments.length == 1 && arguments[0].constructor == Array) {
this.removeMany(arguments[0]);
return;
}
delete this.Tokenizer[name];
}
Tokenizer.prototype.removeMany = function(deleteNames) {
var i;
for (i = 0; i < deleteNames.length; i++) {
delete this.Tokenizer[deleteNames[i]];
}
}
Tokenizer.prototype.MergeTokenizers = function(newTokenizer) {
this.addMany(newTokenizer.Tokenizer);
}
Tokenizer.prototype.getTokenString = function() {
var nv, q = [];
for (nv in this.Tokenizer) {
q[q.length] = nv + this.TokenValueSpacer + this.Tokenizer[nv];
}
return q.join(this.TokenSpacer);
}
Tokenizer.prototype.toString = Tokenizer.prototype.getTokenString;
</code></pre>
http://stackoverflow.com/questions/694576/javascript-token-replace-append1Javascript token replace/appendvdhant2009-03-29T12:43:42Z2009-03-30T02:37:42Z
<p>Hi guys
I have a string that looks something like the following 'test:1;hello:five;just:23'. With this string I need to be able to do the following.</p>
<pre><code>....
var test = MergeTokens('test:1;hello:five;just:23', 'yes:23;test:567');
...
</code></pre>
<p>The end result should be 'test:567;hello:five;just:23;yes:23' (note the exact order of the tokens is not that important).</p>
<p>Just wondering if anyone has any smart ideas of how to go about this. I was thinking a regex replace on each of the tokens on right and if a replace didn't occur because there was not match just append it. But maybe there is better way.</p>
<p>Cheers
Anthony</p>
<p>Edit: The right side should override the left. The left being what was originally there and the right side being the new content. Another way of looking at it, is that you only keep the tokens on the left if they don't exist on the right and you keep all the tokens on the right. </p>
<p><strong>@Ferdinand</strong>
Thanks for the reply. The problem is the efficiency with which the solution you proposed. I was initially thinking down similar lines but discounted it due to the O(n*z) complexity of the merge (where n and z is the number tokens on the left and right respectively) let alone the splitting and joining. </p>
<p>Hence why I was trying to look down the path of a regex. Maybe behind the scenes, regex is just as bad or worse, but having a regex which removes any token from the left string that exists on the right (O(n) for the total amount of token on the right) and then just add the 2 string together (i.e. vat test = test1 + test2) seems more efficient. thanks </p>
http://stackoverflow.com/questions/605089/ws-standard-for-telling-a-service-that-i-do-or-dont-want-specific-optional-par0WS-* standard for telling a service that I do or don't want specific optional parts of an XSDvdhant2009-03-03T04:13:37Z2009-03-03T04:13:37Z
<p>Hi Guys
I have an XSD which describes the data that is going to be sent back in response to a request. For example, my service may be focused on requesting client details. The XSD in question describes what data items are going to be sent back and one of these data items is the details of the organisation that the client works for. In this scenario an organisation can have many clients, hence the client service is sending back organisation data as part of its response. In this case, it makes sense to send back this parent data since there is a good chance that the consumer will want to utilise the organisation's details in conjunction with the clients details.</p>
<p>The problem is that we also have an organisation service that can be called directly. What this means is that a consumer may retrieve a list of all organisations prior to requesting a client (hence they wont need the organisations details when requesting the client) and in other scenarios they wont have any organisation details and will want to receive the organisation details. In the latter case, the service is acting as an aggregation service pulling an organisations details from the org service and putting it in the response that is sent back. </p>
<p>My question is that in the case where we sometimes want the data and sometimes don’t is there any standards which sound a service saying "you have requested this core data items, what supporting data items would you like to receive in response". The XSD itself supports this concept because one would describe the organisation as being optional. I know i could provide extra parameters that say pointing like "RequestClientDetails(bool shouldIncludeOrganisationDetails)", but i thought that there may be a more standards based approach.</p>
<p>Cheers
Anthony</p>
http://stackoverflow.com/questions/343085/whats-resolveall-do2Whats ResolveAll dovdhant2008-12-05T07:02:07Z2009-02-04T23:21:21Z
<p>Hi guys
Just a quick one. </p>
<p>In IOC's what does ResolveAll do?? I know that the offical answer is "Resolve all valid components that match this type." but does that mean that it will return any class that implements a given interface?</p>
<p>Cheers
Anthony </p>
http://stackoverflow.com/questions/239023/di-dynamic-parameter-of-type-type-where-type-is-the-parent-objects-type3DI- Dynamic parameter of type Type where type is the parent objects typevdhant2008-10-27T03:42:32Z2009-01-01T02:49:20Z
<p>Hi guys
I have a dependency that I need to inject into one of my classes. This dependency will be lifestyle of Transient. It inturn has a dependency of type Type. This type should be the type of the original class. I was just wondering if anyone has any idea how I might go about conducting this registration.</p>
<p>See example:</p>
<pre><code>public interface ICustomer
{
.....
}
public class Customer : ICustomer
{
public Customer(IRegister register)
{ .... }
}
public interface IRegister
{
.....
}
public class Register
{
public Register(Type partentType)
{ .... }
}
public class TestExample
{
public static void TestMe()
{
//If i was creating all this manually it would look
// something like this
IRegister myRegister = new Register(typeof(Customer));
ICustomer myCustomer = new Customer(myRegister);
}
}
</code></pre>
<p>Now i know i could call Container.Resolve when ever I want a Customer and then inject Register manually. But I need to inject Register into most of my classes so this isn't really that feasible. Hence I need a way of doing it via the config or via container.Register.</p>
<p>Cheers
Anthony </p>
http://stackoverflow.com/questions/390921/testing-data-access-persist-methods2Testing Data Access Persist Methodsvdhant2008-12-24T06:46:57Z2008-12-24T08:42:43Z
<p>Hi guys
Just wondering if anyone has any ideas on how to test ones data access methods. I have found testing retrieval data access methods is much easier because i can just mock out the ExecuteReader and return a populated dataTable.CreateDataReader(). By doing this I can test to see if my object is populating correctly if a result set is returned.</p>
<p>But how do i translate this to my persist methods (i.e. add, update, delete, etc). What i want to test is whether it populates the command parameters correctly, etc.</p>
<p>Any ideas?
Cheers</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/348483#3484832Answer by vdhant for What is the best comment in source code you have ever encountered?vdhant2008-12-08T01:40:37Z2008-12-08T01:45:40Z<p>I just found this one in a custom Linq provider for .net:</p>
<pre><code>//select is a royal pain in the ass where
//the parameter passed to CreateQuery isn't actually the one that goes in the call
//requiring this workaround. Not sure how straight Linq to Objects does it.
</code></pre>
<p>And this one</p>
<pre><code>//expressions have to be compiled in order to work with the method call on
//straight Enumerable somehow, LINQ to objects itself magically does this.
//Reflector shows a mess, so I (Aaron) invented my own way. God love unit tests!
</code></pre>
<p>And i just found this one as well... it just gets better</p>
<pre><code> //ok, this is a hairy, dirty, and nasty piece of code
//the alternatives are substantially worse than this though
//i.e. when you do your own provider, LINQ assumes that
//you are going to implement your own expression tree visitor and
//do it all yourself. Frankly, I still have xmas shopping to do
//and I really don't want us to be foobared when we get
//even more extension methods added to LINQ
//therefore, we are pulling execute based on taking the calling the
//standard execute on enumerable, but using our own class
//
//optimization can occur from here on an as needed basis, that is
//check for the value of mex.Method.Name, and write a handler for
//that method
//
//also, it may not be a bad idea to rather than do this reflection
//each and every time somehow cache the reflected methodinfos and do
//lookups that way that said, we need a complete red/green/refactor
//cycle here before I am touching that one
</code></pre>
<p>And this one</p>
<pre><code>//Compile that mutherf-ker, invoke it, and get the resulting hash
</code></pre>
http://stackoverflow.com/questions/236466/rhino-mocks-good-sample-apps3rhino-mocks - good sample appsvdhant2008-10-25T14:22:23Z2008-11-20T13:25:46Z
<p>Hi guys </p>
<p>I know that there has been a couple questions about tutorials on rhino-mocks. But I am wondering if there are any sample apps out there that use rhino-mocks in the context of an n-tier business application using ado.net. </p>
<p>I find the tutes good, but they don't seem to bring everything all together into the big picture. Thus, I am looking for a sample app that brings the full picture together.</p>
<p>Also, I think there is a little bit of a lack of examples which specifically deal with mocking and testing the logic in the data access layer.</p>
<p>Cheers
Anthony</p>
http://stackoverflow.com/questions/283824/constraints-for-explicit-interface-implementation1"Constraints for explicit interface implementation..."vdhant2008-11-12T12:40:41Z2008-11-16T21:33:31Z
<p>Hi guys</p>
<p>I can't figure out why the following wont work, any ideas??
public interface IFieldSimpleItem
{ }</p>
<pre><code>public interface IFieldNormalItem : IFieldSimpleItem
{ }
public class Person
{
public virtual T Create<T>()
where T : IFieldSimpleItem
{
return default(T);
}
}
public class Bose : Person
{
public override T Create<T>()
where T : IFieldNormalItem //This is where the error is
{
return default(T);
}
}
</code></pre>
<p>The reason why I am doing this is due to the fact that if a developer inherits from Bose, Bose relies on the instance being creating being at least of IFieldNormalItem. Whereas the below only relies on it being IFieldSimpleItem but the above should force it to be at least IFieldNormalItem.</p>
<pre><code>public class Person
{
public virtual IFieldSimpleItem Create()
{
return null;
}
}
public class Bose : Person
{
public override IFieldSimpleItem Create()
{
return null;
}
}
</code></pre>
<p>Cheers
Anthony</p>
http://stackoverflow.com/questions/266901/change-return-signature-via-inheritance-polymorphism1Change return signature via inheritance – Polymorphism vdhant2008-11-05T22:03:57Z2008-11-05T22:17:51Z
<p>Hi guys
Just wondering if there is any way to do the following:</p>
<pre><code>public Interface IDataField
{
object GetValue();
}
public Interface IComplexDataField : IDataField
{
object GetDefaultValue();
}
public class MyBase
{
private IDataField _DataField;
public MyBase()
{
this._DataField = this.CreateDataField();
}
public virtual IDataField CreateDataField()
{
return new DataField(); //Implements IDataField
}
**public virtual IDataField GetDataField()**
{
return this._DataField;
}
public void SomeMethod()
{
this.GetDataField().GetValue();
}
}
public class MyComplexBase : MyBase
{
public override IDataField CreateDataField()
{
return new ComplexDataField(); //Implements IComplexDataField which Implements IDataField
}
**public override IComplexDataField GetDataField()**
{
return (IComplexDataField)base.GetDataField();
}
public void SomeComplexSpecificMethod()
{
this.GetDataField().GetValue();
this.GetDataField().GetDefaultValue();
}
}
</code></pre>
<p>Cheers
Anthony</p>
http://stackoverflow.com/questions/245354/where-how-castle-windsor-sets-up-logging-facility/245525#2455250Answer by vdhant for Where & How Castle Windsor sets up logging facilityvdhant2008-10-29T01:41:16Z2008-10-29T01:41:16Z<p>Cheers for the response.
I have a config that looks almost exactly like this. More what I mean is where abouts in the source code and where in the windsor lifecycle does it set the property.</p>
<p>Thanks
Anthony</p>
http://stackoverflow.com/questions/242868/moq-good-sample-apps/245387#2453870Answer by vdhant for moq - good sample appsvdhant2008-10-29T00:30:31Z2008-10-29T00:30:31Z<p>Thanks for the reply, but I think you might have misunderstood me. </p>
<p>Unit testing is exactly what I want to do and I agree one would want to test each tier in isolation - which means it shouldn't matter if you are using n-tier or not. But I believe the semantics around testing the various layers are different. </p>
<p>For instance, testing ones data layer in isolation is very different to testing ones business layer in isolation. For instance, when testing the data layer one needs to try and abstract away the database, which is very different to abstracting out the data layer when testing the business layer.</p>
<p>Hence why I was after an end to end example. </p>
http://stackoverflow.com/questions/242868/moq-good-sample-apps/245048#2450480Answer by vdhant for moq - good sample appsvdhant2008-10-28T22:05:08Z2008-10-28T22:05:08Z<p>Any ideas???</p>
http://stackoverflow.com/questions/239023/di-dynamic-parameter-of-type-type-where-type-is-the-parent-objects-type/239042#239042-1Answer by vdhant for DI- Dynamic parameter of type Type where type is the parent objects typevdhant2008-10-27T03:58:03Z2008-10-27T03:58:03Z<p>I thought of that but it would mean the parent object would need to know about this little implementation quirk. Hence I would be creating a dependency which i could no longer enforce. Do you see that as an issue? </p>
<p>As far as what I am trying to achieve, the Register needs to have the type of the parent class in order for it to do its work. Hence it is a mandatory dependency. If it wasn't mandatory I would just have a property that I would set. I know i could use reflection but for performance reasons I am trying to avoid that.</p>
<p>The other alternative is that when at the top of the customer constructor, I set the type on the Registry class (via a public property). But again this implementation quirk that the person using Register would need to know about, not one that i could enforce.</p>
<p>Cheers
Anthony </p>
http://stackoverflow.com/questions/236466/rhino-mocks-good-sample-apps/237129#2371290Answer by vdhant for rhino-mocks - good sample appsvdhant2008-10-25T22:37:51Z2008-10-25T22:37:51Z<p>Anyone got any other examples?</p>
http://stackoverflow.com/questions/231903/how-much-to-log-within-an-application-how-much-is-too-much3How much to log within an application??? How much is too much...vdhant2008-10-23T23:10:52Z2008-10-24T01:23:46Z
<p>Hi guys</p>
<p>Just wondering how much people log within their applications???</p>
<p>I have seen this:</p>
<blockquote>
<p>"I typically like to use the ERROR log
level to log any exceptions that are
caught by the application. I will use
the INFO log level as a "first level"
debugging scheme to show whenever I
enter or exit a method. From there I
use the DEBUG log level to trace
detailed information. The FATAL log
level is used for any exceptions that
I have failed to catch in my web based
applications."</p>
</blockquote>
<p>Which had this code sample with it:</p>
<pre><code>Public Class LogSample
Private Shared ReadOnly Log As log4net.ILog = log4net.LogManager.GetLogger(GetType(LogSample))
Public Function AddNumbers(ByVal Number1 As Integer, ByVal Number2 As Integer) As Integer
Dim intResults As Integer
Log.Info("Starting AddNumbers Method...")
Log.Debug("Number1 Specified: " & Number1)
Log.Debug("Number2 Specified: " & Number2)
intResults = Number1 + Number2
Try
intResults = Number1 + Number2
Catch ex As Exception
Log.Error("Error Adding Nubmers.", ex)
End Try
Log.Info("AddNumbers Method Complete.")
Return intResults
End Function
End Class
</code></pre>
<p>But this just seems to add so much to the method. For instance a class that would normally be maybe 7 lines of code suddenly becomes 12 lines of code. The method also loses some of its clarity and simplicity.</p>
<p>But in saying that the benefit of having the logging in place can be good. For instance performance monitoring in a production system, chasing down aberrant bugs in production (not that you would have all this logging turned on all the time.</p>
<p>Hence I am wondering what people do?
Cheers
Anthony </p>
http://stackoverflow.com/questions/228476/avoiding-sql-injection-in-sql-query-with-like-operator-using-parameters/228490#228490-3Answer by vdhant for Avoiding SQL Injection in SQL query with Like Operator using parameters?vdhant2008-10-23T03:52:03Z2008-10-23T04:10:49Z<p>Short Anwser:</p>
<p>1) name.Replace("'", "''").... Replace any escape characters that your database may have (single quotes being the most common)</p>
<p>2) if you are using a language like .net use Parameterized Queries</p>
<pre><code>sql="Insert into Employees (Firstname, Lastname, City, State, Zip, Phone, Email) Values ('" & frmFirstname.text & "', '" & frmLastName & "', '" & frmCity & "', '" & frmState & "', '" & frmZip & "', '" & frmPhone & "', '" & frmEmail & "')"
</code></pre>
<p>The above gets replaced with the below</p>
<pre><code>Dim MySQL as string = "Insert into NewEmp (fname, LName, Address, City, State, Postalcode, Phone, Email) Values (@Firstname, @LastName, @Address, @City, @State, @Postalcode, @Phone, @Email)"
With cmd.Parameters:
.Add(New SQLParameter("@Firstname", frmFname.text))
.Add(New SQLParameter("@LastName", frmLname.text))
.Add(New SQLParameter("@Address", frmAddress.text))
.Add(New SQLParameter("@City", frmCity.text))
.Add(New SQLParameter("@state", frmState.text))
.Add(New SQLParameter("@Postalcode", frmPostalCode.Text))
.Add(New SQLParameter("@Phone", frmPhone.text))
.Add(New SQLParameter("@email", frmemail.text))
end with
</code></pre>
<p>3) user Stored procs</p>
<p>4) use Linq to SQL, again if you are using .net</p>
http://stackoverflow.com/questions/227978/fields-people-capture-when-logging-log4net4Fields people capture when logging - log4netvdhant2008-10-23T00:01:11Z2008-10-23T04:03:22Z
<p>Hi guys </p>
<p>I interested in knowing what fields people actual capture and use when logging within their applications when using loggers like log4net. </p>
<p>This can range from debugging to testing to production and can be for thick client apps but I am thinking more about semantics of web apps (i.e. asp.net).</p>
<p>Also, in the context of web (and for thick clients to a certain extent) I am interested in how people build up the hierarchy of log entires for a given request and how you identify the individual request, etc. </p>
<p>Cheers
Anthony</p>
<p>The following is what i have cine up with thus far:</p>
<p>LogId, ServerName, ServerIP, ApplicationAbbrv, ApplicationVersion, ApplicationAppDomain, LogDateTime, LogTimeStamp, LogLogger, CodeType, CodeClass, CodeFile, CodeLocation, CodeMethod, CodeLine, CodeStackPosition, LogMessage, LogException, LogEntityOrigin, ContextSessionId, ContextUserName, ContextThread, ContextObjectPropertyData, ContextMachineId, ContextMachineIP</p>
http://stackoverflow.com/questions/228024/what-major-applications-does-microsoft-sell-which-use-the-net-framework/228210#2282104Answer by vdhant for What major applications does Microsoft sell which use the .NET framework?vdhant2008-10-23T01:34:21Z2008-10-23T01:34:21Z<p>Can't remeber which blog is saw it on but Visual Studio 10 is suppose to be using WPF for its interface. Not sure if the CTP that will come out at PDC will have it though, but maybe the CTP after that. And Visual Studio is one of the biggest cash cows. Also some of the testing tools for VSTS will be fully done in WPF.</p>
<p>The point being that WPF is .net.</p>
http://stackoverflow.com/questions/227978/fields-people-capture-when-logging-log4net/228007#2280070Answer by vdhant for Fields people capture when logging - log4netvdhant2008-10-23T00:18:22Z2008-10-23T00:18:22Z<p>Humm... cheers I agree on the entry/exit being overkill, for the answer though what i was thinking is trying to build up a list.</p>
<p>Debug: date, timestamp, username, level, logger, message, exception, servername, pagename, methodname, classname, etc </p>
<p>I'm trying to see if there is anything that I have missed or should be doing and just trying to see what others are logging</p>
<p>Also I was interested in the "how people build up the hierarchy of log entires for a given request"... </p>
http://stackoverflow.com/questions/1647609/asp-net-mvc-v2-styling-templates/1651573#1651573Comment by vdhant on ASP.net MVC v2 - Styling templatesvdhant2009-10-30T23:08:06Z2009-10-30T23:08:06ZI can see what you are getting at... but as you say in the other post I think there needs to be a better way of handling the problem... I think the WPF solution would work really well here...http://stackoverflow.com/questions/1625327/asp-net-mvc-2-editorfor-and-html-properties/1627315#1627315Comment by vdhant on asp.net mvc 2 EditorFor() and html propertiesvdhant2009-10-30T23:06:46Z2009-10-30T23:06:46ZI think a better way of dealing with this is as I mentioned here <a href="http://stackoverflow.com/questions/1647609/asp-net-mvc-v2-styling-templates" rel="nofollow" title="asp net mvc v2 styling templates">stackoverflow.com/questions/1647609/…</a>... In short doing something similar to the way that WPF handles the problem... Arbitrary styles elements (on in this case attributes) get passed to the template and the template decides which internal element it will apply the style to...http://stackoverflow.com/questions/1502271/asp-net-mvc-ignoring-filter-orderComment by vdhant on ASP.Net MVC ignoring filter order...vdhant2009-10-01T13:02:20Z2009-10-01T13:02:20Zcompress before you cache.... that way it only happens once...http://stackoverflow.com/questions/1376495/wcf-interfaces-generics-and-serviceknowntype/1371746#1371746Comment by vdhant on WCF: Interfaces, Generics and ServiceKnownTypevdhant2009-09-03T09:01:00Z2009-09-03T09:01:00Zwhat do you mean by that? The concreat object implements the interface...http://stackoverflow.com/questions/1183982/wpf-how-to-make-style-triggers-trigger-a-different-named-style-to-be-applied/1184007#1184007Comment by vdhant on WPF - How to make Style.Triggers trigger a different named style to be appliedvdhant2009-07-26T11:59:22Z2009-07-26T11:59:22ZNot ideal I agree but will have to do thankshttp://stackoverflow.com/questions/872413/castle-windsor-resolving-and-generics/872462#872462Comment by vdhant on Castle Windsor resolving and genericsvdhant2009-05-16T23:34:37Z2009-05-16T23:34:37ZCool so what i means is I need to provide a generic version of the interface and then I can do what I want to do... sounds good to me.
Cheershttp://stackoverflow.com/questions/784734/using-wpf-imaging-classes-getting-image-dimensions-without-reading-the-entire-f/785383#785383Comment by vdhant on Using WPF Imaging classes - Getting image dimensions without reading the entire filevdhant2009-04-24T11:30:26Z2009-04-24T11:30:26ZCheers I'll give thiis a good and let you know how I go.http://stackoverflow.com/questions/694576/javascript-token-replace-append/695857#695857Comment by vdhant on Javascript token replace/appendvdhant2009-03-30T23:34:27Z2009-03-30T23:34:27ZLastly I think the key difference with what I have put together here is on the merging side. I think that for large token sets because I don't use the nested loop to search for matches or another loop to join. I would think that performance in the above would be better. Let me know what you think.http://stackoverflow.com/questions/694576/javascript-token-replace-append/695857#695857Comment by vdhant on Javascript token replace/appendvdhant2009-03-30T23:30:36Z2009-03-30T23:30:36ZI did some research and the regex approach which I was thinking about, looks like it would perform slower. I know that this is wrapped in an object but this is what I was originally was looking at but wanted to see if there was an alternative approach. I found out there wasn't. Thanks though.seenexthttp://stackoverflow.com/questions/694576/javascript-token-replace-appendComment by vdhant on Javascript token replace/appendvdhant2009-03-30T02:35:54Z2009-03-30T02:35:54Zcool that is something that i did know...http://stackoverflow.com/questions/694576/javascript-token-replace-append/694592#694592Comment by vdhant on Javascript token replace/appendvdhant2009-03-29T22:55:51Z2009-03-29T22:55:51ZSee my edit in the abovehttp://stackoverflow.com/questions/694576/javascript-token-replace-appendComment by vdhant on Javascript token replace/appendvdhant2009-03-29T12:54:55Z2009-03-29T12:54:55Zsee edit in the abovehttp://stackoverflow.com/questions/484214/c-early-and-late-binding/484247#484247Comment by vdhant on C# early and late bindingvdhant2009-03-08T10:06:47Z2009-03-08T10:06:47ZThanks for the above comment, didn't know thathttp://stackoverflow.com/questions/283824/constraints-for-explicit-interface-implementation/286288#286288Comment by vdhant on "Constraints for explicit interface implementation..."vdhant2008-11-16T00:37:57Z2008-11-16T00:37:57ZThanks, even though this check is done at run time I think that this is the closest I am going to get. Cheershttp://stackoverflow.com/questions/283824/constraints-for-explicit-interface-implementation/283837#283837Comment by vdhant on "Constraints for explicit interface implementation..."vdhant2008-11-13T03:25:06Z2008-11-13T03:25:06ZI would have thought that it would be ok because I am making the definition stronger not weaker.