User Jason Jackson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:59:48Z http://stackoverflow.com/feeds/user/13103 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1749549/using-silverlight-mvvm-with-prism-unity-and-need-to-detect-when-view-is-closed 2 Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. Jason Jackson 2009-11-17T15:14:26Z 2009-11-18T14:50:14Z <p>I am writing an app using the MVVM (Model-View-ViewModel) pattern and am leveraging the Prism and Unity bits from the Microsoft P&amp;P team.</p> <p>I have a View with a list of items. These items are contained with an ObservableCollection in the ViewModel to which a listbox in the View is databound (the ViewModel is set as the DataContext of the View). In the ViewModel, I have a timer running that fires a poll of the server for new data every 30 seconds. When the data returns I marshal it over to the UI thread and add the new data to the ObservableCollection. This all works really well.</p> <p>The problem I have is that I need the timer to stop when the view is closed. I am not sure what event to watch for here. Is there something in Unity that will tell me when the view has been replaced in the region? Is there an event which would be best to use for this from the view, and perhaps pass that event (or a facade) on to the ModelView? My View is a UserControl per P&amp;P examples. There is no "Unload" event I could find nor a method to override.</p> <p>I am already thinking of writing my own service to handle view changes (some sort of facade for the RegionManager), and might just implement a common interface on my Views to do cleanup or implement IDisposable on them when they are removed from a view. However, if there is a clean way of doing this with the confines of the core Silverlight framework or Unity/Prism, I would prefer to take that path.</p> <p><strong>Edit - Answer:</strong></p> <p>I ended up marking Anderson Imes's answer simply by picking the one that was closest to what I am doing for my solution. But really, I am using parts from from PL and GraemeF as well and up-voted everyone. This was a great response for me, as it gave me some better insight into the regions, gave me another framework to look at, and verified that I was probably going down the right path with implementing a service to handle view changes instead of just calling into RegionManager.</p> http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet 9 Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-03T21:45:27Z 2009-11-17T15:45:32Z <p>I am looking for a design pattern that handles large data sets over the internet, and does periodic updating of these objects. I am developing an application that will display thousands of records in the UI at one time. Additionally, various properties on these objects are quite transient and need to be updated on the client to keep the user aware of the changing state of these records in the system. I have a few ideas how to approach this problem, but figured there might be a design pattern (or patterns) out there that handles this type of scenario.</p> <p>Limitations:</p> <ol> <li>The client-side for this is being written in Silverlight.</li> <li>The objects themselves are not very big (about 15 value-type and string properties), but querying for all the data is expensive. The 15 or so properties contain data from various sources; no clever join statement or indexing is going to speed up the query. I am thinking of populating only a subset of the properties on initial load and then filling in the more expensive details as the user zooms in on a given grouping of objects. Think Google maps, but instead of streets and building it is showing the objects.</li> <li>I will be able to limit the portion of the thousands of objects that are being updated. However, I will need the user to be able to "zoom out" of an context that allows granular updating to one that shows all the thousands of objects. I imagine that updating will be disabled again for objects when they leave a sufficient zoom context.</li> </ol> <p>Ideas on how to tackle all or part of this problem? Like I mentioned I am considering a few ideas already, but nothing I have put together so far gives me a good feeling about the success of this project. </p> <p><strong>Edit:</strong></p> <p>I think the difficult parts really boil down to two things for which I may need two distinct patterns/practices/strategies:</p> <ol> <li>Loading a large number of records over the internet (~5k).</li> <li>Keeping a subset of these objects (~500) update-to-date over the internet.</li> </ol> <p>There are several design patterns that can be used for everything else.</p> <p><strong>Edit 2:</strong></p> <p>Thanks for the links on various "push" implementation in Silverlight. I could swear sockets had been taken out of Silverlight but found a Silverlight 3 reference based on an answer below. This really wasn't a huge problem for me anyway and something I hadn't spent much time researching, so I am editing that out of the original text. Whether updates come down in polls or via push, the general design problems are still there. Its good to know I have options.</p> <p><strong>Edit 3: Follow-up on push technologies.</strong></p> <p>As I suspected the Silverlight WCF duplex implementation is <a href="http://en.wikipedia.org/wiki/Comet%5F%28programming%29" rel="nofollow">comet-like push</a>. This won't scale, and there are numerous articles about how it doesn't in the real world.</p> <p>The sockets implementation in Silverlight is crippled in several ways. It looks like it is going to be useless in our scenario since the web server may sit behind any given client firewall that won't allow non-standard ports and Silverlight sockets won't connect on 80, 443, etc.</p> <p>I am still thinking through using the WCFduplex approach in some limited way, but it looks like polling is going to be the answer.</p> <p><strong>Edit 4: Found a pattern to solve half my problem</strong></p> <p>I found <strong><a href="http://www.longbrothers.net/brad/papers/jpdc.pdf" rel="nofollow">this pattern (PDF)</a></strong> which illustrates the use of an iterator pattern to retrieve pages of data from the server and present them as a simple iterator. In .Net land I imagine this would be implemented as IEnumerable (samples code is in Java and Oracle SQL). Of particular interest to me was the asynchronous page prefetching, basically buffering the result set client-side. With 5k objects everything won't fit on the screen at once, so I can use a strategy of not getting everything at once yet hide that implementation detail from the UI. The core objects the app will be retrieving are in a database, then other look-ups are required to fully populate these objects. This methodology seems like a good approach to get some of the data out to the client fast.</p> <p>I am now thinking of using this patter + some sort of proxy object pattern that listens for deltas to the result set and updates object accordingly. There are a couple of strategies one could take here. I could load <em>all</em> the data upfront, then send deltas of changes (which will probably need some additional code in the subsystems to provide notification of changes). This might be my first approach. I am still looking. Thanks for all the ideas so far.</p> http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1749773#1749773 0 Answer by Jason Jackson for Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-17T15:45:32Z 2009-11-17T15:45:32Z <p>I up-voted a couple of good answers, but came up with a solution with some changes to the back-end data and a new way of retrieving the data from Silverlight. Here is what is being done to address this:</p> <ol> <li>I am using beans to represent that large data graph. This removed <strong>a lot</strong> of transmission XML. I am only concerned with a subset of the data anyway, although its a rather significant subset. By flattening the data into a bean I think I have cut my serialized object size to about 20 - 25% of the original object graph.</li> <li>Almost all data on the back end will now have a field for the last time it was modified. I was able to get this for all the big data. There are a few pieces of data that won't have this, but the real problems of query performance and data aggregation were solved with this. As a general solution for others, it looks like this is rather simple to implement in a number of DBMSs.</li> <li>I am writing new APIs to retrieve data that has been updated after a provided DateTime. This allows me to query only for new and changed objects from the back-end system (this is the web service calling these APIs, and the Silverlight is calling the web service).</li> <li>Aggregate changes in the web service and detect if a portion of the datagraph has changed. For simplicity I just send the entire datagraph if anything has changed. This was actually the hardest part to figure out. A part of the datagraph could have a new updated time, but the core object of the graph has not been updated. I ended up having to write APIs to look for the changes of the sub-objects, and then API's to find the root objects based on those sub-objects (if they had been changed). An object graph can be returned with a root object (and actually much of the object graph) that has not been updated since the last poll. The web service logic is querying on small numbers of changes so even though the queries are not cheap individually, they will potentially only run a few times per poll. Even in very large installations of our product, this query loop will only run 10 or 20 times per polling cycle (see about my polling solution below). While our systems are very dynamic, not <em>that</em> much changes in 30 seconds. The web service call that handles all of this reacts the same to an initial load call as it does a polling. All it is concerned with is retrieving data newer than a given time. </li> <li>I wrote a collection that inherits from ObservableCollection that handles the querying and polling. The client code using this collection provides a delegate that queries the data. The date is returned asynchronously, and in pages. I haven't settled on a page size. It keeps re-querying for pages until the server returns a page that is smaller than the max page size. The collection is also provided information on how to determine the latest date of the newest object in the collection. It polls periodically for updates that are newer than the newest item in the collection. In reality this "latest date" is actually an object containing several dates of various parts of the original object graph. If an item returns from the server that are exists in the collection, the item in the collection is update with that returned data. I did this instead of inserting the new item and removing the old because it works in more databound situations.</li> </ol> <p>This pattern could be improved. I could send only deltas to Silverlight for changes. I could still try to use some sort of push technology. But this solution gives me one web service call that can return data for various cases. Polling is also very simple, and there is just one thing doing all of the data retrieval. There aren't a lot of moving parts. This handles object state changes both during the initial data load, and during polling, through the same mechanism. This also seems to scales well. The initial call seems to be the most expensive with subsequent calls running faster and faster. I would assume that this is because the data that is remaining on the back-end is getting smaller and smaller with each pass. </p> <p><strong>I still have one question about my implementation of this that <a href="http://stackoverflow.com/questions/1749549/using-silverlight-mvvm-with-prism-unity-and-need-to-detect-when-view-is-closed">I have posted here</a>.</strong></p> <p>Thanks for all of the suggestions. While I didn't heed all of the advice, several ideas either directly helped me or got my mind thinking down a different path on how to get this working.</p> http://stackoverflow.com/questions/184773/ui-design-workflow-changing-same-property-on-multiple-objects 2 UI Design / Workflow: Changing same property on multiple objects Jason Jackson 2008-10-08T20:36:58Z 2009-11-04T05:57:08Z <p>I am looking for a general UI design / work-flow for changing the same property across multiple objects. </p> <p>Suppose I have an object class called Person. The Person class has a property called City. I want to select 5 Person objects and change the City property on all 5 to "New York" in one action in the UI. </p> <p>This is not difficult to accomplish programatically, but I am having a difficult time coming up with an intuitive UI work-flow. One thought is to use a modal like the one used in iTunes to change information about multiple selected songs. I would like to come up with another work-flow, as this idea has already gotten push-back at work.</p> <p>Thoughts? Ideas?</p> <p><strong>Edit:</strong> I appreciate the answers so far. There are couple of extra points I would like to call out:</p> <ol> <li>Should the previous City values be display in some way? If so, how? Or how should the combined property screen show that all the City values are currently the same or different with a color or other indicator?</li> <li>How should boolean properties (Person.IsAlive for example) be displayed? Do you use a three-state toggle/check box? Us a drop-down with three values? Other ideas?</li> </ol> http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424576#424576 5 Answer by Jason Jackson for What's your favorite "programmer ignorance" pet peeve? Jason Jackson 2009-01-08T15:14:21Z 2009-09-24T00:51:00Z <p><strong>People that think it is OK to not comment code because of reason X</strong>.</p> <p>I have heard all kinds of pithy statements like "Comments are lies", "Write more readable code instead of commenting", or "Name your variables and functions correctly and you don't need to comment". Bull hockey! Writing readable code, and using good naming of functions and variables are good ideas. But leaving out comments is not.</p> <p>I don't know how many times I have had to examine a block of code for minutes/hours trying to figure out what it does and why it does it, when a simple comment would saved me most of my time.</p> <p>In C#/.NET, I hate the lack of metadata comments on functions and properties. Being able to bring up <a href="http://en.wikipedia.org/wiki/IntelliSense" rel="nofollow">IntelliSense</a> and find a short set of comments about a function is invaluable to your fellow programmers.</p> <p>Of course I am guilty of not adequately commenting code throughout my career. I probably wrote some code yesterday that I didn't comment. But the attitude that <em>this is OK for some reason X</em> is completely wrong.</p> <p>P.S.</p> <p>I also hate the other school of thought, the "Leave detailed comments on everything" camp. I had a couple of computer science professors like this back in the days of college. If the line count of comments in a function equals that of the code, you have a problem.</p> http://stackoverflow.com/questions/1355484/how-does-an-updatepanel-differ-from-traditional-ajax/1355522#1355522 0 Answer by Jason Jackson for How does an UpdatePanel differ from 'traditional' AJAX? Jason Jackson 2009-08-31T02:12:30Z 2009-08-31T02:12:30Z <p>This may sound a little subjective, but I have some really good experiences and some really bad experiences with UpdatePanel (and yes, UpdatePanel is <em>real</em> AJAX).</p> <p><strong>Good:</strong> UpdatePanel made it easy to easily retrofit AJAX functionality into existing web pages without a significant rewrite.</p> <p><strong>Bad:</strong> UpdatePanel posts back all of the page data. I have seen significant performance problems because of this. If a traditional ASP.Net page has view state data of sufficient size then an UpdatePanel is not going to perform well. This view state data being available on the server is convenient, but doesn't scale well either in the number of users not to large datasets.</p> <p>Like many tools a programmer has at their disposal an UpdatePanel is neither good nor bad. It depends upon the usage.</p> http://stackoverflow.com/questions/1341513/if-statement-multiple-conditions-same-statement/1341591#1341591 1 Answer by Jason Jackson for IF Statement multiple conditions, same statement Jason Jackson 2009-08-27T14:46:45Z 2009-08-27T14:46:45Z <p>I think agileguy has the correct answer, but I would like to add that for more difficult situations there are a couple of strategies I take to solve the problem. The first is to use a <a href="http://en.wikipedia.org/wiki/Truth%5Ftable" rel="nofollow">truth table</a>. If you Google "truth table" you will run across some examples related directly to programming and computer science.</p> <p>Another strategy I take is to use an anonymous function to encapsulate common logic between various conditions. Create it right before the if block, then use it where needed. This seems to create code that is more readable and maintainable.</p> http://stackoverflow.com/questions/1329784/entity-framework-dynamic-sql/1329933#1329933 0 Answer by Jason Jackson for Entity Framework - dynamic sql Jason Jackson 2009-08-25T18:01:54Z 2009-08-25T18:01:54Z <p>You might take a look at <strong><a href="http://srtsolutions.com/blogs/billwagner/archive/2007/11/20/creating-dynamic-queries-in-linq.aspx" rel="nofollow">this article</a></strong> about dynamically generating lambda expression objects to do it.</p> http://stackoverflow.com/questions/1329788/c-hide-function-from-designer/1329836#1329836 1 Answer by Jason Jackson for c# Hide function from Designer Jason Jackson 2009-08-25T17:47:55Z 2009-08-25T17:47:55Z <p>You might try looking at <strong><a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.component.designmode.aspx" rel="nofollow">this article on the MSDN</a></strong> about using the <strong>DesignMode</strong> property. This might help you out. You can wrap your code that throws an exception in this in a conditional that avoids the code at design time. </p> <p>Please note this will <strong>not work in the constructor</strong>, because the designer has to instantiate the object and then sets the property.</p> http://stackoverflow.com/questions/1200726/how-to-get-lxml-working-under-ironpython/1215474#1215474 1 Answer by Jason Jackson for How to get lxml working under IronPython? Jason Jackson 2009-08-01T00:31:50Z 2009-08-01T00:31:50Z <p>You might check out <a href="http://www.resolversystems.com/documentation/index.php/Ironclad.html" rel="nofollow">IronClad</a>, which is an open source project intended to make C Extensions for Python available in IronPython.</p> http://stackoverflow.com/questions/1206668/asp-net-vs2008-c-dropdown-list-postback/1206718#1206718 1 Answer by Jason Jackson for ASP.NET VS2008 C# - dropdown list - postback Jason Jackson 2009-07-30T13:46:44Z 2009-07-30T13:46:44Z <p>Any time I have lost the value of the drop-down it is because I messed up and repopulated the drop down before handling the value change. For me, it has been drop-downs that I need to do something special with like add item attributes for Javascript, etc. This is data that needs to be added on every page load (aka data that is not persisted in the drop down like the names and values of each item). In these cases I have done this work on load, then I try to retrieve the value later in the page lifecycle and DOH!</p> <p>Here is the page lifecycle:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms178472.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms178472.aspx</a></p> <p>Dollars to donuts that is what is happening. You are probably just reloading the items before you get to handling whatever postback event you are using to grab the value. If you are doing this and cannot get around this work flow, just save the selected index at the beginning of the logic that populates the drop-down, then set the selected index of the drop down with that value when done.</p> http://stackoverflow.com/questions/110065/must-have-tools-for-an-os-x-switcher/110082#110082 16 Answer by Jason Jackson for Must have tools for an OS X switcher Jason Jackson 2008-09-21T02:46:33Z 2009-07-28T03:04:08Z <p>I use <a href="http://macromates.com/" rel="nofollow">TextMate</a> for editing of text files. It does syntax highlighting for a number of languages. I use it for Ruby on Rails and it handles the highlighting for Ruby, HTML, etc.</p> http://stackoverflow.com/questions/1087157/accuracy-of-textrenderer-measuretext-results/1087223#1087223 1 Answer by Jason Jackson for Accuracy of TextRenderer.MeasureText results. Jason Jackson 2009-07-06T14:17:14Z 2009-07-06T14:17:14Z <p>I don't know if I have a perfect solution but I ran into this when I was doing WinForms a few years back. The way I ended up compensating was by adjusting the returned measurement by a percentage. I cannot recall what I used (maybe 5% or 105?), but I do recall that I ended up using a constant percentage across the app and always rounded up.</p> http://stackoverflow.com/questions/1056036/net-enumeration-first-and-last/1056084#1056084 1 Answer by Jason Jackson for .net enumeration first and last Jason Jackson 2009-06-28T23:58:21Z 2009-06-29T00:25:28Z <p>Using LINQ, you can do:</p> <pre><code>string s = string.Format("[{0}]", string.Join(",",PeopleListEnumerator.Select(p =&gt; p.ToString()).ToArray())); </code></pre> http://stackoverflow.com/questions/942687/regular-expressions-in-c/942790#942790 0 Answer by Jason Jackson for Regular Expressions in C# Jason Jackson 2009-06-03T02:21:57Z 2009-06-03T02:21:57Z <p>I would like to welcome you to the wonderful world of SQL injection, where users can hijack your database by executing malicious SQL due to you executing arbitrary strings ;-)</p> <p>You really should use parameters (Like those in System.Data.SqlClient) or use the LINQ data model objects generated for you and set values on those and then submit your changes. Let the data access layer escape out your values and protect you from a user that might enter text that includes SQL statements like DELETE * FROM IMPORT_TABLE. </p> http://stackoverflow.com/questions/649149/how-to-escape-a-string-in-c-for-use-in-an-ldap-query/649159#649159 2 Answer by Jason Jackson for How to escape a string in C#, for use in an LDAP query Jason Jackson 2009-03-16T03:28:33Z 2009-03-16T03:28:33Z <p>Are you trying to prevent some sort of injection attack against your directory server via user input? If that is the case I would just validate the input with Regex before passing it to LDAP.</p> http://stackoverflow.com/questions/639109/what-technologies-and-tools-do-you-use-to-telecommute 3 What technologies and tools do you use to telecommute? Jason Jackson 2009-03-12T15:18:39Z 2009-03-12T16:04:05Z <p>For personal reasons I may need to relocate in the near future and I am considering telecommuting for my current employer. This would be telecommuting in its truest sense as I would be over 1000 miles (over 1600 km) away from my current desk. I have read through a few other questions on the topic of telecommuting on StackOverflow but none of them really addresses the tools one might use to stay in contact with one's team, or tools to stay productive from home. A few ideas that have crossed my mind are:</p> <ul> <li>Video conferencing?</li> <li>VOIP?</li> <li>Virtual white board?</li> <li>Instant messaging - we all use different brands at work</li> <li>Shared desktop</li> <li>Other "virtual meeting" solutions</li> </ul> <p>If I do need to relocate I would like to bring a solution to my employer that imposes as few restrictions as possible on our current development work flow. I envision saying something like, "I can work remotely using X tools to stay in contact." So my question is, what technologies and tools do you use to telecommute? I would appreciate any specific examples of software packages, hardware, and stories of how you use them.</p> <p><hr /></p> <p>Edit: A couple of more points for my specific situation:</p> <ul> <li>.Net shop (Vista, XP, Win2k3 and Win2k8 Server)</li> <li>We have OpenVPN - I use it all the time at night and the occasional day that I work from home.</li> <li>RDP installed on my work desktop.</li> <li>I currently use Pidgin to communicate with coworkers on different messenger networks.</li> </ul> http://stackoverflow.com/questions/598710/most-important-things-about-c-generics-lesson-learned/599207#599207 2 Answer by Jason Jackson for Most important things about C# generics... lesson learned Jason Jackson 2009-03-01T03:45:40Z 2009-03-01T03:45:40Z <p><strong>No covariance or contra-variance</strong> (at least in 3.5). Be aware of this when designing class hierarchies that include generic type parameters.</p> http://stackoverflow.com/questions/597354/moving-large-vb6-app-to-web-or-winforms-you-decide/597547#597547 0 Answer by Jason Jackson for Moving large vb6 app to web or winforms. You decide! Jason Jackson 2009-02-28T05:21:04Z 2009-02-28T05:21:04Z <p>First off, <strong>Winforms is dead</strong>. Why anyone would start a new desktop program with WinForms is beyond me when WPF has been out for nearly two years. Why move your client from one technology (VB6) that is very, very outdated to another that will be outdated very soon? Please don't take this wrong, but unless you have to support versions of Windows older that XP I think it is actually irresponsible to start a WinForms project in 2009. Here are the downsides vs WPF:</p> <ol> <li>XAML, WPF and Silverlight are the focus and Microsoft.</li> <li>WPF is much, much more powerful graphically than Winforms (at least as far as ease of developing a very rich UI).</li> <li>Databinding in WPF is a quantum leap ahead of Winforms; it will save you time. </li> <li>WPF is stable and has seen significant performance increases over the last few SPs and versions. </li> <li>Like all old MS technologies, Winforms will sooner or later die. It is obviously now the old technology.</li> </ol> <p>Now for ASP.Net. This sounds like what you are converting is a fairly straightforward, internal app. ASP.Net is suited for just such a thing. While ASP.Net MVC is almost out of beta, it doesn't yet have the arguments against ASP.Net that WPF does have against WinForms. We do ASP.Net + jQuery at work and it works very well. We are also doing Silverlight, which you might look into. I have really enjoyed working in it. If this is an internal app, you can probably count on the Silverlight plugin being installed on all of you browsers.</p> <p>Now for general pros of going to <strong>WPF vs ASP.Net</strong>:</p> <p><strong>WPF</strong></p> <ol> <li>Easier code migration from VB6 desktop to another desktop environment. You might be able to save a lot of your logic, although it will need to be translated to VB.Net or C#. You are going from one stateful environment to another. Not so with ASP.Net.</li> <li>Easier to test (especially if you have to support multiple browsers).</li> <li>Possibly faster to develop (especially if you have to support multiple browsers).</li> </ol> <p><strong>ASP.Net</strong></p> <ol> <li>Easier to distribute updates that a desktop app (all you do is update your web server).</li> <li>Can be used on a wide variety of desktops and even mobile devices if authored correctly.</li> <li>Can provide much of the dynamic nature of a desktop app with extra development effort.</li> <li>Can be leveraged for future products that might be public facings.</li> </ol> <p>Good luck on your project!</p> http://stackoverflow.com/questions/580359/generate-image-at-runtime/580440#580440 1 Answer by Jason Jackson for Generate Image at Runtime Jason Jackson 2009-02-24T04:06:08Z 2009-02-24T04:06:08Z <p>Why not just generate the object directly in C# instead of creating XAML and then having the runtime have to parse it? Doing it that way has the following benefits:</p> <ol> <li><strong>Compile-time checking of your objects.</strong> The way you are doing it now might introduce run-time errors because of a fat-fingering, etc.</li> <li><strong>Faster object creation.</strong> Instantiating the objects directly in C# will be faster than the parser.</li> <li><strong>More maintainable.</strong> The next programmer to come along and work with this code will have an easier time with well-formatted C# vs. embedded XAML.</li> <li><strong>Refactorable.</strong> You can refactor your C# code to eliminate repetitive code.</li> </ol> http://stackoverflow.com/questions/517836/how-is-the-parent-property-of-a-frameworkelement-set-in-silverlight 1 How is the Parent property of a FrameworkElement set in Silverlight? Jason Jackson 2009-02-05T20:45:59Z 2009-02-10T18:22:42Z <p>I have written a custom Silverlight control based on Control. I have two DependencyProperties called Top and Bottom which both hold child controls for a specific layout display. I then use a ControlTemplate to arrange these two controls into a grid, placing one on the 0 row and the other on the 1 row. The problem I have is that I cannot seem to figure out how to get each child control's Parent property to point to my custom control. When I inspect each control at run-time, the Parent property of each is null. </p> <p>This is a simple example, but I think you can see the general problem. I have a number of more complex controls that all share this problem. I know there is some magic I am missing. If a ContentControl's Content property is set to some child it is somehow setting that child's parent to itself.</p> <p><strong>Edit:</strong> A little more info</p> <p>In WPF, one might use functions like AddVisualChild(), RemoveVisualChild(), AddLogicalChild(), RemoveLogicChild() to manage parent/child relationships, but these functions are not available in Silverlight.</p> http://stackoverflow.com/questions/517836/how-is-the-parent-property-of-a-frameworkelement-set-in-silverlight/533520#533520 1 Answer by Jason Jackson for How is the Parent property of a FrameworkElement set in Silverlight? Jason Jackson 2009-02-10T18:22:42Z 2009-02-10T18:22:42Z <p>After quite a bit of research I believe that this is not possible. I was able to recurse through the Visual Tree instead of the Logic Tree using the <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.visualtreehelper(VS.95).aspx" rel="nofollow">VisualTreeHelper</a> to accomplish my ultimate goal.</p> http://stackoverflow.com/questions/533042/beginners-threading-in-c/533220#533220 0 Answer by Jason Jackson for Beginners threading in C# Jason Jackson 2009-02-10T17:00:36Z 2009-02-10T17:00:36Z <p>Get "<a href="http://rads.stackoverflow.com/amzn/click/0735621632" rel="nofollow">CLR Via C#</a>" by Jeff Richter. Its the best .Net book I have ever read and has extensive information on threading.</p> <p><img src="http://ecx.images-amazon.com/images/I/41dPffy-ygL._SL500_AA240_.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/495985/web-application-monitoring-best-practices/501535#501535 6 Answer by Jason Jackson for Web application monitoring best practices Jason Jackson 2009-02-01T20:44:56Z 2009-02-01T20:44:56Z <p>If I had to pick one type of testing it would be to test the end-user functionality of the system. The important thing to consider is the user. While testing things like database availability, server up-time, etc, are all important, testing work-flows through your system via a remote UI testing system covers all these bases. If you know that the critical parts of your system are available to the end-user, then you know your system is prolly Ok.</p> <ol> <li><strong>Identify the important work-flows in your system.</strong> For example, if you wrote an eCommerce site you might identify a work-flow of "search for a product, put product in shopping cart, and purchase product".</li> <li><strong>Prioritize the work-flows, and build out higher-priority tests first.</strong> You can always add additional tests after you roll out to production.</li> <li><strong>Build UI tests using one of the available UI testing frameworks.</strong> There are a number of free and commercial UI testing frameworks that can be run in an automated fashion. Build a core set of tests first that address critical work-flows.</li> <li><strong>Setup at least one remote location from which to run tests.</strong> You want to test every aspect of your system, which means testing it remotely. Is the internet connection up? Is the web server running? Is the connection to the database server working? Etc, etc. If you test remotely you make sure you system is available to the outside world which means it is most likely working end-to-end. You can also run these tests internally, but I think it is critical to run them externally.</li> <li><strong>Make sure your solution includes both reporting and notification.</strong> If one of your critical work-flow tests fails, you want someone to know about it to fix the problem ASAP. If a non-critical task fails, perhaps you only want reporting so that you can fix problems out-of-band.</li> </ol> <p>This end-user testing should not eliminate monitoring of system in your data-center, but I want to reiterate that end-user testing is the most important type of testing you can do for a web application.</p> http://stackoverflow.com/questions/484571/how-can-i-show-that-a-method-will-never-return-null-design-by-contract-in-c/484582#484582 6 Answer by Jason Jackson for How can I show that a method will never return null (Design by contract) in C# Jason Jackson 2009-01-27T18:21:15Z 2009-01-27T18:21:15Z <p>Unless you are using a type based on System.ValueType, I think you are out of luck. Its probably best to document this clearly in the XML/metadata comment for the function.</p> http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title/478160#478160 6 Answer by Jason Jackson for What's the coolest startup programmer job title? Jason Jackson 2009-01-25T20:00:20Z 2009-01-25T20:00:20Z <p><strong>Da Shiznit</strong></p> http://stackoverflow.com/questions/453611/what-is-the-best-spell-checking-library-for-c/453729#453729 4 Answer by Jason Jackson for What is the best spell checking library for C#? Jason Jackson 2009-01-17T18:03:52Z 2009-01-17T18:03:52Z <p>I have used <strong><a href="http://aspell-net.sourceforge.net/" rel="nofollow">Aspell.net</a></strong> before with some success.</p> http://stackoverflow.com/questions/449020/how-should-a-list-be-represented-in-xml/449048#449048 7 Answer by Jason Jackson for How should a list be represented in XML? Jason Jackson 2009-01-15T23:57:29Z 2009-01-15T23:57:29Z <p>For extensibility, I would use the first solution (the one with the <em>children</em> node). If you ever wish to store any data about all of the children then you have a convenient node on which to place attributes.</p> http://stackoverflow.com/questions/429890/why-with-construct-is-not-included-in-c-with-construct-is-really-cool-in-vb-net/430294#430294 0 Answer by Jason Jackson for Why WITH Construct is not included in C#. WITH Construct is really cool in VB.NET? Jason Jackson 2009-01-10T00:53:57Z 2009-01-10T01:00:40Z <p>I feel it is rather arbitrary to only allow 'mass' property setting during initialization. I really don't get why this would be 'bad':</p> <pre><code>MyObj myObj = ObjFactoryFunction(); ... if(someCondition) myObj { Prop1 = 1, Prop2 = 2 }; </code></pre> <p>I feel that this example code is clean and concise.</p> http://stackoverflow.com/questions/421516/how-to-write-c-service-that-i-can-also-run-as-a-winforms-program/422273#422273 0 Answer by Jason Jackson for How to write c# service that I can also run as a winforms program? Jason Jackson 2009-01-07T21:52:37Z 2009-01-07T21:52:37Z <p>If you encapsulate your business logic in service classes and then use a factory pattern to create those services, you can use the same set of services for a desktop application (desktop factory) and as web services (host in WCF). </p> <p>Service definition:</p> <pre><code>[ServiceContract] public interface IYourBusinessService { [OperationContract] void DoWork(); } public class YourBusinessService : IYourBusinessService { public void DoWork() { //do some business logic here } } </code></pre> <p>Factory for desktop WinForms to get at services to do business:</p> <pre><code>public class ServiceFactory { public static IYourBusinessService GetService() { //you can set any addition info here //like connection string for db, etc. return new YourBusinessService(); } } </code></pre> <p>You host this either with the WCF ServiceHost class, or in IIS. Both allow you the ability to specify how to instantiate each instance of the service so that you can do initialization like connection strings, etc. </p> http://stackoverflow.com/questions/1749549/using-silverlight-mvvm-with-prism-unity-and-need-to-detect-when-view-is-closed/1752408#1752408 Comment by Jason Jackson on Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. Jason Jackson 2009-11-18T03:09:37Z 2009-11-18T03:09:37Z It might do for me. I could active and deactive my timer when the window is active and inactive. I might combine this with writing my own region manager, similar to the answer Anderson gave. http://stackoverflow.com/questions/1749549/using-silverlight-mvvm-with-prism-unity-and-need-to-detect-when-view-is-closed/1751333#1751333 Comment by Jason Jackson on Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. Jason Jackson 2009-11-18T02:40:32Z 2009-11-18T02:40:32Z I am actually using System.Threading.Timer. As part of the dependency injection I am passing around an IDispatchBroker, which is just an interface I wrote that does thread dispatching. When the app bootstraps this dependency to use a really simple facade that just calls the RootVisual's dispatcher. When I am unit testing I set up a mock IDispatcherBroker that just calls straight through instead of doing the whole &quot;BeginInvoke&quot; thing with the UI. I pass this IDispatchBroker into the code that runs the timer. The polled data returns and is dispatched over to the UI. http://stackoverflow.com/questions/1749549/using-silverlight-mvvm-with-prism-unity-and-need-to-detect-when-view-is-closed/1752408#1752408 Comment by Jason Jackson on Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. Jason Jackson 2009-11-18T02:34:32Z 2009-11-18T02:34:32Z Nice! I am already using the region manager. http://stackoverflow.com/questions/1749549/using-silverlight-mvvm-with-prism-unity-and-need-to-detect-when-view-is-closed/1749994#1749994 Comment by Jason Jackson on Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed. Jason Jackson 2009-11-17T18:42:10Z 2009-11-17T18:42:10Z Looking into Caliburn now. Its funny you recommend a framework with presenters, as that is what I am actually calling my ViewModel classes since I have done MVP before (own grown framework). http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1670815#1670815 Comment by Jason Jackson on Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-17T15:49:03Z 2009-11-17T15:49:03Z I did quite a bit of research on sockets in Silverlight. There are some sever restrictions that prevent me from using them. One restriction is that there is a very small port range under which they will work, which just seems silly to me. http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1671708#1671708 Comment by Jason Jackson on Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-17T15:48:10Z 2009-11-17T15:48:10Z I did actually end up using a kind of flyweight by using beans instead of serving the rich object graphs to Silverlight. http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1670452#1670452 Comment by Jason Jackson on Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-17T15:46:51Z 2009-11-17T15:46:51Z A follow-up: I read up on that polling duplex class a lot more. It looks like it has real scaling problems. http://stackoverflow.com/questions/1025236/reference-a-silverlight-assembly-from-net/1025252#1025252 Comment by Jason Jackson on Reference a Silverlight Assembly from .NET Jason Jackson 2009-11-06T17:31:28Z 2009-11-06T17:31:28Z This just solved a problem for me. Thanks. http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1684403#1684403 Comment by Jason Jackson on Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-06T01:14:54Z 2009-11-06T01:14:54Z The UI needs to be a kind of &quot;Google Maps&quot; interface so we definitely need all the data points displayed. You do make a good point, and I am thinking of loading off screen data last or lazy-loading it. http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1674930#1674930 Comment by Jason Jackson on Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-04T19:04:14Z 2009-11-04T19:04:14Z I agree that keeping track of deltas in the middle tier is going to be critical to the performance of this app. We do have a middle-tier very similar to what you describe in point 1, but it is mostly stateless. http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1671708#1671708 Comment by Jason Jackson on Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-04T15:31:01Z 2009-11-04T15:31:01Z I had a typo - the app will be loading around 5000 (5k) objects, not 5000k objects. I have already loaded this many objects into memory and Silverlight handles it fine. I am considering using some version of the proxy pattern, but flyweight doesn't gain me much here. http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1670766#1670766 Comment by Jason Jackson on Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-03T23:25:33Z 2009-11-03T23:25:33Z To be more clear, the proxy in this case well by nature be disconnected and therefore needs to keep some state. I am not sure the best pattern to use for updating nor for the initial load. I have discussed the problem with coworkers and an idea has been to server the object out using a repository/factory pattern and those object would act like proxies, invalidating their own data and calling back into the repository (and hence the server) on some regular cycle. http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1670766#1670766 Comment by Jason Jackson on Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-03T23:22:56Z 2009-11-03T23:22:56Z I think this general pattern might work, but the problem I have is a little more nuts and bolts. Still, this gives me the idea of keeping all the objects cached somewhere in the server and updating them there, then providing deltas for the proxies sitting on the client when the client polls... http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet Comment by Jason Jackson on Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-03T22:47:13Z 2009-11-03T22:47:13Z Its a proprietary system we haven't yet released (obviously) and I have obfuscated some of the details because of that. In general it is a way to monitor what is going on in an application that manages a large set of &quot;devices&quot; (current largest installation around 5k). This tool will allow an administrator to look at the &quot;device network&quot; as a whole and spot trouble, and then take action in troubled areas. Sorry I cannot get more specific. When we release I can show it to you! http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1670452#1670452 Comment by Jason Jackson on Is there a design pattern for dealing with large datasets over the internet? Jason Jackson 2009-11-03T22:44:15Z 2009-11-03T22:44:15Z I had thought of that but it isn't really push (though it would probably work) and doesn't really solve my design problem. The server system doesn't know that updates are ready until it queries subsystems, which means a polling on the server side anyway. I might cache results on the server to speed it up... thanks for the link.