User Craig Shearer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T22:26:33Zhttp://stackoverflow.com/feeds/user/14537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1338663/web-setup-msi-fails-on-windows-server-20082Web setup MSI fails on Windows Server 2008Craig Shearer2009-08-27T03:09:23Z2009-11-20T10:50:52Z
<p>I have built a web setup project in VS2008 which installs my ASP.NET/Silverlight app into IIS. This works fine everywhere except on Windows Server 2008.</p>
<p>I get this error message in the MSI installer log file:</p>
<pre><code>MSI (c) (C8:D8) [15:02:21:067]: Invoking remote custom action. DLL: C:\Users\ADMINI~1\AppData\Local\Temp\1\MSIB7DD.tmp, Entrypoint: SetTARGETSITE
MSI (c) (C8!F0) [15:02:21:097]: Creating MSIHANDLE (14) of type 790531 for thread 2288
INFO : [08/27/2009 15:02:21:097] [SetTARGETSITE ]: Custom Action is starting...
INFO : [08/27/2009 15:02:21:107] [SetTARGETSITE ]: CoInitializeEx - COM initialization Apartment Threaded...
ERROR : [08/27/2009 15:02:21:107] [SetTARGETSITE ]: FAILED: -2147221164
ERROR : [08/27/2009 15:02:21:127] [SetTARGETSITE ]: Custom Action failed with code: '340'
INFO : [08/27/2009 15:02:21:137] [SetTARGETSITE ]: Custom Action completed with return code: '340'
MSI (c) (C8!F0) [15:02:21:137]: Closing MSIHANDLE (14) of type 790531 for thread 2288
MSI (c) (C8:D8) [15:02:21:137]: Closing MSIHANDLE (13) of type 790542 for thread 3040
Action ended 15:02:21: WEBCA_SetTARGETSITE. Return value 3.
MSI (c) (C8:E0) [15:02:21:147]: Doing action: FatalErrorForm
</code></pre>
<p>I've tried googling the various error codes, but I'm not having much luck.</p>
<p>What is the problem?</p>
http://stackoverflow.com/questions/426041/why-doesnt-my-channelfactory-see-my-endpoint3Why doesn't my ChannelFactory see my endpoint?Craig Shearer2009-01-08T21:29:40Z2009-11-18T13:09:09Z
<p>I've been following Miguel Castro's excellent article on WCF <a href="http://www.devx.com/codemag/Article/39837" rel="nofollow">here</a> and it's all working nicely, except that I have the following code</p>
<pre><code>public AdminClient()
{
ChannelFactory<IProductAdmin> factory = new ChannelFactory<IProductAdmin>();
productAdminChannel = factory.CreateChannel();
}
</code></pre>
<p>In my app.config file, I have the following configuration:</p>
<pre><code><system.serviceModel>
<client>
<endpoint address="net.tcp://localhost:8002/ProductBrowser"
binding="netTcpBinding"
contract="Contracts.IProductAdmin" />
</client>
</system.serviceModel>
</code></pre>
<p>But, when I run the constructor for AdminClient I get an exception saying that the endpoint isn't defined. However, if I change my configuration to give the endpoint a name, and then create the factory as follows, it works. </p>
<pre><code>public AdminClient()
{
var fac = new ChannelFactory<IProductAdmin>("admin");
productAdminChannel = fac.CreateChannel();
}
</code></pre>
<p><hr /></p>
<pre><code><system.serviceModel>
<client>
<endpoint name="admin"
address="net.tcp://localhost:8002/ProductBrowser"
binding="netTcpBinding"
contract="Contracts.IProductAdmin" />
</client>
</system.serviceModel>
</code></pre>
<p>I'd love an explanation for this. The documentation in MSDN isn't much help...</p>
http://stackoverflow.com/questions/1691438/what-is-the-cause-of-intermittent-asyncexceptionoccurred-errors-in-a-silverlight0What is the cause of intermittent Async_ExceptionOccurred errors in a silverlight app?Craig Shearer2009-11-07T00:32:47Z2009-11-07T00:32:47Z
<p>I have a Silverlight 3 app deployed at multiple customer sites. Customers are occasionally getting a System.Reflection.TargetInvocationException with an inner exception of Async_ExceptionOccurred.</p>
<p>What is the cause of this? Is it just unreliability in the communications with the server? Is there any way to configure WCF to do an automatic retry of messages?</p>
http://stackoverflow.com/questions/315164/how-to-use-a-folderbrowserdialog-from-a-wpf-application2How to use a FolderBrowserDialog from a WPF applicationCraig Shearer2008-11-24T19:26:52Z2009-11-05T05:35:32Z
<p>I'm trying to use the FolderBrowserDialog from my WPF application - nothing fancy. I don't much care that it has the Windows Forms look to it.</p>
<p>However, when I call ShowDialog, I want to pass the owner window which is an IWin32Window. How do I get this from my WPF control?</p>
<p>Actually, does it matter? If I run this code and use the ShowDialog overload with no parameters it works fine. Under what circumstances do I need to pass the owner window?</p>
<p>Thanks,</p>
<p>Craig</p>
http://stackoverflow.com/questions/1659038/how-to-use-jquery-to-show-a-page-returned-from-a-post-in-a-dialog1How to use jQuery to show a page returned from a POST in a dialog?Craig Shearer2009-11-02T01:31:48Z2009-11-02T03:05:18Z
<p>I'm wanting to use the jquery dialog to open a modal dialog, and in it display the returned page from my server that results from a POST.</p>
<p>How can I do this?</p>
<p>Right now I've got something like this:</p>
<p>var ser = Form.serialize(); </p>
<p>$.post("myform", ser, function(result) { $j(result).dialog({title: "Add Shift"}); });</p>
<p>But it's shows 2 dialogs, and not until the page has come back from the server, which makes sense as that's the way I've got it coded (i.e. do a post then take the result and put it in a dialog). How do I open the dialog, do the post and put the resulting page in it?</p>
http://stackoverflow.com/questions/1659038/how-to-use-jquery-to-show-a-page-returned-from-a-post-in-a-dialog/1659259#16592590Answer by Craig Shearer for How to use jQuery to show a page returned from a POST in a dialog?Craig Shearer2009-11-02T03:05:18Z2009-11-02T03:05:18Z<p>I wanted to open the dialog immediately, then show the result of the POST once it completed. Here's what I did:</p>
<pre><code>$("#idMyResultDiv").dialog({
title: "Add Shift", modal: true, autoOpen: false });
$("#idMyResultDiv").html("Loading");
$("#idMyResultDiv").dialog("open");
$.post("myform", ser, function(result) {
$("#idMyResultDiv").html(result);
});
</code></pre>
http://stackoverflow.com/questions/1257109/example-source-code-for-an-activex-control-to-upload-files0Example source code for an ActiveX control to upload filesCraig Shearer2009-08-10T20:45:18Z2009-10-28T05:00:05Z
<p>I'm wanting to build an ActiveX control to upload files from a user's machine on a web page.</p>
<p>Where can I fnd a good example or tutorial for this - I guess C++ would be my preferred language, but VB would be OK too.</p>
http://stackoverflow.com/questions/1596647/how-do-i-see-the-value-of-a-dependencyproperty-in-windbg1How do I see the value of a DependencyProperty in WinDbg?Craig Shearer2009-10-20T18:57:46Z2009-10-21T00:30:09Z
<p>Using WinDbg and trying to debug a Silverlight application for memory leaks, I come across properties on my objects that are implemented as a DependencyProperty - and when I dump the object in the debugger (WinDbg) I can see the property - that is, I can see the actual static field.</p>
<p>How do I see the actual value of the property?</p>
http://stackoverflow.com/questions/160391/listbox-with-grid-as-itemspaneltemplate-produces-weird-binding-errors3ListBox with Grid as ItemsPanelTemplate produces weird binding errorsCraig Shearer2008-10-02T00:36:57Z2009-10-16T16:06:38Z
<p>I've got a ListBox control and I'm presenting a fixed number of ListBoxItem objects in a grid layout. So I've set my ItemsPanelTemplate to be a Grid.</p>
<p>I'm accessing the Grid from code behind to configure the RowDefinitions and ColumnDefinitions.</p>
<p>So far it's all working as I expect. I've got some custom IValueConverter implementations for returning the Grid.Row and Grid.Column that each ListBoxItem should appear in.</p>
<p>However I get weird binding errors sometimes, and I can't figure out exactly why they're happening, or even if they're in my code.</p>
<p>Here's the error I get:</p>
<blockquote>
<p><code>System.Windows.Data Error: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='System.Windows.Controls.ItemsControl', AncestorLevel='1''. BindingExpression:Path=HorizontalContentAlignment; DataItem=null; target element is 'ListBoxItem' (Name=''); target property is 'HorizontalContentAlignment' (type 'HorizontalAlignment')</code></p>
</blockquote>
<p>Can anybody explain what's going on?</p>
<p>Oh, and, here's my XAML:</p>
<pre><code><UserControl.Resources>
<!-- Value Converters -->
<v:GridRowConverter x:Key="GridRowConverter" />
<v:GridColumnConverter x:Key="GridColumnConverter" />
<v:DevicePositionConverter x:Key="DevicePositionConverter" />
<v:DeviceBackgroundConverter x:Key="DeviceBackgroundConverter" />
<Style x:Key="DeviceContainerStyle" TargetType="{x:Type ListBoxItem}">
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="Grid.Row" Value="{Binding Path=DeviceId, Converter={StaticResource GridRowConverter}}" />
<Setter Property="Grid.Column" Value="{Binding Path=DeviceId, Converter={StaticResource GridColumnConverter}}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListBoxItem}">
<Border CornerRadius="2" BorderThickness="1" BorderBrush="White" Margin="2" Name="Bd"
Background="{Binding Converter={StaticResource DeviceBackgroundConverter}}">
<TextBlock FontSize="12" HorizontalAlignment="Center" VerticalAlignment="Center"
Text="{Binding Path=DeviceId, Converter={StaticResource DevicePositionConverter}}" >
<TextBlock.LayoutTransform>
<RotateTransform Angle="270" />
</TextBlock.LayoutTransform>
</TextBlock>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsSelected" Value="true">
<Setter TargetName="Bd" Property="BorderThickness" Value="2" />
<Setter TargetName="Bd" Property="Margin" Value="1" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</UserControl.Resources>
<Border CornerRadius="3" BorderThickness="3" Background="#FF333333" BorderBrush="#FF333333" >
<Grid ShowGridLines="False">
<Grid.RowDefinitions>
<RowDefinition Height="15" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Orientation="Horizontal">
<Image Margin="20,3,3,3" Source="Barcode.GIF" Width="60" Stretch="Fill" />
</StackPanel>
<ListBox ItemsSource="{Binding}" x:Name="lstDevices" Grid.Row="1"
ItemContainerStyle="{StaticResource DeviceContainerStyle}"
Background="#FF333333"
SelectedItem="{Binding SelectedDeviceResult, ElementName=root, Mode=TwoWay}"
>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<Grid>
<Grid.LayoutTransform>
<RotateTransform Angle="90" />
</Grid.LayoutTransform>
</Grid>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</Grid>
</Border>
</code></pre>
<p></p>
http://stackoverflow.com/questions/1507557/why-would-you-ever-go-with-html-over-ria/1507563#15075633Answer by Craig Shearer for Why would you ever go with HTML over RIA?Craig Shearer2009-10-02T03:01:34Z2009-10-02T03:01:34Z<p>I'm a keen Silverlight developer, but at the moment, I would only consider it for internal applications - e.g. Line of Business, etc. The reason is that it's a hurdle to get users to install the Silverlight plug-in. If you want the broadest possible reach for a web-site then stick with HTML.</p>
<p>I agree that RIAs are extremely productive though. Given a few years, I don't think it will be an issue, but then HTML will have evolved too (HTML 5) and Google is putting a lot of resources into Javascript.</p>
http://stackoverflow.com/questions/1477935/best-tell-tale-sign-on-their-first-day-that-a-programmer-might-not-work-out/1485102#14851022Answer by Craig Shearer for Best tell-tale sign on their first day that a programmer might not work out?Craig Shearer2009-09-28T02:03:11Z2009-09-28T02:03:11Z<p>True story - we hired a programmer who just couldn't "get" indentation. His code was crappy too!</p>
http://stackoverflow.com/questions/1401889/sql-filter-criteria-in-join-criteria-or-where-clause-which-is-more-efficient/1401909#14019090Answer by Craig Shearer for SQL Filter criteria in join criteria or where clause which is more efficientCraig Shearer2009-09-09T20:30:12Z2009-09-09T20:30:12Z<p>It may seem flippant, but the answer is whichever query for which the query analyzer produces the most efficient plan.</p>
<p>To my mind, they seem to be equivalent, so the query analyzer may well produce identical plans, but you'd have to test.</p>
http://stackoverflow.com/questions/1387176/if-anyone-can-solve-this-algorithm/1387186#13871862Answer by Craig Shearer for If anyone can solve this algorithm.Craig Shearer2009-09-07T01:04:41Z2009-09-07T01:04:41Z<p>I think that you'll probably just have to take a brute force approach to this - trying all possible combinations until you come up with a formula that works.</p>
<p>You don't define what the allowable operators are - is it just addition and multiplication or subraction and division as well?</p>
http://stackoverflow.com/questions/1371063/why-dont-onetime-and-oneway-databinding-work-with-textblocks-text-property0Why don't OneTime and OneWay databinding work with TextBlock's Text propertyCraig Shearer2009-09-03T01:52:18Z2009-09-03T17:25:20Z
<p>In Silverlight 3:</p>
<p>I've got an object that implements INotifyPropertyChanged</p>
<p>I've got a TextBlock with the Text property bound to a property on my object. However, the property changes and fires the PropertyChanged event, but the TextBlock control never displays the value.</p>
<p>If I change the Mode to TwoWay, it works, but this doesn't make much sense. Is this a bug in Silverlight's TextBlock or a poorly documented feature?</p>
<p>Here's my code (extremely simple) - this doesn't work:</p>
<pre><code><TextBlock Text="{Binding Code}" />
</code></pre>
<p>This does work:</p>
<pre><code><TextBlock Text="{Binding Code, Mode=TwoWay}" />
</code></pre>
<p>And the reason I care about this is that I actually want to bind the Text to an object, not a property, and then use a ValueConverter to do some conversion, so the TwoWay mode doesn't work (I get a XAML parser exception when I try it).</p>
http://stackoverflow.com/questions/1360334/is-there-a-good-open-source-or-free-alternative-to-llblgen/1360378#13603781Answer by Craig Shearer for Is there a Good Open Source or Free Alternative to llblgenCraig Shearer2009-09-01T03:25:48Z2009-09-01T03:25:48Z<p>Presumeably if you're mentioning LLBLGen, you're a .NET user - do you have access to Visual Studio? You can always use T4 - the code generator built into visual studio - I've used it with great success for various code generation. All you'd need would be some model which your code generation templates can read and then you could use T4 to generate SQL, or just about anything else you want.</p>
http://stackoverflow.com/questions/1360353/what-is-the-standard-casing-with-database-tables-and-fields/1360371#13603710Answer by Craig Shearer for what is the standard casing with database tables and fieldsCraig Shearer2009-09-01T03:22:28Z2009-09-01T03:22:28Z<p>There doesn't seem to be any universal standard. My personal one is that tables and columns are named with Pascal casing, table names are always singular (e.g. Customer, SalesOrder, Product, etc.)</p>
<p>Column names are also Pascal-cased - and I use a prefix for primary and foreign key fields (pk and fk respectively) but I know some frown upon this.</p>
http://stackoverflow.com/questions/1354903/auto-tab-in-silverlight-31Auto-tab in Silverlight 3Craig Shearer2009-08-30T21:07:33Z2009-08-30T21:41:04Z
<p>I have a requirement to be able to auto-tab from one control to the "next control" in a SL3 app. For example, a TextBox is limited to 3 characters - on typing the 3rd character the focus should automatically move to the next control on the form (my actual usage is slightly different but that example suffices). </p>
<p>However, as SL automatically determines the tab sequence there doesn't seem to be a way of doing this apart from reverse engineering/duplicating Silverlight's logic to figure out which control in the visual tree should be the next control to gain focus.</p>
<p>Has anybody implemented this already?</p>
http://stackoverflow.com/questions/1354903/auto-tab-in-silverlight-3/1354971#13549710Answer by Craig Shearer for Auto-tab in Silverlight 3Craig Shearer2009-08-30T21:41:04Z2009-08-30T21:41:04Z<p>I was looking for a fairly generalised solution - but I've been able to make do with something fairly specific - basically it uses the VisualTreeHelper to find children with the same parent as the control that I want to tab next to, and sets focus to that. </p>
<p>It's a more palatable solution than having to go through all my controls (and this is for a fairly large LOB application) and configure the "next" control for each of them.</p>
<p>Here's my code, in case it helps somebody else. (VisualTreeeHelperUtil is a class of my own that adds some utility functions to VisualTreeHelper)</p>
<pre><code>public static void TabNext(DependencyObject parentElement, Control fromControl)
{
var children = VisualTreeHelperUtil.FindChildren<Control>(parentElement).
Where(c => c.IsEnabled && c.IsTabStop && c.Visibility == Visibility.Visible).
ToList();
if (children.Contains(fromControl))
{
var thisIndex = children.IndexOf(fromControl);
var targetIndex = thisIndex + 1;
if (children.Count > targetIndex)
{
var targetChild = children[targetIndex];
fromControl.Dispatcher.BeginInvoke(() =>
{
targetChild.Focus();
var txt = targetChild as TextBox;
if (txt != null)
{
txt.SelectAll();
}
});
}
}
}
</code></pre>
http://stackoverflow.com/questions/1350854/website-re-development-what-should-i-charge/1350876#13508760Answer by Craig Shearer for Website Re-Development: What should I charge?Craig Shearer2009-08-29T08:46:21Z2009-08-29T08:46:21Z<p>I'd say charge what your time's worth - i.e. basically your hourly rate, with perhaps a small discount for friendship. Time is time, and I wouldn't think that revamping a website is any different from any other kind of development work.</p>
http://stackoverflow.com/questions/1344304/why-do-newbie-programmers-seem-to-shy-away-from-libraries/1344331#13443313Answer by Craig Shearer for Why do newbie programmers seem to shy away from libraries?Craig Shearer2009-08-27T23:51:20Z2009-08-27T23:51:20Z<p>I think there's a lot of time that needs to be invested in understanding the library's purpose - yes, a learning curve, but it's more that newbie programmers probably don't know what they need until they have a lot more experience.</p>
http://stackoverflow.com/questions/1309085/winforms-or-silverlight/1309101#13091013Answer by Craig Shearer for Winforms or SilverlightCraig Shearer2009-08-20T22:05:07Z2009-08-20T22:05:07Z<p>If you want access to the machine on which the application will run (e.g. to access a database, and to use printing), that pretty much rules out Silverlight, without jumping through a lot of hoops (e.g. having to install something on the user's machine anyway).</p>
<p>You say that WinForms will require a learning curve for you - well you might as well use WPF then, as it's a similar technology from the UI perspective as Silverlight. However, you can proably find a lot more resources online for WinForms though, and it's likely you'd be more productive in WinForms given its strong Visual Studio designer support.</p>
<p>Deployment with WinForms or WPF should be fairly easy with ClickOnce.</p>
http://stackoverflow.com/questions/1225318/how-can-i-make-the-silverlight-scrollviewer-scroll-to-show-a-child-control-with-f0How can I make the Silverlight ScrollViewer scroll to show a child control with focus?Craig Shearer2009-08-04T01:01:36Z2009-08-04T20:34:32Z
<p>I have a ScrollViewer which contains a Grid with multiple controls in it. The user can tab through the controls, but eventually they tab to a control that isn't in view - so they have to manully scroll to make the control visible again.</p>
<p>Is there any way to make the ScrollViewer scroll automatically so that the focussed control is always visible. Failing that, is there any way I can make this work, short of listening to a GotFocus event on every control and then scrolling the ScrollViewer to make the control visible?</p>
<p>At present I'm using Silverlight 2.</p>
http://stackoverflow.com/questions/1225318/how-can-i-make-the-silverlight-scrollviewer-scroll-to-show-a-child-control-with-f/1229791#12297910Answer by Craig Shearer for How can I make the Silverlight ScrollViewer scroll to show a child control with focus?Craig Shearer2009-08-04T20:34:32Z2009-08-04T20:34:32Z<p>I got this to work, with help of Kiril's answer above. The general context of this is that I have user-defineable forms in my application, and this code is used for rendering the controls on a form.</p>
<p>My general strategy was to add my controls to a Grid, then find all the children of the ScrollViewer using VisualTreeHelper, and add a GotFocus event handler to each control.</p>
<p>When the control gets focus, again using VisualTreeHelper, I search up the visual tree to find the control whose parent is the Grid that is being scrolled by the ScrollViewer. Then I scroll the ScrollViewer to make the control visible.</p>
<p>Here's the code (gridRender is the Grid that the controls are added to):</p>
<pre><code>private void AfterFormRendered()
{
var controls = VisualTreeHelperUtil.FindChildren<Control>(gridRender);
foreach (var ctrl in controls)
{
ctrl.GotFocus += CtrlGotFocus;
}
}
private void CtrlGotFocus(object sender, RoutedEventArgs e)
{
var ctrl = sender as Control;
var gridChildControl = VisualTreeHelperUtil.FindParentWithParent(ctrl, gridRender) as FrameworkElement;
if (gridChildControl != null)
{
// Ensure the control is scrolled into view in the ScrollViewer.
GeneralTransform focusedVisualTransform = gridChildControl.TransformToVisual(scrollViewer);
Point topLeft = focusedVisualTransform.Transform(new Point(gridChildControl.Margin.Left, gridChildControl.Margin.Top));
Rect rectangle = new Rect(topLeft, gridChildControl.RenderSize);
double newOffset = scrollViewer.VerticalOffset + (rectangle.Bottom - scrollViewer.ViewportHeight);
scrollViewer.ScrollToVerticalOffset(newOffset);
}
}
</code></pre>
<p>Note: the VisualTreeHelperUtil class is my own class that adds some useful searching functionality to the VisualTreeHelper class.</p>
http://stackoverflow.com/questions/341747/contextmenu-on-windowsformshost-control1ContextMenu on WindowsFormsHost controlCraig Shearer2008-12-04T19:25:59Z2009-07-30T18:34:59Z
<p>So, I have a WindowsFormsHost control in my WPF app (hosting a Dundas Chart) and I want to put a ContextMenu on it.</p>
<p>I can successfully attach a ContextMenu to any normal WPF control, but it's not working for the WindowsFormsHost. I suspect this is becuase it's "special" in some way and the appropriate mouse messages aren't reaching the required destination.</p>
<p>How do I do this?</p>
http://stackoverflow.com/questions/249185/can-i-control-which-nodes-are-selectable-in-a-wpf-treeview4Can I control which nodes are selectable in a WPF TreeView?Craig Shearer2008-10-30T03:18:02Z2009-07-27T09:05:24Z
<p>I have a two-level hierarchy displayed in a WPF TreeView, but I only want the child nodes to be selectable - basically the top level nodes are for categorisation but shouldn't be selectable by themselves. </p>
<p>Can I achieve this?</p>
<p>Thanks...</p>
http://stackoverflow.com/questions/1186770/tools-for-creating-class-diagrams/1186866#11868661Answer by Craig Shearer for Tools for creating Class DiagramsCraig Shearer2009-07-27T07:19:31Z2009-07-27T07:19:31Z<p>I've used <a href="http://www.sparxsystems.com.au/" rel="nofollow">Enterprise Architect</a> in the past - not free, but not too expensive, and it produces nice diagrams. </p>
http://stackoverflow.com/questions/1141873/how-should-i-serialize-some-simple-auditing-data-for-storing-in-a-sql-table1How should I serialize some simple auditing data for storing in a SQL table?Craig Shearer2009-07-17T07:42:14Z2009-07-18T00:21:57Z
<p>I have an audit table in SQL server. It is to record an entry for each high-level user action, e.g. update a record, add a new record, delete a record etc.</p>
<p>I have a mechanism for detecting and recording all the changes made (in .NET, not as a trigger in the database) and have a collection of objects that record a field name, previous value and new value. I'm wanting to store the field changes in the same table (not in a separate table, i.e. I don't want a full-blown normalised relational design for this), so I have a blob field (or it could be a character field) that I want to record the field-level audit data in.</p>
<p>I'm thinking I just want to take my object graph (basically just a list of these field change objects) and serialize it and store the serialized version in the table.</p>
<p>Later, when the user wants to view the changes I can deserialize the field and reconstruct the collection of field changes.</p>
<p>So, what would be the best framework/serialization format in .NET 3.5 to use? I don't much mind about the size, and it doesn't have to be human-readable.</p>
http://stackoverflow.com/questions/1141787/invalidcastexception-when-serializing-and-deserializing2InvalidCastException when serializing and deserializingCraig Shearer2009-07-17T07:08:58Z2009-07-17T08:23:42Z
<p>I have this code:</p>
<pre><code>public byte[] SerializeToBlob()
{
using (var buffer = new MemoryStream())
{
var formatter = new BinaryFormatter();
formatter.Serialize(buffer, this);
buffer.Position = 0;
return buffer.ToArray();
}
}
public static ActionData DeserializeFromBlob(byte[] state)
{
using (var buffer = new MemoryStream(state))
{
var formatter = new BinaryFormatter();
var result = formatter.Deserialize(buffer);
return (ActionData) result;
}
}
</code></pre>
<p>And am calling it as follows:</p>
<pre><code>byte[] actionDataBlob = ad.SerializeToBlob();
var ad1 = ActionData.DeserializeFromBlob(actionDataBlob);
</code></pre>
<p>However, I get an InvalidCastException when it tries to cast the deserialized object to its type:</p>
<blockquote>
<p>[A]ActionData cannot be cast to
[B]ActionData. Type A originates from
'XXXX.XXXX.Auditing, Version=1.0.76.0,
Culture=neutral, PublicKeyToken=null'
in the context 'Default' at location
'C:\Users\Craig\AppData\Local\Temp\Temporary
ASP.NET
Files\root\5d978e5b\ffc57fe1\assembly\dl3\2b1e5f8f\102c846e_9506ca01\XXXX.XXXX.Auditing.DLL'.
Type B originates from
'XXXX.XXXX.Auditing, Version=1.0.76.0,
Culture=neutral, PublicKeyToken=null'
in the context 'LoadNeither' at
location 'F:\Visual Studio
Projects\XXXXXXXXX\source\XXXX.XXXX.SilverlightClient.Web\bin\XXXX.XXXX.Auditing.dll'.</p>
</blockquote>
<p>(XXXX.XXXX is there to obscure the client's name)</p>
<p>What gives?</p>
<p>I've now asked a related question here:</p>
<p><a href="http://stackoverflow.com/questions/1141873/how-should-i-serialize-some-simple-auditing-data-for-storing-in-a-sql-table">http://stackoverflow.com/questions/1141873/how-should-i-serialize-some-simple-auditing-data-for-storing-in-a-sql-table</a></p>
http://stackoverflow.com/questions/1141787/invalidcastexception-when-serializing-and-deserializing/1142005#11420050Answer by Craig Shearer for InvalidCastException when serializing and deserializingCraig Shearer2009-07-17T08:23:42Z2009-07-17T08:23:42Z<p>In the end, my problem was with the dynamic loading, I think. When I implemented it using the XmlSerializer I had exactly the same problem.</p>
<p>The solution was to put the classes I wanted to serialize in a separate assembly so they weren't dynamically loaded.</p>
http://stackoverflow.com/questions/1135260/how-can-i-write-this-sql-better0How can I write this SQL better?Craig Shearer2009-07-16T03:30:25Z2009-07-16T04:51:15Z
<p>I have the tables Patient, Service, PatientStatus, Status - a Patient can have multiple statuses discriminated by a Service.</p>
<p>I want to build a view that shows for each service and each patient what their current status is, even if they don't have a status for that service. </p>
<p>I've got some SQL that does this, but can I write it better? (I'm mainly concerned about the inner join on Patient with the 1 = 1)</p>
<p>Here's the SQL:</p>
<pre><code>select
p.Code,
s.pkServiceId,
ps.fkPatientId,
ps.fkStatusId,
s.Code AS ServiceCode,
s.Description AS ServiceDescription,
st.Code AS StatusCode,
st.Description as StatusDescription,
ps.TsStart
from
Service s
inner join
Patient p on 1 = 1
left outer join
(select
max(TsStart) AS TsStart,
fkPatientId,
fkServiceId
from
PatientStatus AS ps
group by
fkServiceId, fkPatientId
) AS psLast on
psLast.fkServiceId = s.pkServiceId and
psLast.fkPatientId = p.pkPatientId
left outer join
PatientStatus AS ps ON
psLast.TsStart = ps.TsStart and
psLast.fkPatientId = ps.fkPatientId and
psLast.fkServiceId = ps.fkServiceId
left outer join
Status st on
st.pkStatusId = ps.fkStatusId
</code></pre>
http://stackoverflow.com/questions/134224/generating-an-xml-serialization-assembly-as-part-of-my-build/204993#204993Comment by Craig Shearer on Generating an Xml Serialization assembly as part of my build.Craig Shearer2009-12-02T21:08:25Z2009-12-02T21:08:25ZThanks, worked nicely. It helped that I put the classes I needed to serialize into a separate project so that SGEN would just work on those.http://stackoverflow.com/questions/543561/alter-sql-function-referenced-by-computed-columnComment by Craig Shearer on Alter SQL Function Referenced by Computed ColumnCraig Shearer2009-11-26T21:29:58Z2009-11-26T21:29:58ZI agree this is a BIG pain! Feeling it right now!http://stackoverflow.com/questions/1659038/how-to-use-jquery-to-show-a-page-returned-from-a-post-in-a-dialog/1659117#1659117Comment by Craig Shearer on How to use jQuery to show a page returned from a POST in a dialog?Craig Shearer2009-11-02T03:03:01Z2009-11-02T03:03:01ZThanks - that was useful though not completely what I needed. I really wanted the dialog to show while the POST was happening. http://stackoverflow.com/questions/1641696/how-can-i-download-a-file-through-my-applicationComment by Craig Shearer on How can I download a file through my applicationCraig Shearer2009-10-29T05:02:57Z2009-10-29T05:02:57ZFirst, try asking the question in the proper format.
Second, I'm sure you can find many many examples of this using google.
Thirdly, what web technology are you using?http://stackoverflow.com/questions/1596647/how-do-i-see-the-value-of-a-dependencyproperty-in-windbg/1598105#1598105Comment by Craig Shearer on How do I see the value of a DependencyProperty in WinDbg?Craig Shearer2009-10-21T19:04:32Z2009-10-21T19:04:32ZThanks - I guess I'll have to experiment. Looks like I've fallen off the edge of community knowledge with this one :)http://stackoverflow.com/questions/1522119/is-where-id-in-1-2-3-4-5-the-most-efficientComment by Craig Shearer on Is WHERE ID IN (1, 2, 3, 4, 5, ...) the most efficient?Craig Shearer2009-10-05T20:23:18Z2009-10-05T20:23:18ZOne comment I'd make that seems to be missing in searches on the web, is that when you declare the temporary table for the IDs, you should declare the ID column as a primary key. Then SQL Server puts an index on it. If you don't do this it does a table scan and this can severely impact performance if the table contains many rows.http://stackoverflow.com/questions/1384866/how-to-to-analyze-your-app-designComment by Craig Shearer on How to to analyze your app design?Craig Shearer2009-09-06T05:12:48Z2009-09-06T05:12:48ZPerhaps a post-mortal meeting might be leaving things a bit late...http://stackoverflow.com/questions/1371063/why-dont-onetime-and-oneway-databinding-work-with-textblocks-text-property/1374822#1374822Comment by Craig Shearer on Why don't OneTime and OneWay databinding work with TextBlock's Text propertyCraig Shearer2009-09-03T20:07:02Z2009-09-03T20:07:02ZNow that I've tried to reproduce this in a very simple way, it's working correctly, which intrigues me. I will have to dig a bit deeper to find out why my specific situation doesn't work.http://stackoverflow.com/questions/1338663/web-setup-msi-fails-on-windows-server-2008/1338700#1338700Comment by Craig Shearer on Web setup MSI fails on Windows Server 2008Craig Shearer2009-08-27T03:49:16Z2009-08-27T03:49:16ZAnd a very good guess it was - that worked. Thanks a bunch!http://stackoverflow.com/questions/1338663/web-setup-msi-fails-on-windows-server-2008Comment by Craig Shearer on Web setup MSI fails on Windows Server 2008Craig Shearer2009-08-27T03:14:21Z2009-08-27T03:14:21ZThe hex version of the error code is 0x80040154 - seems to be something related to COM.http://stackoverflow.com/questions/825743/can-not-find-system-windows-assembly/825840#825840Comment by Craig Shearer on Can not find System.Windows Assembly.Craig Shearer2009-08-13T01:22:25Z2009-08-13T01:22:25ZI had the same problem - strangely it was just ReSharper flagging the error though my project compiled correctly, and it was in a server-side class library, not even a SL library. http://stackoverflow.com/questions/1257109/example-source-code-for-an-activex-control-to-upload-files/1257119#1257119Comment by Craig Shearer on Example source code for an ActiveX control to upload filesCraig Shearer2009-08-10T22:36:05Z2009-08-10T22:36:05ZOK, let me state my exact requirements.
This is in an intranet environment, and actually a Silverlight LOB app.
The user wants to configure a location in the file system for upload and download of files. The Silverlight app needs to communicate with the ActiveX control to save or load files from this location. This is NOT possible in Silverlight.
I know there are issues around security, etc. But it seems that ActiveX is really the only viable technology for this, at least until Silverlight has some ability to do this via some trust setting.http://stackoverflow.com/questions/1257109/example-source-code-for-an-activex-control-to-upload-files/1257119#1257119Comment by Craig Shearer on Example source code for an ActiveX control to upload filesCraig Shearer2009-08-10T21:03:17Z2009-08-10T21:03:17ZYes, I know ActiveX is a "dead" technology, but it does have some advantages for my scenario - uploading multiple files. http://stackoverflow.com/questions/1225318/how-can-i-make-the-silverlight-scrollviewer-scroll-to-show-a-child-control-with-f/1226823#1226823Comment by Craig Shearer on How can I make the Silverlight ScrollViewer scroll to show a child control with focus?Craig Shearer2009-08-04T20:23:16Z2009-08-04T20:23:16ZThanks - with a little modification, which I'll post as an answer, it worked very nicely. The TransformBounds method on GeneralTransform seems to be a SL3 thing though.http://stackoverflow.com/questions/1141873/how-should-i-serialize-some-simple-auditing-data-for-storing-in-a-sql-table/1146265#1146265Comment by Craig Shearer on How should I serialize some simple auditing data for storing in a SQL table?Craig Shearer2009-07-18T21:16:31Z2009-07-18T21:16:31ZHi KD
Well actually, finding the changes is reasonably easy for me as I'm using an Object Relational Mapper (LLBLGen) which does most of the hard work for me. I imagine other ORM products and technologies have similar capabilities, but if you're doing raw SQL then you'll be left to your own devices. Probably code-generated database triggers would be the traditional way to do this.