User JD Conley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:27:59Zhttp://stackoverflow.com/feeds/user/51769http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/414273/ms-sql-express-2005-2008-multi-instance-cpu-and-memory-utilization1MS-SQL Express 2005/2008 multi instance CPU and memory utilizationJD Conley2009-01-05T19:50:16Z2009-12-17T04:53:47Z
<p>With SQL Express (either 2005 or 2008 edition) there is a limit of 1GB memory and 1 CPU that can be used. What I'm wondering, is if two instances are installed on the same machine, would they use the same CPU and same 1GB of memory? Or, would they use potentially two different CPU's and 2GB memory?</p>
http://stackoverflow.com/questions/769619/live-debugging-a-stack-overflow6live debugging a stack overflowJD Conley2009-04-20T18:52:26Z2009-12-05T05:10:23Z
<p>I have a managed code Windows Service application that is crashing occasionally in production due to a managed StackOverFlowException. I know this because I've run adplus in crash mode and analyzed the crash dump post mortem using SoS. I have even attached the windbg debugger and set it to "go unhandled exception".</p>
<p>My problem is, I can't see any of the managed stacks or switch to any of the threads. They're all being torn down by the time the debugger breaks.</p>
<p>I'm not a Windbg expert, and, short of installing Visual Studio on the live system or using remote debugging and debugging using that tool, does anyone have any suggestions as to how I can get a stack trace out of the offending thread?</p>
<p>Here's what I'm doing.</p>
<blockquote>
<p>!threads</p>
<p>...</p>
<p>XXXX 11 27c 000000001b2175f0 b220 Disabled 00000000072c9058:00000000072cad80 0000000019bdd3f0 0 Ukn System.StackOverflowException (0000000000c010d0)</p>
<p>...</p>
</blockquote>
<p>And at this point you see the XXXX ID indicating the thread is quite dead.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/437330#43733021Answer by JD Conley for What's your most controversial programming opinion?JD Conley2009-01-12T22:49:45Z2009-10-23T18:01:21Z<p><b>Cowboy coders get more done.</b></p>
<p>I spend my life in the startup atmosphere. Without the Cowboy coders we'd waste endless cycles making sure things are done "right".</p>
<p>As we know it's basically impossible to forsee all issues. The Cowboy coder runs head-on into these problems and is forced to solve them much more quickly than someone who tries to forsee them all.</p>
<p>Though, if you're Cowboy coding you had better refactor that spaghetti before someone else has to maintain it. ;) The best ones I know use continuous refactoring. They get a ton of stuff done, don't waste time trying to predict the future, and through refactoring it becomes maintainable code.</p>
<p>Process always gets in the way of a good Cowboy, no matter how Agile it is.</p>
http://stackoverflow.com/questions/1028000/how-do-i-convince-linq-to-sql-to-generate-sql-to-compare-strings-with-greater-tha2How do I convince Linq to Sql to generate Sql to compare strings with greater than or less than?JD Conley2009-06-22T15:59:32Z2009-06-22T16:04:50Z
<p>Let's say I have a MS-SQL 2005 table named "People" with the following rows:</p>
<pre><code>|FirstName|LastName|
|JD |Conley |
|Joe |Schmo |
|Mary |Jane |
</code></pre>
<p>I want to execute a SQL statement like:</p>
<pre><code>select * from People where FirstName > 'JD'
</code></pre>
<p>The problem I'm having is I can't think of a way to get LINQ to SQL to generate this SQL statement. Obviously I can't use ">" and "<" operators on strings in C#.</p>
http://stackoverflow.com/questions/777431/t-sql-annoyances/777519#7775190Answer by JD Conley for T-SQL AnnoyancesJD Conley2009-04-22T14:35:46Z2009-04-22T14:35:46Z<ul>
<li>The madness you have to go through to construct dynamic queries in a sproc.</li>
<li>The tight coupling of all entities with files on disk, and the absolute horror involved in moving them around.</li>
</ul>
http://stackoverflow.com/questions/777400/what-is-the-biggest-mistake-people-make-when-starting-to-use-linq/777459#7774591Answer by JD Conley for What is the biggest mistake people make when starting to use LINQ?JD Conley2009-04-22T14:22:14Z2009-04-22T14:22:14Z<p>LINQ as a language is pretty straight forward and not so unexpected, especially if you're familiar with functional programming.</p>
<p>The concept of <a href="http://www.google.com/search?q=linq%2Bdeferred%2Bexecution" rel="nofollow">Deferred Execution</a> is probably the biggest gotcha, and one of the best features. When you use LINQ that returns an IQueryable it's important to remember you are NOT executing whatever code you just wrote. It isn't until you call one of the methods that produces some other result that the query is executed.</p>
<p>Also, in terms of the LINQ to SQL provider, the biggest gotcha I've found is the <a href="http://jdconley.com/blog/archive/2007/11/28/linq-to-sql-surprise-performance-hit.aspx" rel="nofollow">performance cost</a>. Turns out there is significant CPU cost to constructing SQL queries that are incurred every time the LINQ query is ran, unless you pre-compile your highly trafficked queries.</p>
http://stackoverflow.com/questions/505879/build-vs-buy-integrate-how-do-you-make-the-decision/505903#5059030Answer by JD Conley for Build vs. Buy & Integrate - How do YOU make the decision?JD Conley2009-02-03T03:15:50Z2009-02-03T03:15:50Z<p>Obviously "it depends." My general rule is that if it's internal we buy it and integrate if required. Our corporate sys admin has a support line to someone external to our organization if she has issues and it isn't a huge project burdening our developers.</p>
<p>If it's part of a product I'm shipping, I build it or take bits of source as needed from open source libraries. There's nothing worse than someone else's black box code breaking your product. The fewer the dependencies in a shipping product the better, IMHO.</p>
<p>I'd lean toward buy for a support product like you mention. The good ones offer great integration points to shared authentication systems, user facing theming, and probably a boatload of features your customer service team hasn't realized they want/need yet.</p>
<p>But, what to analyze. The biggest thing for me when it comes to 'managerial' projects like this is opportunity cost. What else could my team be working on that will make our company significantly more money, get us more customers, etc? Of course these projects have some positive impact on the bottom line, but nothing compared to new products, improved products, etc. How long over time, including maintenance, will developers/pm's/testers spend on this managerial project? If you buy, integration points don't change often, but if you build, your customers (in house people) will be asking for new features constantly and you'll be in the position to maintain this project for the rest of your tenure.</p>
http://stackoverflow.com/questions/505325/serialize-a-bitmap-within-a-custom-object/505872#5058720Answer by JD Conley for serialize a bitmap within a custom objectJD Conley2009-02-03T02:49:18Z2009-02-03T02:49:18Z<p>I've encountered something similar in the past when cloning and thumbnailing images. Unfortunately it's been a few years and I don't remember the details but it had to do with file handles and GDI holding onto them as the source for that Image object.</p>
<p>I resolved the issue by loading images from a MemoryStream rather than whatever the actual source stream was. If your images are in files, load the contents of the file into a MemoryStream first. Then load the image from the MemoryStream.</p>
http://stackoverflow.com/questions/452662/how-to-get-data-from-an-ihttpmodule-to-the-asp-net-mvc-requestcontext0How to get data from an IHttpModule to the ASP.NET MVC RequestContext?JD Conley2009-01-17T01:54:33Z2009-01-20T16:53:17Z
<p>I've got a custom IHttpModule that does authentication (to Facebook, Myspace, etc). It raises an event that can be handled in the HttpApplication instance with details about the user. It's a lot like the OnAuthenticate event that the FormsAuthenticationModule raises.</p>
<p>From the HttpApplication class, where should I place this information I get so it is available to the ASP.NET MVC pipeline? I used to stick it in the Context.Items dictionary. But it seems with the (much friendlier) HttpContextBase I want to put it there so that it's easy to mock/inject and I'm not using HttpContext.Current in my controller.</p>
<p>So, basically, how do I best get data from an IHttpModule into the MVC context? The best I could come up with from a quick look is to create a custom IControllerFactory to pull data out of the HttpContext and add it to the RequestContext. Did I answer my own question? Is there a less intrusive way (like an event I can handle)?</p>
http://stackoverflow.com/questions/460280/custom-c-data-transfer-objects-from-javascript-pagemethods/460471#4604713Answer by JD Conley for Custom C# data transfer objects from javascript PageMethods.JD Conley2009-01-20T08:34:45Z2009-01-20T08:34:45Z<p>Here's a pretty extensive post on the subject of using JSON serialized WebMethods from an asmx with jQuery. It ought to do the trick.</p>
<p><a href="http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/" rel="nofollow">http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/</a></p>
<p>If you want to use ASP.NET AJAX instead of jQuery to do the AJAX bit then you should have a look at the ScriptManager and ServiceReference which create a javascript proxy for you. It's really powerful and we use it successfully in some pretty big apps. Found this article:</p>
<p><a href="http://dotnetslackers.com/articles/ajax/JSON-EnabledWCFServicesInASPNET35.aspx" rel="nofollow">http://dotnetslackers.com/articles/ajax/JSON-EnabledWCFServicesInASPNET35.aspx</a></p>
http://stackoverflow.com/questions/445381/trying-to-return-asp-net-mvc-jsonresult-with-vb-net/445408#4454082Answer by JD Conley for Trying to return asp.net mvc JSONResult with VB.NetJD Conley2009-01-15T02:13:11Z2009-01-15T02:13:11Z<p>Try:</p>
<p>$("#Title").text(data.Title);</p>
<p>or </p>
<p>$("#Title").html(data.Title);</p>
<p>Notice the casing... Also, something like <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">Firebug</a> will be helpful. You can look in the Net and Console tab and see all your requests, as well as debug your Javascript pretty easily.</p>
http://stackoverflow.com/questions/445247/where-can-i-get-images-or-full-windows-oss-to-run-in-virtual-machines/445266#4452665Answer by JD Conley for Where can I get images or full Windows OS's to run in Virtual MachinesJD Conley2009-01-15T00:53:11Z2009-01-15T02:01:27Z<p>The easiest way is with a MSDN subscription of some sort. You get ISO's of all the OS's for testing purposes for one yearly fee. Depending on your situation the cost varies.</p>
<ul>
<li>MSDN: <a href="http://msdn.microsoft.com/en-us/subscriptions/default.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/subscriptions/default.aspx</a></li>
<li>Bizspark: <a href="http://www.microsoft.com/BizSpark/" rel="nofollow">http://www.microsoft.com/BizSpark/</a></li>
<li>Action Pack: <a href="http://partner.microsoft.com/40016455" rel="nofollow">http://partner.microsoft.com/40016455</a></li>
<li>Empower for ISV: <a href="http://partner.microsoft.com/40011351" rel="nofollow">http://partner.microsoft.com/40011351</a></li>
</ul>
<p>Oddly, the partner site is completely broken for Google Chrome right now.</p>
<p>Edit:
If you qualify for Action Pack, Empower, or Bizspark then you're talking ~$300/year for 5 MSDN subscriptions, a bunch of office licenses, real SQL Server licenses, etc.</p>
http://stackoverflow.com/questions/445224/can-i-place-the-net-framework-on-a-machine-without-needing-admin-privileges/445246#4452460Answer by JD Conley for Can I place the .NET framework on a machine without needing admin privileges?JD Conley2009-01-15T00:48:15Z2009-01-15T00:48:15Z<p>Either go with something like Xenocode (BobbyShaftoes's answer) or get .NET installed on the destination machines before you distribute your application. If you're on an Active Directory this can be done pretty easily through group policy.</p>
<ul>
<li>.NET 1.1: <a href="http://support.microsoft.com/kb/323886" rel="nofollow">http://support.microsoft.com/kb/323886</a></li>
<li>.NET 3.5: <a href="http://msdn.microsoft.com/en-us/library/cc160717.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc160717.aspx</a></li>
</ul>
http://stackoverflow.com/questions/441900/most-used-ide-keyboard-shortcut/441919#4419191Answer by JD Conley for Most used IDE Keyboard ShortcutJD Conley2009-01-14T04:33:26Z2009-01-14T04:33:26Z<p><strong>Visual Studio</strong></p>
<ul>
<li>Ctrl + Shift + F Find in multiple files. </li>
<li>Ctrl + K + D Apply default formatting rules.</li>
<li>Ctrl + K + C Comment section.</li>
<li>Ctrl + K + U Uncomment section.</li>
<li>Ctrl + Alt + E Debugger auto break on exception settings.</li>
</ul>
http://stackoverflow.com/questions/438034/showing-help-for-a-command-line-utility/438042#4380420Answer by JD Conley for Showing help for a command-line utilityJD Conley2009-01-13T05:17:25Z2009-01-13T05:17:25Z<p>Are you redirecting Console.Out to somewhere else?</p>
<p>Try throwing a System.Diagnostics.Debugger.Launch() in the ShowUsage method so you can see if it's getting hit at runtime.</p>
<p>Can you reproduce the issue with a simple exe, only accepting those help parameters?</p>
http://stackoverflow.com/questions/437972/windows-shell-integration-using-net/438031#4380314Answer by JD Conley for Windows Shell Integration using .NETJD Conley2009-01-13T05:10:10Z2009-01-13T05:10:10Z<p>If you just want to add menu items, then a shell extension is overkill. You can register a command line in the registry which will run your exe with the selected file(s) as the parameter. Shell extensions are really only required if you want to change explorer's behavior, add custom icons, or hook shell based file operations.</p>
<p><a href="http://www.codeproject.com/KB/shell/SimpleContextMenu.aspx" rel="nofollow">http://www.codeproject.com/KB/shell/SimpleContextMenu.aspx</a></p>
<p>If a shell extension is what you need, you're best writing a thin wrapper in unmanaged code that calls out to another process that is your .NET application through some sort of cross process communication channel. Due to all the potential versioning issues, it's not recommended to load the .NET runtime into the explorer process.</p>
http://stackoverflow.com/questions/437225/sql-server-index-dependency/437291#437291-1Answer by JD Conley for SQL Server Index DependencyJD Conley2009-01-12T22:37:03Z2009-01-12T22:37:03Z<p>As le dorfier says, this depends on the execution plan SQL determines at runtime. I'd suggest setting up perfmon to track table scans, or keep sql profiler running after you drop the index filtering for the colum names you're indexing. Look for long running queries.</p>
http://stackoverflow.com/questions/437271/running-c-app-32-bit-on-64-bit-machine/437276#4372761Answer by JD Conley for Running C# app 32 bit on 64 bit machineJD Conley2009-01-12T22:31:39Z2009-01-12T22:31:39Z<p>Assuming this is a Winforms, console app, or Windows service you have to build the exe for x86 instead of Any CPU. It's in the Configuration Manager.</p>
http://stackoverflow.com/questions/437022/mvc-datacontext-ok-to-share-one-connection-or-not/437238#4372381Answer by JD Conley for MVC DataContext Ok to Share One Connection or NotJD Conley2009-01-12T22:20:40Z2009-01-12T22:20:40Z<p>Generally speaking the less round trips to your database the better. However, in high scale apps we often make our databases more and more 'dumb' so we end up not doing any joins so we don't tie up CPU and memory on the SQL database server. It really depends on which resources you find more scarce. If your SQL server has plenty of resources do the join there, otherwise pulling it back separately would be better. Have you looked at the results of this in the SQL profiler? Are you sure it's 4 connections, or just 4 separate calls?</p>
http://stackoverflow.com/questions/437180/read-single-value-from-query-result/437210#4372100Answer by JD Conley for Read single value from query resultJD Conley2009-01-12T22:11:55Z2009-01-12T22:11:55Z<p>Try using the ExecuteScalar method on your command. You should be able to use the generic one or cast the result to an int/long.</p>
http://stackoverflow.com/questions/436958/net-app-config-question/436982#4369820Answer by JD Conley for .NET app.config questionJD Conley2009-01-12T20:56:37Z2009-01-12T20:56:37Z<p>Well, if there are hundreds of machines I assume there is Group Policy in place or some other method of running admin scripts or setup files. Maybe you can create a small MSI package to push out this config file or get it added to a startup script?</p>
http://stackoverflow.com/questions/436659/c-socketexception-with-multicast-on-xp/436961#4369612Answer by JD Conley for C# SocketException with Multicast on XPJD Conley2009-01-12T20:48:16Z2009-01-12T20:54:16Z<p>You need to bind the socket to an interface before setting the SocketOptionName.AddMembership option.</p>
<p>Edit: Just verified this in the MSDN docs (though it says only up to NT4):</p>
<blockquote>
<p>Windows 98, Windows NT 4.0 Platform Note: You must call the Bind method before using AddMembership as the optionName parameter.</p>
</blockquote>
http://stackoverflow.com/questions/436866/can-you-overload-controller-methods-in-asp-net-mvc/436935#43693510Answer by JD Conley for Can you overload controller methods in ASP.Net MVC?JD Conley2009-01-12T20:37:43Z2009-01-12T20:37:43Z<p>You can use the attribute if you want your code to do overloading.</p>
<pre><code>[ActionName("MyOverloadedName")]
</code></pre>
<p>But, you'll have to use a different action name for the same http method (as others have said). So it's just semantics at that point. Would you rather have the name in your code or your attribute?</p>
<p>Phil has an article related to this: <a href="http://haacked.com/archive/2008/08/29/how-a-method-becomes-an-action.aspx" rel="nofollow">http://haacked.com/archive/2008/08/29/how-a-method-becomes-an-action.aspx</a></p>
http://stackoverflow.com/questions/436889/in-mvc-should-pagination-info-go-in-the-path-or-querystring/436918#4369183Answer by JD Conley for In MVC, should pagination info go in the path or querystring?JD Conley2009-01-12T20:32:45Z2009-01-12T20:32:45Z<p>Well, it's obviously up to you. But, you're designing a RESTful interface that's supposed to be human readable. The querystring is much better in that regard. Otherwise you're looking at two numbers that could really be anything. And who's going to remember the order?</p>
http://stackoverflow.com/questions/436778/send-broadcast-message-from-all-network-adapters/436898#4368984Answer by JD Conley for Send broadcast message from all network adaptersJD Conley2009-01-12T20:28:33Z2009-01-12T20:28:33Z<p>You can use the following to get all your IP Addresses (and a lot more). So you can iterate through the list and bind (like Jon B said) to the specific IP you want when you send out your multicast.</p>
<pre><code>foreach (var i in System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces())
foreach (var ua in i.GetIPProperties().UnicastAddresses)
Console.WriteLine(ua.Address);
</code></pre>
http://stackoverflow.com/questions/436760/smo-scripting-objects-and-security/436848#4368480Answer by JD Conley for SMO scripting objects and securityJD Conley2009-01-12T20:17:03Z2009-01-12T20:17:03Z<p>I haven't looked at the SMO code, but have you tried using the constructor on the database object? Maybe you can access it directly.</p>
<pre><code>Database myDB = new Database(myServer, "myDatabase");
</code></pre>
http://stackoverflow.com/questions/424040/asp-net-c-sql-server-2000-intermittent-connection-exceptions-on-production-se/434794#4347941Answer by JD Conley for ASP.Net, C# & SQL Server 2000 intermittent connection exceptions on production server - specific environment problem?JD Conley2009-01-12T08:26:09Z2009-01-12T08:26:09Z<p>The Invalid Viewstate error is pretty common in a high traffic web site. Though, if you recently moved to multiple web servers, make sure you're sharing the same machine key so Viewstate is signed with the same key on all servers. <a href="http://www.codinghorror.com/blog/archives/000132.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000132.html</a></p>
<p>Based on the other errors I'd guess that you are using shared connections across multiple threads. Are your connections stored in static variables, Application state, Session state, or other object that's used across multiple requests? Maybe there's a hashtable somewhere containing connections, commands, or transactions. None of the ADO.Net objects are thread safe. So, make sure you only use them in a single threaded fashion.</p>
<p>Another possibility is you're passing around the ADO.NET objects and not consistently disposing of them and managing their scope. Maybe they're cached in the request context or some such?</p>
http://stackoverflow.com/questions/434626/thread-stops-doing-its-job/434732#4347320Answer by JD Conley for Thread stops doing its jobJD Conley2009-01-12T07:48:08Z2009-01-12T07:48:08Z<p>I'd suggest using adplus when the issue reproduces and getting yourself a hang dump. Analyze in Windbg and SoS.</p>
<p>Is that in a Winforms application? Maybe the ISynchronizeInvoke implementation is hanging. Is this running as an interactive user?</p>
http://stackoverflow.com/questions/375208/asp-net-mvc-how-access-file-upload-in-controller-action/403764#4037641Answer by JD Conley for asp.net mvc - how access file upload in controller actionJD Conley2008-12-31T18:46:21Z2008-12-31T18:46:21Z<p>In your question you have a type-o. If that was in the final code, it would cause an issue. It's "multipart/form-data" not "mulitipart/form-data".</p>
http://stackoverflow.com/questions/1028000/how-do-i-convince-linq-to-sql-to-generate-sql-to-compare-strings-with-greater-tha/1028021#1028021Comment by JD Conley on How do I convince Linq to Sql to generate Sql to compare strings with greater than or less than?JD Conley2009-06-22T16:06:15Z2009-06-22T16:06:15Zguess it's all about the right search terms. brain not working this monday. :)http://stackoverflow.com/questions/452662/how-to-get-data-from-an-ihttpmodule-to-the-asp-net-mvc-requestcontext/462132#462132Comment by JD Conley on How to get data from an IHttpModule to the ASP.NET MVC RequestContext?JD Conley2009-01-21T02:42:44Z2009-01-21T02:42:44ZI see, so items are copied from the HttpContext to the HttpContextBase. Good to know.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/437330#437330Comment by JD Conley on What's your most controversial programming opinion?JD Conley2009-01-17T02:03:04Z2009-01-17T02:03:04ZCameron: I think you need a new profession. Sounds like your job sucks. :)http://stackoverflow.com/questions/445247/where-can-i-get-images-or-full-windows-oss-to-run-in-virtual-machines/445331#445331Comment by JD Conley on Where can I get images or full Windows OS's to run in Virtual MachinesJD Conley2009-01-15T02:00:26Z2009-01-15T02:00:26ZYeah, but if he qualifies for Action Pack, Empower, or Bizspark then you're talking ~$299/year for 5 MSDN subscriptions, a bunch of office licenses, etc.http://stackoverflow.com/questions/445224/can-i-place-the-net-framework-on-a-machine-without-needing-admin-privileges/445229#445229Comment by JD Conley on Can I place the .NET framework on a machine without needing admin privileges?JD Conley2009-01-15T00:43:56Z2009-01-15T00:43:56ZI've used Xenocode quite a bit. Great stuff.http://stackoverflow.com/questions/440675/compile-error-cs0433-on-pre-compiled-asp-net-2-0-site/442982#442982Comment by JD Conley on Compile Error CS0433 on pre-compiled ASP.NET 2.0 site.JD Conley2009-01-15T00:43:13Z2009-01-15T00:43:13ZThis happens to me all the time, and clearing things out does the trick. Would love to know if someone actually knows the root cause other.http://stackoverflow.com/questions/443795/log4net-works-in-main-thread-but-not-in-created-threadComment by JD Conley on Log4Net works in main thread but not in created threadJD Conley2009-01-15T00:37:59Z2009-01-15T00:37:59ZCan you post your code? How are you initializing log4net?http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/437330#437330Comment by JD Conley on What's your most controversial programming opinion?JD Conley2009-01-13T01:08:56Z2009-01-13T01:08:56ZTo me a cowboy is someone who just jumps into a problem and recklessly writes code, rather than thinking about, estimating, and designing something first. They do it without any regard to a process or accountability other than "it better get done, as fast as possible".http://stackoverflow.com/questions/414273/ms-sql-express-2005-2008-multi-instance-cpu-and-memory-utilization/414342#414342Comment by JD Conley on MS-SQL Express 2005/2008 multi instance CPU and memory utilizationJD Conley2009-01-05T21:35:33Z2009-01-05T21:35:33ZThanks. Do you know this 100% for sure?