User jrista - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T20:13:21Z http://stackoverflow.com/feeds/user/111554 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1801859/would-you-hire-a-c-programmer-with-10-years-experience-for-a-c-role/1801897#1801897 21 Answer by jrista for Would you hire a C++ programmer with 10 years experience for a C# role? jrista 2009-11-26T06:33:15Z 2009-11-26T06:55:37Z <p>I have done a lot of interviewing of such candidates, and its really a subjective decision. There are many ridiculously talented C++ programmers out there who are certainly capable programmers, but sometimes that is actually a hindrance to them learning C#. Quite often the problem I have encountered is that extremely experienced C/C++ programmers with wicked memory management skills try to use C# as if it were C++. They are very attracted to <em>unsafe</em> pointer code, sometimes use aliases to an undue degree in attempts to replicate #define/typedef, etc.</p> <p>However, that does not rule them out. Skilled C++ programmers often understand other key concepts that C# supports, such as OOP, extremely well. If they are not particularly drawn to the raw power of C++, they can make excellent C# programmers. Of bigger concern at that point is their ability to learn the .NET Framework, which I think is a much more important factor than language syntax and semantics. Learning the .NET Framework is a daunting task, and for any C# programmer, it is more than half the game. </p> <p>Evaluate your candidates understanding of concepts, patterns, architecture, rather than language syntax and semantics. Try to probe their ability to expand their horizons and rapidly learn things like a new framework. See what they know about Component Based Development, as C# is first and foremost as Component-Based language (not simply an OO language). Those are the key factors.</p> http://stackoverflow.com/questions/1801851/how-to-apply-multiple-effect-on-same-element/1801874#1801874 0 Answer by jrista for How to apply multiple effect on same element jrista 2009-11-26T06:26:43Z 2009-11-26T06:26:43Z <p>Use the BitmapEffectGroup container:</p> <pre><code>&lt;Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&gt; &lt;StackPanel&gt; &lt;Button Margin="50" Width="300"&gt; DropShadow Under this Button &lt;Button.BitmapEffect&gt; &lt;BitmapEffectGroup&gt; &lt;BlurBitmapEffect Radius="2" /&gt; &lt;DropShadowBitmapEffect Color="Black" Direction="320" ShadowDepth="30" Softness="1" Opacity="0.5"/&gt; &lt;/BitmapEffectGroup&gt; &lt;/Button.BitmapEffect&gt; &lt;/Button&gt; &lt;/StackPanel&gt; &lt;/Page&gt; </code></pre> <p>Taken from the following MSDN documentation page: <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.effects.bitmapeffectgroup.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.media.effects.bitmapeffectgroup.aspx</a></p> http://stackoverflow.com/questions/1801628/linq-vs-datasets-performance-hit/1801642#1801642 0 Answer by jrista for LINQ vs datasets - performance hit? jrista 2009-11-26T05:07:15Z 2009-11-26T05:07:15Z <p>I am surprised by the huge time differential (5 seconds to 60+ seconds). I guess it would depend on how complex the TRANSACTION entity is. LINQ to SQL will process each row from your result set and turn it into an object, then add some state-tracking information to the DataContext. A DataSet simply stores the data raw, and processes it into strongly typed data as you read it from the DataTable. I wouldn't expect L2S to incur a 12-fold cost increase, but I would expect some increase.</p> http://stackoverflow.com/questions/1801566/recursive-problem/1801631#1801631 0 Answer by jrista for Recursive problem jrista 2009-11-26T05:03:18Z 2009-11-26T05:03:18Z <p>Since you are using C# 3.0, you could use LINQ to simplify your problem:</p> <pre><code>var expectedNames = getExpectedFilenames(); var matchingFiles = directoryInfo .GetFileSystemInfos() .SelectMany(fsi =&gt; fsi.GetFileSystemInfos()) .OfType&lt;FileInfo&gt;() .Where(fi =&gt; expectedNames.Contains(fi.Name)); </code></pre> <p>I have not tested the above code, so it might need some tweaking... The GetFileSystemInfos will get both DirectoryInfo and FileInfo objects, then project the same operation onto each returned entry with SelectMany. SelectMany will flatten the hierarchical structure. OfType filters out directories. The Where searches the set of expected file names against each file name from your projection.</p> http://stackoverflow.com/questions/1801218/wcf-configuring-client-server-authentication-in-headers/1801272#1801272 0 Answer by jrista for WCF - Configuring Client/server authentication in headers? jrista 2009-11-26T02:40:35Z 2009-11-26T02:40:35Z <p>Are you required to use the basicHttpBinding? That binding is really only there to provide support for legacy WS-BasicProfile implementations (i.e. ASMX). If your clients are also .NET/WCF, I would highly recommend using wsHttpBinding, which provides a plethora of security options out of the box. You could use certificates, username/password, etc. with transport and/or message security and not need to write any of the security stuff yourself. Just configure-and-go (CAG). </p> <p>Security credential information is available to the service itself via the OperationContext, in case you need to access it directly from your code. If your code does need to access it, however, I would recommend writing a behavior to extract the pertinent information from the OperationContext and place it in something more application specific so that you don't have to reference System.ServiceModel everywhere you need to access information on OperationContext.</p> http://stackoverflow.com/questions/1794145/what-is-the-proper-object-relationship-c/1794178#1794178 1 Answer by jrista for What is the proper object relationship? (C#) jrista 2009-11-25T01:56:08Z 2009-11-25T01:56:08Z <p>If I understand your question correctly, I think a solution to your problem might be an OR mapper. Microsoft provides two OR mappers at the moment, LINQ to SQL and Entity Framework. If you are using .NET 3.5, I recommend using LINQ to SQL, but if you are able to experiment with .NET 4.0, I would highly recommend looking into Entity Framework. (I discourage the use of Entity Framework in .NET 3.5, as it was released very prematurely and has a LOT of problems.)</p> <p>Both of these OR mappers provide visual modeling tools that allow you to build a conceptual entity model. With LINQ to SQL, you can generate a model from your database, which will provide you with entity classes, as well as associations between those classes (representing your foreign keys from your DB schema). The LINQ to SQL framework will handle generating SQL queries for you, and will automatically map database query results into object graphs. Relationships such as the one you described, with multiple customers in a set referencing the same single department are handled automatically for you, you don't need to worry about them at all. You also have the ability to query your database using LINQ, and can avoid having to write a significant amount of stored procedures and plumbing/mapping code.</p> <p>If you use .NET 4.0, Entity Framework is literally LINQ to SQL on steroids. It supports everything LINQ to SQL does, and a hell of a lot more. It supports model-driven design, allowing you to build a conceptual model from which code AND database schema are generated. It supports a much wider variety of mappings, providing a much more flexible platform. It also provides Entity SQL (eSQL), which is a text-based query language that can be used to query the model in addition to LINQ to Entities. Line LINQ to SQL, it will solve the scenario you used as an example, as well as many others.</p> <p>OR mappers can be a huge time, money, and effort saver, greatly reducing the amount of effort required to interact with a relational database. They provide both dynamic querying as well as dynamic, optimistic updates/inserts/deletes with conflict resolution.</p> http://stackoverflow.com/questions/1787968/using-wf-for-controller-actions-in-asp-net-mvc/1788359#1788359 0 Answer by jrista for Using WF for Controller/Actions in ASP.NET MVC jrista 2009-11-24T07:06:36Z 2009-11-24T07:06:36Z <p>It sounds like you are packing too many responsibilities into your controllers. This is a common problem with people who are relatively new to MVC, MVP, and similar patterns. The tendency is to put business logic into the controllers, which just leads to a messy architecture.</p> <p>A controller in an MVC is supposed to drive and coordinate your UI, not drive business logic. Generally speaking, a controller should do no more than the following:</p> <ol> <li>Handle user actions </li> <li>Redirect to views, actions, or return content </li> <li><strong><em>Invoke</em></strong> business logic and/or workflow </li> </ol> <p>There should be very little, if any, actual functional logic in a controller. The controller is a mediator between the views your user interacts with, and the "domain" those views are portals to. Your business logic, which could be modeled with WF, should be entirely separate and distinct from the controllers. Sometimes you may have "application logic", functionality specific to a particular UI, and such logic should be properly separated from your business logic, either included in controllers or possibly factored into a buffer layer between your controllers and business layer if it is complex enough. </p> <p>Aim for maximum composability in your design. Stuffing everything into controllers is going to give you the least composability and reusability. Separating out logic and isolating responsibilities into components and layers will greatly improve your reuse, simplify your code, and make it easier to utilize tools like WF.</p> http://stackoverflow.com/questions/1788258/how-can-i-get-the-highest-value-from-asp-net-arraylist/1788315#1788315 2 Answer by jrista for How can I get the highest value from asp.net arraylist. jrista 2009-11-24T06:55:08Z 2009-11-24T06:55:08Z <p>If you are using .NET 3.5, the following is probably easiest. It requires that all of the items in the array list be of the same type, otherwise the .Cast extension will fail:</p> <pre><code>int maxValue = basket.Cast&lt;int&gt;().Max(); </code></pre> http://stackoverflow.com/questions/1745926/having-trouble-with-xmldocument-c/1745951#1745951 1 Answer by jrista for Having trouble with XmlDocument C# jrista 2009-11-17T00:58:17Z 2009-11-17T02:45:35Z <p>Well, I can see three different failure points in the following line:</p> <pre><code>InstalledListNodes.Attributes["title"].InnerText.Equals(packagename) == true ^--Null? ^-- Null? ^--Null? </code></pre> <p>I would break that long chain up into more discrete elements, and check for null on each one to narrow it down:</p> <pre><code> if (InstalledListNodes != null) { var attribute = InstalledListNodes.Attributes["title"]; if (attribute != null) { if (attribute.InnerText.Equals(packagename) == true) { // ... } } } </code></pre> <p>That said, I would use the <strong>.Value</strong> property rather than the <strong>.InnerText</strong> property when retrieving attribute values. InnerText should be used when retrieving text content from within element open and close tags.</p> http://stackoverflow.com/questions/1745878/benefits-the-win32-api-has-over-net/1745923#1745923 1 Answer by jrista for Benefits the Win32 API has over .NET jrista 2009-11-17T00:50:02Z 2009-11-17T00:50:02Z <p>I am not sure there really are many benefits. The Win32 API is kind of fundamental to how Windows is currently and has been designed. There is a tremendous installed base of applications that were written years (or even decades) ago in C using Win API, that are still currently maintained, which may need to utilize new features of modern (and future) versions of Windows. It is easier and cheaper to update those applications by staying within the original platform than to either rewrite them in .NET, or hack up some kind of interop between the legacy and the new.</p> <p>Backwards compatibility is a key facet of the Windows OS platform, and I think it is easier to achieve that by building from the ground up rather than the clouds down. I don't think writing very low level code using the Win32 API has any major benefit over using the much simpler and more friendly .NET framework (and its wrappers around lower-level API's). Perhapse, in the rare cases, where insane performance is a key requirement...but I would opt for Managed C++ before I took the C &amp; Win32 API route. I think the API's are simply there to provide that legacy support, and packaging those low-level API's with managed wrappers for .NET is an easier way to provide modern support than doing the inverse.</p> http://stackoverflow.com/questions/1733355/dynamic-control-and-its-event/1733363#1733363 1 Answer by jrista for Dynamic control and its Event jrista 2009-11-14T05:23:09Z 2009-11-14T05:35:17Z <pre><code>ImageButton imbtnAdd = new ImageButton(); imbtnAdd.ID = "imbtn" + columnName; imbtnAdd.ImageUrl = "btn_add_icon.gif"; imbtnAdd.Width = 20; imbtnAdd.Click += imbtnAdd_Click; container.Controls.Add(imbtnAdd); // ... private void imbtnAdd_Click(object sender, EventArgs e) { // handle event } </code></pre> http://stackoverflow.com/questions/1733285/which-name-for-a-smart-dictionary-hashtable/1733371#1733371 0 Answer by jrista for Which name for a "smart" dictionary (hashtable) ? jrista 2009-11-14T05:26:12Z 2009-11-14T05:26:12Z <p>How about <strong>SmartDictionary</strong>? I thought your subject was good enough. ;)</p> http://stackoverflow.com/questions/1689417/wpf-style-hierarchy 0 WPF Style Hierarchy? jrista 2009-11-06T18:29:12Z 2009-11-13T15:37:17Z <p>I may have missed something obvious with WPF, but is it possible to create styles that work hierarchically with the targeted control's child controls? To better explain, think of how CSS works to style HTML. You can hierarchically target controls with CSS via selectors:</p> <pre><code>div &gt; span em { color: blue; } ul.class &gt; li ul li { display: block; margin: 0px; } </code></pre> <p>Is it possible to achieve the same thing with WPF styles? So far, I have been creating styles for every type of control, or named styles that I directly apply to a control. However, I end up with a hell of a lot more styles than I really intend, and I is nearly impossible to style control structures together as a group.</p> <p>Thanks for any insight.</p> <p>UPDATE:</p> <p>Here is an example of what I would like to be able to do. Note that only the root ListView control has a Style applied. I would like to be able to target any one of the child controls in any one of the CellTemplates without having to directly apply the style to each of those child controls. This keeps my view layout markup more decoupled and isolated from the style markup, giving me a lot more freedom to change the style without having to explicitly create a style for every single control in my entire application.</p> <pre><code>&lt;Grid&gt; &lt;ListView Style="{StaticResource ProcessableItemsListView}"&gt; &lt;ListView.View&gt; &lt;GridView&gt; &lt;GridViewColumn Width="10"&gt; &lt;GridViewColumn.CellTemplate&gt; &lt;Grid&gt; &lt;CheckBox Value="{Binging ...}" /&gt; &lt;/Grid&gt; &lt;/GridViewColumn.CellTemplate&gt; &lt;/GridViewColumn&gt; &lt;GridViewColumn Width="*"&gt; &lt;GridViewColumn.CellTemplate&gt; &lt;Grid&gt; &lt;TextBlock Text="{Binding ...}" /&gt; &lt;/Grid&gt; &lt;/GridViewColumn.CellTemplate&gt; &lt;/GridViewColumn&gt; &lt;GridViewColumn Width="80"&gt; &lt;GridViewColumn.CellTemplate&gt; &lt;Grid&gt; &lt;Button Command="{Binding ...}"&gt;Process&lt;/Button&gt; &lt;/Grid&gt; &lt;/GridViewColumn.CellTemplate&gt; &lt;/GridViewColumn&gt; &lt;GridViewColumn Width="120"&gt; &lt;GridViewColumn.CellTemplate&gt; &lt;Grid&gt; &lt;ProgressBar Value="{Binding ...}" /&gt; &lt;/Grid&gt; &lt;/GridViewColumn.CellTemplate&gt; &lt;/GridViewColumn&gt; &lt;/GridView&gt; &lt;/ListView.View&gt; &lt;/ListBiew&gt; &lt;/Grid&gt; </code></pre> http://stackoverflow.com/questions/1727346/c-default-keyword/1727360#1727360 3 Answer by jrista for C# -Default Keyword jrista 2009-11-13T05:46:52Z 2009-11-13T05:57:12Z <p>The <a href="http://msdn.microsoft.com/en-us/library/25tdedf5%28VS.80%29.aspx" rel="nofollow">default</a> keyword has different semantics depending on its usage context. </p> <p>The first usage is in the context of a switch statement, available since C# 1.0:<br> <a href="http://msdn.microsoft.com/en-us/library/06tc147t%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/06tc147t%28VS.80%29.aspx</a></p> <p>The second usage is in the context of generics, when initializing a generic type instance, available since C# 2.0:<br> <a href="http://msdn.microsoft.com/en-us/library/xwth0h0d%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/xwth0h0d%28VS.80%29.aspx</a></p> http://stackoverflow.com/questions/1727271/manually-implementing-high-performance-algorithms-in-net/1727390#1727390 3 Answer by jrista for Manually implementing high performance algorithms in .NET jrista 2009-11-13T05:55:57Z 2009-11-13T05:55:57Z <p>Just out of curiosity, as despite my 9 years of experience with .NET, I still constantly make this mistake: Did you compile your code in Release mode with optimizations on? Debug code performs significantly worse than optimized release code.</p> <p>Assuming you DID compile in release mode, there shouldn't be a huge difference in performance if you implement the algorithm similarly (i.e. iterative vs. iterative or recursive vs. recursive). If you wish to see the .NET implementation and figure out, you can download the SSCLI, <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=8C09FD61-3F26-4555-AE17-3121B4F51D4D&amp;displaylang=en" rel="nofollow">Share-Source Common Language Infrastructure</a>. This is Microsoft's publicly availble ECMA-standard compliant CLI implementation. It is not 100% of the .NET framework we all know and love, but it is a significant portion of it. It can provide a lot of information that Reflector can't, including internal implementations. All types of code is available, including C#, C++, and even some Assembler in a couple cases. </p> http://stackoverflow.com/questions/1720320/how-to-dynamically-create-css-class-in-javascript-and-apply/1720370#1720370 0 Answer by jrista for How to dynamically create CSS class in JavaScript and apply? jrista 2009-11-12T06:51:03Z 2009-11-12T07:58:28Z <p>The following may be of interest. Not fully sure of its adoption by modern browsers, but it should do what you need it to do:</p> <p><a href="http://www.w3.org/TR/DOM-Level-2-Style/" rel="nofollow">http://www.w3.org/TR/DOM-Level-2-Style/</a></p> http://stackoverflow.com/questions/1704225/multiple-sum-using-linq/1704546#1704546 1 Answer by jrista for Multiple SUM using LINQ jrista 2009-11-09T23:00:11Z 2009-11-12T05:32:56Z <p>Technically speaking, what you have is probably the most efficient way to do what you are asking. However, you could create an extension method on IEnumerable&lt;T&gt; called Each that might make it simpler:</p> <pre><code>public static class EnumerableExtensions { public static void Each&lt;T&gt;(this IEnumerable&lt;T&gt; col, Action&lt;T&gt; itemWorker) { foreach (var item in col) { itemWorker(item); } } } </code></pre> <p>And call it like so:</p> <pre><code>// Declare variables in parent scope double weight; double length; int items; ArticleLedgerEntries .Where( pd =&gt; pd.LedgerEntryType == LedgerEntryTypeTypes.Unload &amp;&amp; pd.InventoryType == InventoryTypes.Finished ) .Each( pd =&gt; { // Close around variables defined in parent scope weight += pd.GrossWeight; lenght += pd.Length; items += pd.NrDistaff; } ); </code></pre> <p>UPDATE: Just one additional note. The above example relies on a closure. The variables weight, length, and items should be declared in a parent scope, allowing them to persist beyond each call to the itemWorker action. I've updated the example to reflect this for clarity sake.</p> http://stackoverflow.com/questions/1671032/wpf-app-builds-in-vs2k8-but-not-on-command-line-w-msbuild 0 WPF app builds in vs2k8, but not on command line w/ msbuild jrista 2009-11-04T00:29:11Z 2009-11-11T10:05:13Z <p>I have a fairly small solution that includes a WPF windows application. It builds perfectly fine when built from the solution. I recently integrated the projects contained within the solution into an existing, much larger command line build that uses MSBuild. When built from the command line, however, I get the following errors:</p> <pre><code>MainWindow.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context View\EngineMonitorView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context View\HostingEngineView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context View\MainView.xaml.cs(13,4): error CS0103: The name 'InitializeComponent' does not exist in the current context View\MainView.xaml.cs(17,52): error CS0103: The name 'gView' does not exist in the current context View\PerformanceCounterView.xaml.cs(22,4): error CS0103: The name 'InitializeComponent' does not exist in the current context View\PerformanceCounterView.xaml.cs(117,22): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(118,20): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(127,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(138,5): error CS0103: The name 'txtScale' does not exist in the current context View\PerformanceCounterView.xaml.cs(179,5): error CS0103: The name 'txtLast' does not exist in the current context View\PerformanceCounterView.xaml.cs(180,5): error CS0103: The name 'txtMin' does not exist in the current context View\PerformanceCounterView.xaml.cs(181,5): error CS0103: The name 'txtMax' does not exist in the current context View\PerformanceCounterView.xaml.cs(189,5): error CS0103: The name 'txtAverage' does not exist in the current context View\PerformanceCounterView.xaml.cs(250,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(251,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(253,27): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(255,27): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(264,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(269,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(274,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(279,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(293,5): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(303,5): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(318,5): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(325,5): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\PerformanceCounterView.xaml.cs(342,4): error CS0103: The name 'cnvsCounterGrid' does not exist in the current context View\ServerMonitorView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context View\ServerTreeView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context View\ServiceDetailView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context View\ServiceMonitorView.xaml.cs(12,4): error CS0103: The name 'InitializeComponent' does not exist in the current context </code></pre> <p>I included the WinFX targets file from .NET 3.5 in our root MSBuild .proj file, as it did not appear to be included anywhere else:</p> <pre><code>&lt;Import Project="$(MSBuildBinPath)\Microsoft.WinFX.targets" /&gt; </code></pre> <p>That did not seem to affect anything, though, and I am still encountering the errors. As far as I can tell, it appears that the custom WPF build tasks that precompile the .xaml files into .cs files, embeds and wires up resources, etc. are not running, which is why InitializeComponent and any controls defined in my views are not found. I am at a loss as to <strong>why</strong>, though...and trying to wade through the zillions of search results related to WPF and MSBuild is not getting me anywhere.</p> <p>UPDATE:</p> <p>Adding the Microsoft.WinFX.targets to the .csproj file seems like it would work. However, doing so causes the project to fail to build within Visual Studio 2008. Somehow, VS is including those targets for you...but I am unsure how. Does anyone know more about how VS builds WPF projects? Is there a master build file hiding somewhere that imports the appropriate targets? </p> http://stackoverflow.com/questions/1652225/ncover-not-covering-an-assembly 0 NCover not covering an assembly? jrista 2009-10-30T20:47:01Z 2009-11-11T05:32:39Z <p>I am having trouble getting NCover to properly cover a .dll. I have several test projects that use <a href="http://xunit.codeplex.com/" rel="nofollow">XUnit.NET</a> and <a href="http://haacked.com/archive/2008/08/24/introducing-subspec.aspx" rel="nofollow">SubSpec</a> to execute BDD-style specifications. All but one of these test suites runs perfectly in the version of NCover that comes with TestDriven.NET (1.5.8). However, I have one that refused to profile the actual tested assembly. I have verified that the assembly names for the /a option are correct, that the .pdb file exists, and that there are no exceptions being thrown during execution. All of the 8 tests pass, which can be seen when the NCover console app is executed. </p> <p>The assembly references the WPF assemblies <strong>PresentationCore</strong>, <strong>PresentationFramework</strong> and <strong>WindowsBase</strong>. I am not sure if that might be causing problems, but I am completely baffled by NCover's refusal to profile this assembly.</p> <p>Command line:</p> <pre><code>"C:\Program Files (x86)\TestDriven.NET 2.0\NCover\1.5.8\NCover.Console.exe" //reg //w "E:\Campus.Core\Specs.Campus.Windows\bin\Debug" //a Campus.Windows "E:\Campus.Core\ThirdParty\xUnit.NET\v1.5\xunit.console.x86.exe" Specs.Campus.Windows.dll /html Specs.Campus.Windows.html </code></pre> <p><strong>NOTE:</strong></p> <p>Problem seems to have <strong><em>solved itself</em></strong>! I don't know what changed, but the assembly is now being covered properly, and its at 100% coverage! Thanks for those of you who threw in some input. I appreciate it!</p> http://stackoverflow.com/questions/1652225/ncover-not-covering-an-assembly/1713246#1713246 0 Answer by jrista for NCover not covering an assembly? jrista 2009-11-11T05:32:39Z 2009-11-11T05:32:39Z <p>Problem seems to have solved itself! I don't know what changed, but the assembly is now being covered properly, and its at 100% coverage! Thanks for those of you who threw in some input. I appreciate it!</p> http://stackoverflow.com/questions/1411923/servicehosts-conflict-on-address-when-unit-tested 1 ServiceHost's conflict on address when unit tested jrista 2009-09-11T16:17:28Z 2009-11-11T05:31:46Z <p>I have a small WCF hosting engine that I am writing that will dynamically create ServiceHosts based on the .config file. The general idea is to allow us to remove existing services, as well as add new services, at runtime without having to bring all of our services offline.</p> <p>I ran into a problem unit testing that indicates this may not be as easy as it sounds. It seems that only one ServiceHost may exist for any given endpoint (even though multiple different endpoints for a service may exist in a single ServiceHost). This is not a problem normally, however when a service needs to be reconfigured, bringing down the original ServiceHost does not actually kill the registration for that endpoint address. Trying to create another ServiceHost, for the same service (which means the same endpoints are used) fails with the following exception:</p> <pre><code>System.InvalidOperationException: The ChannelDispatcher at 'net.pipe://localhost/' with contract(s) '"ITestService"' is unable to open its IChannelListener. ---&gt; System.InvalidOperationException: A registration already exists for URI 'net.pipe://localhost/'. </code></pre> <p>I am actually encountering the error during unit testing. The tests will exercise one unit, which fully closes down the ServiceHosts and hosting engine as much as is humanly possible. Then creates another instance of the hosting engine, which tries to recreate the same ServiceHosts again for a different test. The second test encounters the error above. I am guessing that while ServiceHost.Close() was called, that does not actually destroy the service host...so it is still hanging around in memory. I can not tell whether the GC is cleaning up the old service hosts or not...the problem persists without going away after it initially occurs (as best I have been able to determine...I have waited about 30 minutes so far.)</p> <p>My configuration file for system.serviceModel is as follows:</p> <pre><code> &lt;system.serviceModel&gt; &lt;services&gt; &lt;service name="Campus.Core.ServiceModel.TestServiceStub"&gt; &lt;endpoint address="net.pipe://localhost" binding="netNamedPipeBinding" contract="Campus.Core.ServiceModel.ITestService" /&gt; &lt;/service&gt; &lt;/services&gt; &lt;/system.serviceModel&gt; </code></pre> http://stackoverflow.com/questions/1411923/servicehosts-conflict-on-address-when-unit-tested/1713240#1713240 0 Answer by jrista for ServiceHost's conflict on address when unit tested jrista 2009-11-11T05:31:46Z 2009-11-11T05:31:46Z <p>To provide an answer to this question, in case anyone else has run into the problem. There actually turned out to be two causes to this problem, as follows:</p> <p>1) During unit testing, if an exception was encountered, it would usually break out of the code being tested before the ServiceHost could be closed. This left the ServiceHost bound to a particular endpoint. This caused ALL subsequent tests to fail that exercised the same piece of code. As I was doing BDD with SubSpec and xUnit, a single test case (concern in BDD terms) performed single-assertion-per-test, and a single test case could encompass a up to a dozen or more assertions. </p> <p>2) Beware of the MEX endpoint. The MEX endpoint can only exist once per service. Initially, I had created an http and net.tcp mex endpoint. This caused a problem, however, as whichever instance of the MEX endpoint started up second threw an exception. Generally speaking, if you utilize the MEX endpoint, HTTP is the most useful protocol to use, unless there is some physical infrastructural issue preventing you from doing so.</p> <p>Generally speaking, calling the Close() method on a ServiceHost will fully unbind it, allowing whatever addresses that were previously bound to its endpoints be usable again. Sometimes closure can take a while, and in rare cases, an exception may be thrown. If you are doing BDD with SubSpec and following the rule of single assertion per test, an exception thrown in one test that prevents a ServiceHosts closure will cause all subsequent tests to fail.</p> http://stackoverflow.com/questions/1703524/access-wcf-service-on-same-server/1703635#1703635 0 Answer by jrista for Access WCF service on same server jrista 2009-11-09T20:39:31Z 2009-11-09T20:39:31Z <p>You need to provide a bit more context and architectural detail. Primarily...from where, exactly, do you need the operation context? If you are trying to utilize the operation context outside of the scope of the web service, then I would say you are creating a VERY BAD coupling between your application and an infrastructural and contextual detail that your application has absolutely NO business knowing about.</p> <p>Again, you need to clarify your question so I can provide a better answer.</p> http://stackoverflow.com/questions/1703541/what-should-i-load-into-memory-when-my-app-loads/1703584#1703584 0 Answer by jrista for What should I load into memory when my app loads? jrista 2009-11-09T20:31:35Z 2009-11-09T20:31:35Z <p>It would really depend on your usage scenarios for those objects. Are they all used frequently by the application when it is running? Are they used infrequently? Are some used frequently while others are used infrequently? </p> <p>Also, what is the expected resource baseline of the systems your application will be running on? Are the objects you are loading large or small? Even if there are only a few hundred of them, if they are all very large objects, that would be a significant factor. If you need a low profile application, then loading on demand would seem more logical. </p> <p>This kind of question is difficult to answer without knowing more about the expected usage and baseline execution environment. Its very subjective.</p> http://stackoverflow.com/questions/1703387/whats-the-best-way-to-implement-a-search/1703494#1703494 3 Answer by jrista for What's the best way to implement a search? jrista 2009-11-09T20:19:49Z 2009-11-09T20:19:49Z <p>I'm gonna throw in my vote for <a href="http://lucene.apache.org/" rel="nofollow">Lucene</a>. While SQL Server does provide full text indexing and some search capabilities, it is not the greatest search engine. In my experience, it does not provide the best results or result ranking until you have a significant volume of indexed items (tens of thousands to hundreds of thousands minimum). </p> <p>In contrast, Lucene is explicitly a search engine. It is an inverted index, behaving much like your run of the mill internet search engine. Lucene provides a very rich indexing and search platform, as well as some rich C# and .NET API's for querying the indexes. There is even a LINQ to Lucene provider that will allow you to query a Lucene index with LINQ. </p> <p>The one drawback to using Lucene is that you have to build an index, which is a side-band process that runs independently of the database. You have to write your own tool to manage the index as well. Your search index, depending on how frequently you update it, may not be 100% up-to-the-minute up to date. Generally, that is not a huge concern, but if you have the resources, the Lucene index culd be incrementally updated every few minutes to keep things "fresh". </p> http://stackoverflow.com/questions/1702779/c-how-do-you-write-test-cases-for-constructors-and-constructor-overloads/1702833#1702833 2 Answer by jrista for C#: How do you write test cases for constructors and constructor overloads? jrista 2009-11-09T18:28:03Z 2009-11-09T20:14:55Z <p>I have completely switched from the classic approach for TDD to the more modern and logical BDD (Behavior Driven Design). In the case of your Number class, I would write the following BDD Specifications (Note that the syntax below is done with <a href="http://haacked.com/archive/2008/08/24/introducing-subspec.aspx" rel="nofollow">SubSpec</a>, which relies on <a href="http://xunit.codeplex.com/" rel="nofollow">xUnit.NET</a>):</p> <pre><code>public void Parameterless_constructor_initializes_all_defaults_properly() { // State Number number = null; // Context "Given a null context".Context(() =&gt; {}); // Concern "when creating a new Number with no parameters".Do(() =&gt; { number = new Number(); }); // Observations "the Value property should contain the default value 0".Assert(() =&gt; Assert.Equal(0, number.value)); "the MinValue property should be 0".Assert(() =&gt; Assert.Equal(0, number.MinValue)); "the MaxValue property should be 100".Assert(() =&gt; Assert.Equal(100, number.MaxValue)); } public void Single_parameter_constructor_initializes_all_defaults_and_initial_value_properly() { // State Number number = null; // Context "Given a null context".Context(() =&gt; {}); // Concern "when creating a new Number with the initial value".Do(() =&gt; { number = new Number(10); }); // Observations "the Value property should contain the value 10".Assert(() =&gt; Assert.Equal(10, number.value)); "the MinValue property should be 0".Assert(() =&gt; Assert.Equal(0, number.MinValue)); "the MaxValue property should be 100".Assert(() =&gt; Assert.Equal(100, number.MaxValue)); } public void Full_constructor_initializes_all_values_properly() { // State Number number = null; // Context "Given a null context".Context(() =&gt; {}); // Concern "when creating a new Number with the initial, min, and max values".Do(() =&gt; { number = new Number(10, 1, 50); }); // Observations "the Value property should contain the value 10".Assert(() =&gt; Assert.Equal(10, number.value)); "the MinValue property should be 1".Assert(() =&gt; Assert.Equal(1, number.MinValue)); "the MaxValue property should be 50".Assert(() =&gt; Assert.Equal(50, number.MaxValue)); } </code></pre> <p>In addition, I noticed that you also have a possible exceptional scenario for your full constructor, when the min value is greater than the max value. You would also want to verify proper behavior in this exceptional case:</p> <pre><code>public void Full_constructor_throws_proper_exception_when_minvalue_greater_than_maxvalue() { // State Number number = null; Exception expectedEx = null; // Context "Given a null context".Context(() =&gt; {}); // Concern "when creating a new Number with inverted min and max values".Do( () =&gt; { try { number = new Number(10, 50, 1); } catch (Exception ex) { expectedEx = ex } } ); // Observations "an exception should be thrown".Assert(() =&gt; Assert.NotNull(expectedEx)); "the exception should be an ArgumentException".Assert(() =&gt; Assert.IsType&lt;ArgumentException&gt;(expectedEx)); } </code></pre> <p>The above specifications should give you 100% test coverage. They also produce a very nice, human readable, logical report when executed with xunit.net and output the default report.</p> http://stackoverflow.com/questions/1695313/net-client-server-scaleability-asynchronous-i-o-excess-thread-issues/1695343#1695343 1 Answer by jrista for .NET Client/Server Scaleability & Asynchronous I/O - Excess Thread Issues jrista 2009-11-08T04:10:53Z 2009-11-08T04:10:53Z <p>Have you considered using WCF? If you are concerned about context switching swamping the cpu, it might be better to use a call-and-close approach. WCF can greatly simplify your client-server communications, as you won't even have to worry about socket programming at all. It provides a wide variety of communication options out of the box as well, including HTTP, TCP, Named Pipes (same machine only), and MSMQ. </p> <p>Depending on exactly how your conversations between client and server work, you may be able to go with MSMQ and pub/sub messaging, which would allow your clients to send messages asynchronously, and get asynchronous replies. This would scale to almost any load. If you have stateful conversations, WCF supports this as well, and if the server needs to call back to the client, duplex channels are available for dual-way, multi-message conversations. </p> <p>WCF will handle threading, queuing, and resource management for you, allowing you to focus on the critical business behaviors. As for throughput, I recently did a simple, raw performance test of WCF using a super basic calculator service (add, sub, mul, div methods, basically zero behavioral overhead). On my developer workstation at work, a Core 2 Duo with a couple gigs of ram, we achieved 30,000 calls per second with four other developer machines hitting it. In contrast, a more modern machine, my home system with a Core i7 920 (8 logical cores), 12 gigs of ram, and gigabit ethernet, I wasn't even able to saturate the pipe or CPU's with 4 other systems hitting to it, and achieved nearly 100,000 calls per second. I can't even imagine the raw throughput if I could manage to saturate the pipe and/or cpu.</p> <p>I think thats a strong indication that the overhead of WCF itself is ridiculously low, and shouldn't pose a problem for you, even on older hardware.</p> <p>I highly recommend <a href="http://msdn.microsoft.com/en-us/netframework/aa663324.aspx" rel="nofollow">looking into it</a>. It could save you a considerable chunk of time developing and maintaining a custom communications infrastructure.</p> http://stackoverflow.com/questions/1678894/how-to-show-status-bar-in-ribbon-window-wpf-c/1678933#1678933 0 Answer by jrista for how to show status bar in ribbon window wpf c# jrista 2009-11-05T07:36:05Z 2009-11-05T07:36:05Z <p>Microsoft has made their ribbon control officially available for WPF. Its free, and its the real deal, strait from the horses mouth. You can read about it <a href="http://windowsclient.net/wpf/wpf35/wpf-35sp1-ribbon-walkthrough.aspx" rel="nofollow">here</a>, and download it <a href="http://msdn.microsoft.com/en-us/office/aa973809.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1678311/how-to-use-ternary-operator-for-this-statement-in-c/1678515#1678515 0 Answer by jrista for How to use ternary operator for this statement in c# jrista 2009-11-05T05:23:04Z 2009-11-05T05:23:04Z <p>You could keep it really simple. Comparing five to 5 results in a boolean, so the following is also possible:</p> <pre><code>int five = 5; Console.WriteLine((five == 5).ToString()); </code></pre> <p>The <strong>bool</strong> type's <em>ToString()</em> method is already designed to return "True" or "False", and if the lowercase alternative is needed, thats simple too:</p> <pre><code>int five = 5; Console.WriteLine((five == 5).ToString().ToLower()); </code></pre> <p>If you don't need it lowercased, you can actually completely eliminate the ToString as well:</p> <pre><code>int five = 5; Console.WriteLine(five == 5); </code></pre> http://stackoverflow.com/questions/1678028/propogating-a-volatile-property/1678111#1678111 1 Answer by jrista for Propogating a "volatile" property jrista 2009-11-05T03:14:06Z 2009-11-05T03:14:06Z <p>Like Rubens said, use an event. What you described basically defines event to a T:</p> <p>Propagate a property change to other classes.</p> <p>There is actually a facility in .NET that provides this already, albeit in a generic way: INotifyPropertyChanged. This interface provides a single event, PropertyChanged, that allows a class to notify any listeners of any property change.</p> <p>In your case, you could easily provide your own interface that is more specific:</p> <pre><code>interface IStopNotifier { event EventHandler StopRequested; } </code></pre> <p>This interface would be implemented by your main work manager (whatever it is), and could propagate itself like so:</p> <pre><code>class WorkManager: IStopNotifier { public event EventHandler StopRequested; protected void OnStopRequested() { if (StopRequested != null) StopRequested(this, new EventArgs()); } public void StopAllWorkers() { OnStopRequested(); } public Worker CreateWorker&lt;T&gt;() where T: Worker { var worker = new T(this); return worker; } } class abstract Worker: IDisposable { public Worker(IStopNotifier stopNotifier) { stopNotofier.StopRequested += HandleStopRequested; } private IStopNotifier m_stopNotifier; private bool m_stopRequested = false; internal void HandleStopRequested(object sender, EventArgs e) { m_stopRequested = true; } public void Dispose() { m_stopNotifier.StopRequested -= HandleStopRequested; } } </code></pre> http://stackoverflow.com/questions/1801851/how-to-apply-multiple-effect-on-same-element/1801874#1801874 Comment by jrista on How to apply multiple effect on same element jrista 2009-11-26T08:30:25Z 2009-11-26T08:30:25Z BitmapEffect being obsolete is news to me. They are not accelerated, and there may be permissions issues for partial-trust apps, but they are still a current and valid API. If you really don't want to use a bitmap effect, then you will probably need to write your own effect...I don't know if anything like an EffectGroup. http://stackoverflow.com/questions/1801905/how-to-fetch-data-from-nested-dictionary-in-c/1801942#1801942 Comment by jrista on how to fetch data from nested Dictionary in c# jrista 2009-11-26T06:56:34Z 2009-11-26T06:56:34Z Beat me to the punch. I tried to do it with dot-notation, but I couldn't figure out how to get 'inner' without switching to sugar-syntax. ;P +1, great answer! http://stackoverflow.com/questions/1801891/net-project-enhancement Comment by jrista on .net project enhancement jrista 2009-11-26T06:35:43Z 2009-11-26T06:35:43Z The <i>demanding</i> nature of this post is going to get it closed. I highly recommend you reword it and ASK something, rather than demand something. http://stackoverflow.com/questions/1801218/wcf-configuring-client-server-authentication-in-headers/1801272#1801272 Comment by jrista on WCF - Configuring Client/server authentication in headers? jrista 2009-11-26T06:22:01Z 2009-11-26T06:22:01Z If you can find any way to capture and log the exception to your own file or database record some how, having that additional stack trace information will be a huge help in figuring out what the problem is now. You should be on the right track now, though, with wsHttpBinding. Security can sometimes be tedious initially, but once it is set up, you don't have to worry about it. http://stackoverflow.com/questions/1801628/linq-vs-datasets-performance-hit/1801642#1801642 Comment by jrista on LINQ vs datasets - performance hit? jrista 2009-11-26T06:20:00Z 2009-11-26T06:20:00Z Ouch. Yeah, I would work on whittling down the entity to that it brings in only the fields you absolutely need. If its a gargantuan table like that, the bottleneck is transforming records to entities, and sticking each entity in the change tracker. http://stackoverflow.com/questions/1789453/maintain-the-querystring-in-all-pages-in-mvc/1789576#1789576 Comment by jrista on Maintain the querystring in all pages in mvc jrista 2009-11-26T05:17:42Z 2009-11-26T05:17:42Z If the user switches from Preview to Live mode, you would want to remove that &quot;Preview&quot; key from the session. http://stackoverflow.com/questions/1801218/wcf-configuring-client-server-authentication-in-headers/1801272#1801272 Comment by jrista on WCF - Configuring Client/server authentication in headers? jrista 2009-11-26T04:54:58Z 2009-11-26T04:54:58Z If you are using https, did you configure transport security for the binding? Transport security means the transport protocol encrypts the channel. Since you are using https, you would need to enable transport security for the binding. Try configuring that and see if it works. You will probably need to be able to see the full exception report to get security working. It is usually a little bit of trial and error to get it up and running...its not really &quot;difficult&quot;, just not &quot;obvious&quot; the first time you implement security for an endpoint. http://stackoverflow.com/questions/1801264/centralised-settings-in-c-for-multiple-programs/1801268#1801268 Comment by jrista on Centralised settings in C# for multiple programs jrista 2009-11-26T02:45:42Z 2009-11-26T02:45:42Z @MPelletier: As far as centralized configuration goes, I think the registry is the best option. You could use a database, write your own configuration framework and store your configuration in a custom way, etc. etc. Thing is, the registry is ubiquitous in windows...its just there, and easily accessible. Hard to go wrong with it. I would recommend writing a wrapper around the registry access, in case you come up with a better solution in the future. Would be less impactful to your application that way. http://stackoverflow.com/questions/1801264/centralised-settings-in-c-for-multiple-programs/1801268#1801268 Comment by jrista on Centralised settings in C# for multiple programs jrista 2009-11-26T02:43:55Z 2009-11-26T02:43:55Z Hate to give the registry another leg up, but this is probably the best answer. Trumped mine. ;) http://stackoverflow.com/questions/1800995/how-to-verify-if-the-web-service-caller-is-my-web-site/1801102#1801102 Comment by jrista on How to verify if the Web Service caller is my web site? jrista 2009-11-26T02:36:02Z 2009-11-26T02:36:02Z I would avoid the use of SHA-1 as that is a hacked algorithm. Same goes for MD5. http://stackoverflow.com/questions/1751920/linq-query-returns-incorrect-result-set Comment by jrista on Linq Query Returns Incorrect Result Set jrista 2009-11-18T03:32:37Z 2009-11-18T03:32:37Z Could you please post your actual LINQ query? You said it was very complex. Given that everything else seems to be in order, the remaining option is that your LINQ query contains runtime-only processing that the translator could not turn into SQL. http://stackoverflow.com/questions/1752494/detect-if-any-key-is-pressed-in-c-not-a-b-but-any Comment by jrista on Detect if any key is pressed in C# (not A, B, but any) jrista 2009-11-17T23:10:45Z 2009-11-17T23:10:45Z What is your application? Console? Windows Forms? WPF? Web site? http://stackoverflow.com/questions/1745926/having-trouble-with-xmldocument-c/1745951#1745951 Comment by jrista on Having trouble with XmlDocument C# jrista 2009-11-17T02:45:06Z 2009-11-17T02:45:06Z @Abel: You are correct. I've updated the example to reflect. http://stackoverflow.com/questions/1733285/which-name-for-a-smart-dictionary-hashtable/1733371#1733371 Comment by jrista on Which name for a "smart" dictionary (hashtable) ? jrista 2009-11-14T18:08:40Z 2009-11-14T18:08:40Z SmartValueDictionary http://stackoverflow.com/questions/1734823/is-there-a-way-to-create-a-full-width-horizontal-navigation-without-using-a-table/1734853#1734853 Comment by jrista on Is there a way to create a full width horizontal navigation without using a table? jrista 2009-11-14T17:37:49Z 2009-11-14T17:37:49Z I have to back Carl up on this. The quest for the &quot;holy grail&quot; of zero-table web sites is a misbegotten one. Tables were improperly used when they were used as THE mechanism of layout. Somehow, that morphed into the whole &quot;tables are evil period&quot; matra that we have today. There are still cases where a table is the perfect solution to a problem, and tabular data is not the only case. Save yourself, and your employer, some time, effort, and money and just use a table. It does exactly what you need without convolution.