User Kimoz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T03:42:11Zhttp://stackoverflow.com/feeds/user/7753http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1454740/asp-net-mvc-partial-views-and-jqgrid/1543024#15430240Answer by Kimoz for ASP.Net MVC partial views and jqGridKimoz2009-10-09T10:33:09Z2009-10-09T10:33:09Z<p>Try <%= Url.Content("~/Scripts/js/jquery.jqGrid.js") %></p>
http://stackoverflow.com/questions/137975/what-is-so-bad-about-singletons/138051#13805112Answer by Kimoz for What is so bad about SingletonsKimoz2008-09-26T06:37:29Z2009-09-15T00:27:06Z<p>The singleton pattern is not a problem in itself. The problem is that the pattern is often used by people developing software with object oriented tools without having a solid grasp of OO concepts. When singletons are introduced in this context they tend to grow into unmanageable classes that contain helper methods for every little use.</p>
<p>Singletons are also a problem from a testing perspective. They tend to make isolated unit-tests difficult to write. <strong>Inversion of Control</strong> and <strong>Dependency Injection</strong> are patterns meant to overcome this problem in an object oriented manner that lends itself to unit testing.</p>
<p>In a garbage collected environment singletons can quickly become an issue with regard to memory management.</p>
<p>There is also the multi-threaded scenario where singletons can become a bottleneck as well as a synchronization issue.</p>
http://stackoverflow.com/questions/480847/wcf-streaming-contract1WCF Streaming contractKimoz2009-01-26T18:25:12Z2009-09-03T22:14:56Z
<p>I am trying to set up a streaming WCF service using basicHttpBinding. The service is hosted in an IIS7 process. </p>
<p>The contract contains a simple Stream GetStream() operation.</p>
<p>When I connect with a simple client using a Service Reference I get the following result from the server.</p>
<p>Content Type multipart/related; type="application/xop+xml";start="<a href="http://tempuri.org/0" rel="nofollow">http://tempuri.org/0</a>";boundary="uuid:9520d099-4241-43f3-824d-5a3d197f62ed+id=1";start-info="text/xml" was not supported by service <a href="http://localhost:6000/StreamingTest.svc" rel="nofollow">http://localhost:6000/StreamingTest.svc</a>. The client and service bindings may be mismatched.</p>
<p>This is the binding configuration on the client. The binding section called "streaming_IStreamingTestService" is an exact copy on the server. Ctrl+X.</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="streaming_IStreamingTestService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="655360" maxBufferPoolSize="655360" maxReceivedMessageSize="655360"
messageEncoding="Mtom" transferMode="Streamed" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8000/StreamingTest.svc"
binding="basicHttpBinding" bindingConfiguration="streaming_IStreamingTestService"
contract="Services.StreamingTest.IStreamingTestService" name="streaming_IStreamingTestService" />
</client>
</system.serviceModel>
</configuration>
</code></pre>
http://stackoverflow.com/questions/422403/login-without-username-and-password-from-the-web-browser-on-windows/422473#4224730Answer by Kimoz for Login without username and password from the web browser on WindowsKimoz2009-01-07T22:34:22Z2009-01-07T22:34:22Z<p>Yes this is possible. It is often used in intranet applications where users are. windows uses <em>NTLM</em> or <em>Kerberos</em> to authorize the user against a central service, typically <em>Active Directory</em> on the windows platform. On the .NET platform the current user information can be accessed through the <em>System.Threading.Thread.CurrentPrincipal.Identity</em> instance.</p>
http://stackoverflow.com/questions/416420/how-do-i-deny-access-to-dll-files-in-a-web-site-on-both-iis-6-and-7/416738#4167380Answer by Kimoz for How do I deny access to .dll files in a web site (on both IIS 6 and 7)Kimoz2009-01-06T14:30:52Z2009-01-06T14:36:31Z<p>Denying all dll's is drastic in an asp.net site, as Silverlight etc use client dll's that need to be available for download by the client browser.</p>
<p>You could use IIS Management Console or Management API's to disable authentication on the dll's file or directory.</p>
<p>Simply uncheck all authentication options and access will be denied.</p>
http://stackoverflow.com/questions/211448/icollection-readonly-collections-and-synchronisation-is-this-right/211491#2114912Answer by Kimoz for ICollection, readonly collections, and synchronisation. Is this right?Kimoz2008-10-17T08:58:16Z2008-10-17T08:58:16Z<p>Yes this is an issue in some cases. Even though the collection is read only and cannot be changed, the objects the collection references are not read only. Thus if the clients use the SyncRoot to perform locking they will not be thread safe when modifying the objects referenced by the collection.</p>
<p>I would recommend adding:</p>
<pre><code>private readonly object syncRoot = new object();
</code></pre>
<p>to your class. Return this as the SyncRoot and you're good to go.</p>
http://stackoverflow.com/questions/181597/what-are-the-naming-guidelines-for-asp-net-controls/181830#1818300Answer by Kimoz for What are the naming guidelines for ASP.NET controls?Kimoz2008-10-08T08:32:08Z2008-10-08T08:32:08Z<p>I'm not sure of the guidelines regarding ASP.NET, but in the book Framework Design Guidelines from Microsoft, there are several best-practice guidelines about naming of class members. Since ASP.NET Controls in most cases result in a protected field of the appropriate type, I consider these naming guidelines to apply for ASP.NET controls as well. In fact Code Analysis does not differentiate on Control reference fields and other fields.</p>
<p>These guidelines recommend using a naming scheme that implies the logical use rather than a type-descriptive variant. There are several reasons for this. The prefix is implies a type to the developer that might not be correct due to later changes. It adds an extra step in code maintainence. If you change your Button control into a LinkButton control the name also needs to be changed to correct the prefix.</p>
<p>For that reason I would call the control FirstNameEdit etc... </p>
http://stackoverflow.com/questions/178045/when-should-you-start-optimising-code/178208#1782080Answer by Kimoz for When should you start optimising code?Kimoz2008-10-07T12:27:19Z2008-10-07T12:27:19Z<p>I would say that optimizations are only required if you have performance issues that cannot be corrected by hardware/platform upgrades within a reasonable cost.</p>
<p>If better performance is still required, a performance analysis in an enviroment resembling the deployed enviroment can give answers to where the bottleneck might be.</p>
<p>When optimizing I always try to avoid making the code more difficult to maintain. Adding complexity can easily become a maintanance nightmare.</p>
<p>Simple framework optimizations like using string.IsNullOrEmpty(string) in stead of (myString != null && myString.Length > 0) are simply best-practice coding conventions that is part of everyday work.</p>
http://stackoverflow.com/questions/178026/why-is-null-present-in-c-and-java/178186#1781861Answer by Kimoz for Why is "null" present in C# and java?Kimoz2008-10-07T12:18:12Z2008-10-07T12:18:12Z<p>There are situations in which <em>null</em> is a nice way to signify that a reference has not been initialized. This is important in som scenarios. </p>
<p>For instance:</p>
<pre><code>MyResource resource;
try
{
resource = new MyResource();
//
// Do some work
//
}
finally
{
if (resource != null)
resource.Close();
}
</code></pre>
<p>This is in most cases accomplished by the use of a <em>using</em> statement. But the pattern is still widely used.</p>
<p>With regards to your NullReferenceException, the cause of such errors are often easy to reduce by implementing a coding standard where all parameters a checked for validity. Depending on the nature of the project I find that in most cases it's enough to check parameters on exposed members. If the parameters are not within the expected range an <em>ArgumentException</em> of some kind is thrown, or a error result is returned, depending on the error handling pattern in use.</p>
<p>The parameter checking does not in it self remove bugs, but any bugs that occur are easier to locate and correct during the testing phase.</p>
<p>As a note, <a href="http://en.wikipedia.org/wiki/Anders_Hejlsberg" rel="nofollow">Anders Hejlsberg</a> has mentioned the lack of non-null enforcement as one of the biggest mistakes in the C# 1.0 spec and that including it now is "difficult".</p>
<p>If you still think that a statically enforced non-null reference value is of great importance you could check out the <a href="http://research.microsoft.com/SpecSharp/" rel="nofollow">spec#</a> language. It is an extension of C# where non-null references are part of the language. This ensures that a reference marked as non-null can never be assigned a null reference.</p>
http://stackoverflow.com/questions/148078/how-to-make-a-method-exclusive-in-a-multithreaded-context/148210#1482101Answer by Kimoz for How to make a method exclusive in a multithreaded context ?Kimoz2008-09-29T10:34:35Z2008-09-29T10:34:35Z<p>I think Microsoft <a href="http://msdn.microsoft.com/en-us/library/ms173179.aspx" rel="nofollow">recommends</a> using the <a href="http://msdn.microsoft.com/en-us/library/c5kehkcz(VS.80).aspx" rel="nofollow">lock</a> statement, instead of using the Monitor class directly. It gives a cleaner layout and ensures the lock is released in all circumstances.</p>
<pre><code>public class MyClass
{
// Used as a lock context
private readonly object myLock = new object();
public void DoSomeWork()
{
lock (myLock)
{
// Critical code section
}
}
}
</code></pre>
<p>If your application requires the lock to span all instances of MyClass you can define the lock context as a static field:</p>
<pre><code>private static readonly object myLock = new object();
</code></pre>
http://stackoverflow.com/questions/88541/business-objects-validation-and-exceptions/88584#885840Answer by Kimoz for Business Objects, Validation And ExceptionsKimoz2008-09-17T23:12:08Z2008-09-17T23:12:08Z<p>I my opinion this is an example where throwing an exception is okay. Your property probably does not have any context by which to correct the problem, as such an exception is in order and the calling code should handle the situation, if possible.</p>
http://stackoverflow.com/questions/84339/how-to-implement-in-process-full-text-search-engine/84600#846001Answer by Kimoz for How to implement in-process full text search engineKimoz2008-09-17T15:37:46Z2008-09-17T15:44:12Z<p>There are a number of options on the market. Either fully fledge commercial products or open source variants. Your choice of a search provider is very dependent on the customers you are targetting.</p>
<p>Microsoft has a free Express version of their Search Server. As far as I know the Express edition is limited to running the Application Tier on one server.</p>
<p>There is also the <a href="http://lucene.apache.org/java/docs/" rel="nofollow">Apache Lucene</a> project which is open source. It has a nice API that's easy to use and a large community of users. The original project is based on Java, but there are also other <a href="http://wiki.apache.org/lucene-java/LuceneImplementations" rel="nofollow">implementations</a> such as <a href="http://sourceforge.net/projects/nlucene" rel="nofollow">NLucene</a> for .NET that I have used personally.</p>
http://stackoverflow.com/questions/71306/asp-net-how-can-one-differentiate-page-processing-time-from-client-transmission/71593#715930Answer by Kimoz for ASP.net - How can one differentiate Page-Processing Time from Client-Transmission TimeKimoz2008-09-16T12:09:46Z2008-09-16T12:09:46Z<p>This depends on the feature set of the performance tools you have. But if you just need to log the processing time then you could follow this approach.</p>
<ol>
<li>Log the starting time in the <a href="http://msdn.microsoft.com/en-us/library/system.web.httpapplication.beginrequest.aspx" rel="nofollow">HttpApplication.BeginRequest</a> event.</li>
<li>Log the elapsed time in the <a href="http://msdn.microsoft.com/en-us/library/system.web.httpapplication.presendrequestcontent.aspx" rel="nofollow">HttpApplication.PreSendRequestContent</a> event.</li>
</ol>
<p>If you just want a specific page then you could check for this in the BeginRequest event.
The application events can be attached in Global.asax.</p>
http://stackoverflow.com/questions/69843/what-is-an-example-of-this-assignment-in-c/69880#698802Answer by Kimoz for What is an example of "this" assignment in C#?Kimoz2008-09-16T06:44:15Z2008-09-16T06:44:15Z<p>using the <strong>this</strong> keyword ensures that only variables and methods scoped in the current type are accessed. This can be used when you have a naming conflict between a field/property and a local variable or method parameter.</p>
<p>Typically used in constructors:</p>
<pre><code>private readonly IProvider provider;
public MyClass(IProvider provider)
{
this.provider = provider;
}
</code></pre>
<p>In this example we assign the parameter provider to the private field provider.</p>
http://stackoverflow.com/questions/224689/transactions-in-net/224702#224702Comment by Kimoz on Transactions in .netKimoz2008-10-22T06:50:55Z2008-10-22T06:50:55Z<a href="http://www.codeguru.com/columns/vb/article.php/c11067" rel="nofollow">codeguru.com/columns/vb/…</a>http://stackoverflow.com/questions/187189/response-redirect-inside-using/187290#187290Comment by Kimoz on Response.Redirect("") inside "using{ }"Kimoz2008-10-09T13:49:28Z2008-10-09T13:49:28ZAs such I would recommend doing the Page.Transfer outside of the using block. Refactor your code to test a condition flag after the using block has completed.