User Matthew Savage - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T00:37:33Z http://stackoverflow.com/feeds/user/18434 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/437808/scripting-engine-host-for-applications 1 Scripting engine host for applications Matthew Savage 2009-01-13T02:47:59Z 2009-12-06T13:57:26Z <p>We have an application which at certain times needs to execute 'tasks' in order to do some work. These tasks currently are just commands (read: dodgy VB scripts) being fired off and then monitoring the process for completion or aborting if it 'times out', however we don't have enough control over the execution.</p> <p>I would like to integrate a scripting engine or scripting host to enable us to execute the scripts within our application (in another appdomain if possible) and maintain some control over them. I'd envisage that we have scripts which follow an interface similar to:</p> <pre><code>void Initialize(); void Destroy(); void Execute(); void Abort(); int GetProgress(); </code></pre> <p>Of course, the above is probably not what would be in the code, however you get the idea... Essentially from our application we could call <code>Initialize</code>, then <code>Execute</code>, poll <code>GetProgress</code> until the return value is 100 or whatever, then at the end either call <code>Destroy</code> or <code>Abort</code> then <code>Destroy</code> if we need to cancel or it goes past the timeout period.</p> <p>The main thing that the scripts would need to be able to do is AD queries, and interact with the Shell (e.g. Map a network drive, or Disconnect one).</p> <p>I've looked into a few options to do this - one which I have implemented a prototype of uses Boo as the language and essentially loads the script on the fly to compile and execute as an 'assembly' in memory. I like the way this works but I'm not sure how well it would be accepted not being a 'well known' language etc.</p> <p>Other options I'm looking at are Python (IronPython), Ruby (IronRuby), PowerShell, and maybe VB, but I'm not sure about the ease of implementation with VB.</p> <p>Any opinions, comments, suggestions or even resources which might point me in the right direction?</p> http://stackoverflow.com/questions/1624965/google-maps-stealing-focus-when-map-is-below-the-fold 0 Google Maps stealing focus when map is below the fold. Matthew Savage 2009-10-26T13:58:23Z 2009-10-30T10:58:51Z <p>I have a website which is using Google Maps to display the location of a property. This map is located below the fold on the website.</p> <p>In IE8, Firefox, Safari etc this is working fine, but in IE7 (at the moment, specifically on Windows XP, can't really test on Vista/7 at the moment) the Maps seem to steal the focus and scrolls the page down.</p> <p>I am unable to find any documentation which might indicate this is a known issue, or there is a workaround for it, but it would be really nice if I could stop it :) Or, if not, I might have to hack around it...</p> http://stackoverflow.com/questions/1624965/google-maps-stealing-focus-when-map-is-below-the-fold/1649156#1649156 0 Answer by Matthew Savage for Google Maps stealing focus when map is below the fold. Matthew Savage 2009-10-30T10:58:51Z 2009-10-30T10:58:51Z <p>So, I actually figured out what the issue was - and it wasn't actually related to Google Maps..</p> <p>We had a jQuery UI Datepicker hooked up to a separate element, which wasn't actually on that page, but when the init method was being run it was jumping down specifically on that call.</p> <p>Unusual, no idea why, but thats what it was... so I guess this question should be closed as invalid...</p> http://stackoverflow.com/questions/1557060/pointers-for-data-returned-by-delegate-methods-in-macruby 0 Pointers for data returned by delegate methods in MacRuby Matthew Savage 2009-10-12T21:33:18Z 2009-10-27T19:52:38Z <p>I'm working on a small MacRuby project, using 0.5b1, which is implementing the delegate methods required for Growl (the app is using Growl for notifications).</p> <p>I would like to be able to respond to the Growl callbacks when the notification is clicked, however when you register the Growl delegate with <code>::GrowlApplicationBridge.setGrowlDelegate self</code> it asks the delegate for a <code>NSDictionary*</code> with the Growl registration information.</p> <p>I have tried returning a standard NSDictionary instance, trying to coerce the object into a pointer etc, but every time I seem to get a segmentation fault (I guess this is because I'm passing back an object, not a pointer to the object).</p> <p>I'm wondering if it is possible to obtain a pointer to the object its self, or using <code>p = Pointer.new("NSDictionary")</code> is it possible to assign the data somehow (using <code>p.assign(dict)</code> results in a type error as it is expecting an Integer).</p> <p>I guess that the other option is to write an ObjC class to act as the delegate and just hook into that from Ruby, but that somewhat defeats the purpose....</p> http://stackoverflow.com/questions/1216807/git-rebase-continually-fails-and-requires-manual-merge-intervention 2 Git rebase continually fails and requires manual merge intervention Matthew Savage 2009-08-01T15:22:15Z 2009-10-27T09:54:35Z <p>I am having an issue with rebasing from master on to a 'deploy' branch within one of my repositories.</p> <p>My repo is setup as follows:</p> <pre><code>master - of course, the main branch deploy - a branch created where files like Capfile, deploy.rb etc are created and configured - these changes will NEVER be merged back into Master </code></pre> <p>Generally my workflow is:</p> <ol> <li>Do development on the master branch... test, smile, commit.</li> <li>Checkout the <code>deploy</code> branch</li> <li>Execute <code>git rebase master</code> on the deploy branch - this used to work without a problem</li> <li>Push to remote and then execute <code>cap deploy</code></li> <li>Relax</li> </ol> <p>The problem I am now having is that when I execute <code>git rebase master</code> on the deploy branch it is coming up with a 3-way merge/manual merge required error (I don't think the error message is really generic enough to post). Git tells me to perform a merge then use <code>git rebase --continue</code> to finish - which never works.</p> <p>What I have found 'does' work is running <code>git rebase master --interactive</code>, cleaning up the pick list (there is 5 or so repeated 'commits' but with different reference numbers (same message) in this list, so I'll choose one of them) and then manually do the merge. Once I have done this for each commit then I can continue the rebase and its all happy...</p> <p>Until next time I need to perform a rebase.</p> <p>So does anyone know what might be happy? The project isn't really 'secret' so if need be I can post messages, logs, branch graphs etc.</p> <p>Thanks </p> http://stackoverflow.com/questions/1620729/is-there-a-better-developer-toolbar-for-ie8 1 Is there a better developer toolbar for IE8? Matthew Savage 2009-10-25T12:10:24Z 2009-10-25T15:03:50Z <p>I've been pulling my hair out for the last few hours trying to wrestle with the IE8 developer toolbar while working with some styles not playing with IE7 mode properly...</p> <p>Coming over from Firebug the difference is like... well lets just say its better then nothing.</p> <p>What I'm wondering is, has there been any.. additions, patches, hacks, updates etc to improve the toolbar at all in IE8? It seems, like with most things associated with the IE line, this was really done as an afterthought and not much effort was put into making it work well... </p> <p><strong>Update</strong>: So I was, it seems, not specific enough.. here is what is annoying me about the IE offerings:</p> <ul> <li>Style support - yeah, it is there, but it just doesn't feel right. It isn't easy to see the inheritance, and if you want to tweak an existing style you have to go into Attributes and add an override to the element.</li> <li>HTML element location. This just seems a LOT cleaner in Firebug</li> <li>Scrolling - If you have an element selected in the HTML pane, and you goto scroll in the CSS pane on the right it wont happen until you focus that pane.</li> </ul> <p>Most of all its just the small annoyances - I think I've been too spoiled by Firebug, and I want it in IE - but considering the 'closed'-ness of the product it would be hard to get this rectified. To be honest, if I could contribute I would, because it would make my life so much easier - but... yeah.</p> http://stackoverflow.com/questions/1604409/sharepoint-rich-content-editor-munging-html-added-from-custom-toolbar-button 0 Sharepoint Rich Content Editor munging HTML added from custom toolbar button Matthew Savage 2009-10-22T00:30:42Z 2009-10-22T09:11:32Z <p><strong>Summary</strong>: What I'm trying to ask - are we going about this the completely wrong way, or, is there a way to stop Sharepoint, or its rich editor, from munging the HTML which gets added?</p> <p>I've been 'dropped' into a project revolving around Sharepoint 2007 (trust me, I'm not entirely pleased about it), and one of the things that is sought after is a way to use a rich-content-area for the users to put in 'rich content' and then add certain 'extras' to the content, such as expandable content areas, dialogs etc.</p> <p>The initial plan of attack was to add in a custom button to the Sharepoint rich content editor toolbar, which we have code to do this, and it works etc, and attach javascript event handlers to certain elements - which also works - to a point.</p> <p>One thing we are doing is using an <code>&lt;a&gt;</code> element and a subsequent <code>&lt;div&gt;</code> to setup a dialog (using jQuery UI to do the magic). When the user clicks the 'insert dialog' button the following is inserted into the editor:</p> <pre><code>&lt;a href="#" class="dialog-trigger"&gt;Click me to open the dialog&lt;/a&gt; &lt;div class="dialog-content"&gt; this is some dialog content etc &lt;/div&gt; </code></pre> <p>When the page loads we hook onto the .dialog-trigger click method, grab the <code>a</code> element's sibling which is a <code>.dialog-content</code> and set that up as a dialog. This 'works' as long as you don't want to edit anything.</p> <p>What I have found is that as soon as you start editing the content within the <code>.dialog-content</code> DIV the rich-content editor starts munging the HTML, for example, adding a list adds in the following HTML:</p> <pre><code>&lt;li&gt;&lt;div class=dialog-content&gt;Some list item&lt;/div&gt;&lt;/li&gt; &lt;li&gt;&lt;div class=dialog-content&gt;Some list item 2&lt;/div&gt;&lt;/li&gt; &lt;li&gt;&lt;div class=dialog-content&gt;Another list item&lt;/div&gt;&lt;/li&gt; </code></pre> <p>As you can imagine, this kind of breaks what we are trying to do.</p> <p>To summarize what I'm trying to ask - are we going about this the completely wrong way, or, is there a way to stop Sharepoint, or its rich editor, from munging the HTML which gets added?</p> http://stackoverflow.com/questions/1271788/session-variables-with-cucumber-stories 2 Session variables with Cucumber Stories Matthew Savage 2009-08-13T12:52:21Z 2009-09-07T14:23:22Z <p>I am working on some Cucumber stories for a 'sign up' application which has a number of steps.</p> <p>Rather then writing a Huuuuuuuge story to cover all the steps at once, which would be <em>bad</em>, I'd rather work through each action in the controller like a regular user. My problem here is that I am storing the account ID which is created in the first step as a session variable, so when step 2, step 3 etc are visited the existing registration data is loaded.</p> <p>I'm aware of being able to access <code>controller.session[..]</code> within RSpec specifications however when I try to do this in Cucumber stories it fails with the following error (and, I've also read somewhere this is an anti-pattern etc...):</p> <p><em>Using controller.session[:whatever] or session[:whatever]</em></p> <pre><code>You have a nil object when you didn't expect it! The error occurred while evaluating nil.session (NoMethodError) </code></pre> <p><em>Using session(:whatever)</em></p> <pre><code>wrong number of arguments (1 for 0) (ArgumentError) </code></pre> <p>So, it seems accession the session store isn't really possible. What I'm wondering is if it might be possible to (and I guess which would be best..):</p> <ol> <li>Mock out the session store etc</li> <li>Have a method within the controller and stub that out (e.g. <code>get_registration</code> which assigns an instance variable...)</li> </ol> <p>I've looked through the RSpec book (well, skimmed) and had a look through WebRat etc, but I haven't really found an answer to my problem...</p> <p>To clarify a bit more, the signup process is more like a state machine - e.g. the user progresses through four steps before the registration is complete - hence 'logging in' isn't really an option (it breaks the model of how the site works)...</p> <p>In my spec for the controller I was able to stub out the call to the method which loads the model based on the session var - but I'm not sure if the 'antipattern' line also applies to stubs as well as mocks?</p> <p>Thanks!</p> http://stackoverflow.com/questions/543790/rails-inline-javascript-and-best-practices 4 Rails inline Javascript and Best Practices Matthew Savage 2009-02-12T22:32:12Z 2009-08-14T12:54:24Z <p>I'm <em>kinda</em> new to using Rails, and an app I am working on is progressing well - however I'm looking though the generated HTML and noticed things like...</p> <pre><code>&lt;script type="text/javascript"&gt; //&lt;![CDATA[ Droppables.add(...); //]]&gt; &lt;/script&gt; </code></pre> <p>Sprinkled around the HTML, which of course matches up with places where I use:</p> <pre><code>&lt;%= drop_receiving_element ... %&gt; </code></pre> <p>What I'm wondering is... is there a better way to do this, or make it cleaner? Some of these script tags are coming from partials so putting them at the 'bottom of the page' doesn't really help in this situation.</p> <p>Another option may be pushing all these 'tag blocks' into an array then writing them out in the <strong>application.rhtml</strong> file, but its still a bit messy...</p> http://stackoverflow.com/questions/699492/using-google-gears-with-rails/1210374#1210374 0 Answer by Matthew Savage for Using Google Gears with Rails Matthew Savage 2009-07-31T02:23:55Z 2009-07-31T02:23:55Z <p>I am looking into this myself - generally the idea is that depending on what you want to make available offline you need to setup on the client side (note, this is untested, and hence unverified - I'm just going from my understanding of what I have read - although I am planning on doing some experimentation in the next few weeks...)</p> <p>In most situations I would recommend setting up standard restful resources with Rails, and then in your client library do something like the following:</p> <ol> <li>When the page is loaded, determine if Gears has loaded, and if your database is available on the client.</li> <li>Create the database if necessary.</li> <li>Using the worker process, intialize a call into your RESTful controller to obtain the data you need - and on the return of the data write it into the local database (using the worker process will allow for a 'multi threaded' experience and make sure you dont lock up the client.</li> <li>Periodically poll the remote server checking for changes in the data - if needed pull down a fresh set and reload the local data cache.</li> <li>When the client is offline switch to using the local client database.</li> </ol> <p>Obviously this is a read-only example, and relies on the existing architecture using AJAX client side calls to populate data in the page etc.</p> <p>Your means might vary, but I recommend just having a play around - remember you don't <em>have</em> to use Rails plugins etc to do this - you can just roll the client side script by yourself - and you never know, once your done you might be able to refactor your work out into a great little gem or similar...</p> http://stackoverflow.com/questions/1123402/grouping-fields-in-asp-net-mvc 2 Grouping fields in ASP.NET MVC Matthew Savage 2009-07-14T04:16:16Z 2009-07-14T04:28:54Z <p>I am working on an ASP.NET MVC application which has a model for a business, linked to another model (business trading hours) in a one-to-many relationship.</p> <p>When creating this entity we have a form where we would like to provide a fixed set of the BusinessTradingHours entities, so I have used something like the following (kind of what I am used to with Rails):</p> <pre><code>&lt;!-- for Monday --&gt; &lt;select id="TradingHours[1][OpenHours]" name="TradingHours[1][OpenHours]"&gt;&lt;option&gt;06:00&lt;/option&gt;&lt;/select&gt; &lt;select id="TradingHours[1][CloseHours]" name="TradingHours[1][CloseHours]"&gt;&lt;option&gt;06:00&lt;/option&gt;&lt;/select&gt; &lt;input id="TradingHours[1][IsClosed]" name="TradingHours[1][IsClosed]" type="checkbox" value="true" /&gt; &lt;!-- for Tuesday --&gt; &lt;select id="TradingHours[2][OpenHours]" name="TradingHours[2][OpenHours]"&gt;&lt;option&gt;06:00&lt;/option&gt;&lt;/select&gt; &lt;select id="TradingHours[2][CloseHours]" name="TradingHours[2][CloseHours]"&gt;&lt;option&gt;06:00&lt;/option&gt;&lt;/select&gt; &lt;input id="TradingHours[2][IsClosed]" name="TradingHours[2][IsClosed]" type="checkbox" value="true" /&gt; </code></pre> <p>From my experience in Rails (which I know is not the same...) I would kind of expect to be able to do something like <code>var tradingHours = Request.Form["TradingHours"];</code> which would give me an Array, which I could then iterate over... is this possible?</p> <p>Otherwise, how else would this be accomplished?</p> http://stackoverflow.com/questions/771134/manipulating-a-thread-from-a-different-thread/771140#771140 1 Answer by Matthew Savage for Manipulating a thread from a different thread Matthew Savage 2009-04-21T05:21:36Z 2009-04-21T05:21:36Z <p>If you want to kill off a thread you have started yourself I would suggest holding a reference to it, such as a private field. When the application (or thread) is finishing off you can simply call <code>Thread.Abort()</code> on that thread.</p> <p>For example:</p> <pre><code>private Thread _myWorker; void doSomething() { _myWorker = new Thread(...); _myWorker.Start(); } void killWorker() { _myWorker.Abort() } </code></pre> <p>You should note that then you call <code>Abort()</code> on the thread it will raise a ThreadAbortException which you should catch within your worker code and handle to cleanup etc. For more details see <a href="http://msdn.microsoft.com/en-us/library/ty8d3wta.aspx" rel="nofollow">Thread.Abort</a></p> <p>Additionally when your application shuts down its main thread (the message loop, aka Application.Run) the child threads will also be shut down.</p> http://stackoverflow.com/questions/680200/application-log-aggregation-management-and-notifications 5 Application log aggregation, management and notifications... Matthew Savage 2009-03-25T04:17:36Z 2009-04-15T18:51:43Z <p>I'm wondering what everyone is using for logging, log management and log aggregation on their systems.</p> <p>I am working in a company which uses .NET for all it's applications and all systems are Windows based. Currently each application looks after its own logging and notifications of failures (e.g. if app A fails it will send out its own 'call for help' to an admin).</p> <p>While this current practice works its a bit hacky and hard to manage. I've been trying to find some options for making this work better and I've come up with the following:</p> <ul> <li>log4net &amp; Chainsaw (ah, if it works).</li> <li>Logging via log4net or another framework into a central database &amp; rolling our own management tool.</li> <li>Logging to the Windows event log and using MOM or System Center Operations Manager to aggregate and manage each of these servers &amp; their apps.</li> <li>A hand-rolled solution to suck all the log files into one point and work some magic across them.</li> </ul> <p>Essentially what we are after is something which can pull log entries all together and allow for some analytics to be run across them, plus use a kind of event based system to, for example, send out a warning email when there have been 30+ warning level logs for an application in the last <code>x</code> minutes.</p> <p>So is there anything I've missed, or something someone else can suggest?</p> http://stackoverflow.com/questions/660531/msi-does-not-install-all-files-when-removepreviousversion-is-run 1 MSI does not install all files when RemovePreviousVersion is run Matthew Savage 2009-03-18T23:45:57Z 2009-04-14T14:46:08Z <p>I have a MSI build using WiX version 3.</p> <p>All previous installers for the product we are deploying worked fine with the configuration specified (that is: if previous version exists, remove, then install the new version) - however, the new MSIs we build don't install all files when it runs through the 'remove first' path.</p> <p>If we manually remove the existing installation and then run the new version all the files are installed - and when I examine the MSI file in Orca the files and features are shown and seem to be fine.</p> <p>We have tried running with verbose and extra logging turned on (<code>/l*vx</code>) however all we can see if that the files are not being registered &amp; then installed.</p> <p>Any thoughts or suggestions? This is driving us up the wall.</p> http://stackoverflow.com/questions/732400/table-design/732471#732471 0 Answer by Matthew Savage for Table design Matthew Savage 2009-04-09T01:31:55Z 2009-04-09T01:31:55Z <p>Are you perhaps normalizing too far?</p> <p>While you are reducing the cost of data being repeated you are possibly negating it by requiring 3 or 4 joins to get a whole address...</p> <p>Personally I would stick to:</p> <p>ADDRESS:</p> <ul> <li>ID</li> <li>Street Address (e.g. 123 Joe Street)</li> <li>City</li> <li>State</li> <li>Postcode (ZIP)</li> <li>Country (e.g. US or AU)</li> </ul> <p>Of course you would have to index on things such as city/state/postcode/country, but it would possibly be a lot quicker then joining on multiple tables.</p> <p>(Note: I'm not a DBA, so I can't back up my claims, but this is what I use and it works fine)</p> http://stackoverflow.com/questions/660531/msi-does-not-install-all-files-when-removepreviousversion-is-run/661092#661092 0 Answer by Matthew Savage for MSI does not install all files when RemovePreviousVersion is run Matthew Savage 2009-03-19T04:46:08Z 2009-03-19T04:46:08Z <p>OK, well talking to someone else where I am helped me find a solution to the problem.</p> <p>We added the property <code>REINSTALLMODE</code> and set it to <code>amus</code>. What does this mean?</p> <p>By default the property is set to <code>omus</code> which means: Reinstall if the file is missing or older, rewrite registry for machine and user hives, reinstall shortcuts. Changing this to <code>amus</code> basically says: Reinstall all files.</p> <p>So, not 100% sure what the cause was - I suspect there may have been strange locks or something, but setting to <code>amus</code> doesn't being on any adverse effects, so we'll stick with that.</p> <p>Thanks for the suggestions.</p> <p>(Also, more details on this property can be found here: <a href="http://msdn.microsoft.com/en-us/library/aa371182%28VS.85%29.aspx" rel="nofollow" title="MSDN: REINSTALLMODE Property">MSDN: REINSTALLMODE Property</a></p> http://stackoverflow.com/questions/107794/importing-exporting-history-in-team-system/608896#608896 0 Answer by Matthew Savage for Importing/exporting history in Team System Matthew Savage 2009-03-04T01:12:32Z 2009-03-04T01:12:32Z <p>I don't know if you are still interested, but I just went through this with my current employer (my project was using SVN and they wanted to migrate it into TFS at another site).</p> <p>These are the following steps I used:</p> <ol> <li>Run svndump on your current repo, and take the file to the intended target</li> <li>Using a svn server (e.g. a local repository) import the file - for this I used <a href="http://www.visualsvn.com/server/download/" rel="nofollow">VisualSVN Server</a>.</li> <li>Checkout the SVN repository to a local directory (e.g. <code>svn co &lt;url&gt; Proj_SVN</code>)</li> <li>Run <a href="http://svnbridge.codeplex.com/" rel="nofollow">SvnBridge</a> (from CodePlex) on the same machine</li> <li>Checkout the TFS repository to a local directory (e.g. <code>svn co http:// localhost:8080/&lt;tfs_server&gt;/&lt;project_repo_path&gt; Proj_TFS</code>)</li> <li>Using <a href="http://svn2svn.codeplex.com/" rel="nofollow">Svn2Svn</a> (from codeplex) I run the following: <code>svn2svn /s:c:\temp\src\Proj_SVN /d:c:\temp\src\Proj_TFS /r:&lt;start_rev&gt;:&lt;end_rev&gt;</code></li> </ol> <p>Depending on how many revisions, how much data you have and the speed of your network (e.g. it might be faster to run on the TFS server) it could take from 10 minutes onwards to complete each revision.</p> <p>Anyway this is what I used and it worked for me (painful process though...) - your means might vary.</p> http://stackoverflow.com/questions/505611/binary-deserialization-with-different-assembly-version 4 Binary Deserialization with different assembly version Matthew Savage 2009-02-03T00:33:57Z 2009-02-03T20:38:48Z <p>I have a project which uses BinaryFormatter to serialize a collection of structs with string and bool? datatypes.</p> <p>The serialization/deserialization works fine, however if I were to change the assembly which does the work it fails to deserialize because of the header in the binary file indicating that it requires <code>Assembly x</code> instead of <code>Assembly y</code> to handle the data.</p> <p>Is it possible to setup the serialization/deserialization to be assembly agnostic?</p> http://stackoverflow.com/questions/500141/webcontrols-for-ruby-on-rails 1 'WebControls' for Ruby on Rails Matthew Savage 2009-02-01T03:42:39Z 2009-02-02T09:17:11Z <p>I've recently started working with RoR for some projects and I quite like the framework - however coming from an ASP.NET background I'm quite fond of the idea of being able to purchase &amp; drop in reusable components/control such as those from telerik, without having to 'reinvent'.</p> <p>I suppose it would be possible to maybe create my own using partials or plugins or similar, but I'm wondering if there is anything out there already, or perhaps alternatives which could be massaged into place, like javascript widgets etc?</p> http://stackoverflow.com/questions/406133/execute-process-as-normal-user-from-msi-wix-under-different-context/437790#437790 0 Answer by Matthew Savage for Execute process as normal user from MSI (wix) under different context Matthew Savage 2009-01-13T02:33:32Z 2009-01-13T02:33:32Z <p>Unfortunately it would seem this isn't possible - I suppose it might be an option to write an extension for the MSI which does what I need in code some how - although it seems like a lot of work for a little reward.</p> <p>What we've decided to do is use SMS to send out a chained package - the primary one which executes our application, which first depends on the installer being run.</p> <p>Hope this helps someone else :)</p> http://stackoverflow.com/questions/406133/execute-process-as-normal-user-from-msi-wix-under-different-context 1 Execute process as normal user from MSI (wix) under different context Matthew Savage 2009-01-02T05:48:46Z 2009-01-13T02:33:32Z <p>I'm trying to configure an installer for some software we use within the company.</p> <p>The installer is pushed out to target machines via SMS, and it performs the following steps:</p> <ol> <li>Terminate any currently running instances of the app (the app is a utility, so this isn't an impact on the user).</li> <li>Remove the previous version.</li> <li>Install the updated version.</li> </ol> <p>What we want it to do is launch the installed executable (as the currently logged in user, not the system account which the SMS job runs as) once step 3 is completed.</p> <p>I've tried adding a custom action as follows:</p> <pre><code>&lt;CustomAction Id="Relaunch" Impersonate="yes" Return="asyncNoWait" FileKey="AppExeFile" Execute="commit" ExeCommand="acm" /&gt; </code></pre> <p>And in the <code>InstallExecuteSequence</code> element I have the following:</p> <pre><code>&lt;Custom Action="Relaunch" OnExit="success" /&gt; </code></pre> <p>However when we try this, either as a SMS job or executing as an administrator nothing happens (e.g. the app isn't relaunched).</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/410579/binding-for-wpf-styles 2 Binding for WPF Styles Matthew Savage 2009-01-04T06:47:53Z 2009-01-04T08:45:18Z <p>I'm trying to create a custom control - a button - which will have multiple styles applied to it depending on the value of a property within the data context.</p> <p>What I was thinking is using something similar to:</p> <pre><code>&lt;Button Style="{Binding Path=ButtonStyleProperty, Converter={StaticResource styleConverter}}" Text="{Binding Path=TextProp}" /&gt; </code></pre> <p>And in code... Implement an IValueConverter which does something similar to the code below in the <code>ConvertTo</code> method:</p> <pre><code>switch(value as ValueEnums) { case ValueEnums.Enum1: FindResource("Enum1ButtonStyle") as Style; break; ... and so on. } </code></pre> <p>However I'm not entirely sure about how to pull out the style object and even if this is possible at all...</p> <p>What I am doing in the mean time is handling the <code>DataContextChanged</code> event, then attaching a handler to the <code>PropertyChanged</code> event of the object being bound to the button - then running the switch statement in there.</p> <p>Its not quite perfect but until I can find a better solution it seems like that is what I'll have to use.</p> http://stackoverflow.com/questions/373366/c-object-initializers-and-v2-0-compiler-error 0 C# Object Initializers and v2.0 compiler error Matthew Savage 2008-12-17T01:07:23Z 2008-12-30T13:08:06Z <p>I'm having an issue setting up one of my projects in TeamCity (v4.0), specifically when it comes to using Object Initializers.</p> <p>The project builds fine normally, however it would seem that TeamCity transforms the build file into something it likes (some MSBuild mutation) and when it comes to compiling the code for a part of the solution it balks when it sees an Object Initializer.</p> <p>Specifically the errors are:</p> <pre><code>[11:16:21]: ErrorView.xaml.cs(22, 187): error CS1026: ) expected [11:16:21]: ErrorView.xaml.cs(22, 208): error CS0116: A namespace does not directly contain members such as fields or methods [11:16:21]: ErrorView.xaml.cs(27, 16): error CS1518: Expected class, delegate, enum, interface, or struct [11:16:21]: ErrorView.xaml.cs(35, 16): error CS1518: Expected class, delegate, enum, interface, or struct [11:16:21]: ErrorView.xaml.cs(46, 91): error CS1031: Type expected [11:16:21]: ErrorView.xaml.cs(46, 119): error CS0116: A namespace does not directly contain members such as fields or methods [11:16:21]: ErrorView.xaml.cs(48, 17): error CS1022: Type or namespace definition, or end-of-file expected </code></pre> <p>When I look into this further it would seem the problem ties back to the transformation of the build file to TeamCity format using CSC from the v2.0 framework directory.</p> <p>Is it possible to compile code using object initializers (a .NET 3.0 feature) with the .NET 2.0 compiler (I would assume not, though I may be missing something), and if not, does anyone know a way to force it to use the 3.0 compiler (if one exists) or the 3.5 compiler?</p> <p>For those interested, the CSC command being executed is:</p> <pre><code>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1701,1702 /errorreport:prompt /warn:4 /define:DEBUG;TRACE /reference:..\..\..\build\blah.Logging.dll /reference:..\..\..\build\blah.Presentation.Interfaces.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.dll /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationCore.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFramework.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFramework.Luna.dll" /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Design.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll /reference:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\UIAutomationProvider.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\WindowsBase.dll" /debug+ /debug:full /filealign:512 /keyfile:..\..\..\resources\blah.snk /optimize- /out:obj\Debug\blah.dll /resource:obj\Debug\blah.UserInterface.Properties.Resources.resources /resource:obj\Debug\blah.UserInterface.blah.exe.license /target:library /win32icon:blah.ico SignalStrengthIndicator.xaml.cs TrayNotifier.xaml.cs ConnectedView.xaml.cs ConnectionProgressView.xaml.cs NetworkPasswordView.xaml.cs TrayProgress.xaml.cs NetworkConnectionView.xaml.cs ClassFiles\NetworkTypeConverter.cs ClassFiles\SecurityImageConverter.cs ClassFiles\SecurityTooltipConverter.cs ClassFiles\SignalStrengthTooltipConverter.cs ClassFiles\SignalVisibilityConverter.cs ClassFiles\SynchronizedObservableCollection.cs ConnectionOption.xaml.cs DisconnectionProgressView.xaml.cs ErrorView.xaml.cs ..\..\..\config\assemblyversion.cs Properties\Resources.Designer.cs Properties\Settings.Designer.cs </code></pre> <p>Thanks!</p> <p>Update: I have partially (read: I'm not happy with it) fixed the problem by changing the build runner from Nant to command runner - this just executed the Nant build file as it was intended without any manipulation, though the feedback level is different. Any other suggestions would be appreciated.</p> http://stackoverflow.com/questions/399222/i-still-dont-get-delegates/399239#399239 5 Answer by Matthew Savage for I still don't get Delegates Matthew Savage 2008-12-30T00:46:15Z 2008-12-30T00:46:15Z <p>As mentioned by Joel - BeginInvoke() will execute the delegate Asynchronously - and you will need to setup an Async callback to retrieve the return value if the target returns data (using EndInvoke).</p> <p>The following link is a good article on using Delegates for Async Programming: <a href="http://msdn.microsoft.com/en-us/library/2e08f6yc.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/2e08f6yc.aspx</a></p> <p>Also (this is in C# - sorry) you can handle the callback using lambda expressions:</p> <pre><code>Action myAction = () =&gt; Console.WriteLine("This is an async call!"); myAction.BeginInvoke(asyncResult =&gt; Console.WriteLine("Async Done!"), null); </code></pre> http://stackoverflow.com/questions/342543/gui-locking-up-when-using-printdialog-and-printpreviewdialog-in-net/373428#373428 1 Answer by Matthew Savage for GUI Locking up when using PrintDialog and PrintPreviewDialog in .net Matthew Savage 2008-12-17T01:52:30Z 2008-12-17T01:52:30Z <p>Another option would be spinning up a new UI thread:</p> <pre><code>ThreadStart ts = () =&gt; { printDocument.Print(); // Start the message loop to prevent the thread from finishing straight away. System.Windows.Forms.Application.Run(); }; Thread t = new Thread(ts); t.SetApartmentState(ApartmentState.STA); t.Start(); </code></pre> <p>Keep in mind this code isn't tested and may need some tuning (especially the message loop part) - and you might also want to keep in mind you will need to shut down the thread at some time - so perhaps you might want a class to handle the interaction and lifetime management.</p> http://stackoverflow.com/questions/303916/ioc-and-user-interfaces 0 IoC and User Interfaces Matthew Savage 2008-11-20T00:09:33Z 2008-11-20T17:46:15Z <p>I'm trying to wrap my head around the best way to use IoC within my application for dependency injection, however I have a little issue.</p> <p>I am using a loose implementation of the MVP pattern with a WPF app. Essentially, a presenter class is instantiated, and a view and task (e.g. IEmployeeView and IEmployeeTask for EmployeePresenter) are injected into the presenter.</p> <p>I would like to use an IoC container (I'm trying out Unity, though I guess this would also happen with others such as ninject or Structure Map) instead of manually injecting these instances, however if the presenter is created (or resolved from an IoC container) on an async delegate call, or an event thread (e.g. not STA threaded) then creating a new instance of a WPF window throws the following exception:</p> <blockquote> <p>The current build operation (build key Build Key[<em>namespace</em>.Window1, null]) failed: The calling thread must be STA, because many UI components require this.</p> </blockquote> <p>Now, I know that new window instances etc need to be STA, however is it possible to use an IoC Container to do the dependency injection even when the UI must be created on an STA thread?</p> <p>From looking at this problem it would seem that the class/type being resolved is instantiated at the resolve time, not when its registered...</p> http://stackoverflow.com/questions/276906/does-compositewpf-support-multiple-windows-shells 1 Does CompositeWPF support multiple windows/shells? Matthew Savage 2008-11-10T02:24:58Z 2008-11-18T17:41:23Z <p>I'm looking at using CompositeWPF (<a href="http://www.codeplex.com/CompositeWPF" rel="nofollow">http://www.codeplex.com/CompositeWPF</a>) - aka Prism, to build an application I am working on.</p> <p>The application isn't a traditional LOB application, however it does present data and state information to the user.</p> <p>One thing which I am unsure of is if CompositeWPF supports more than one Window or Shell. I would like to have my application notify users with a border-less window which appears in the lower RHS of the screen (think MSN notification) but still use the idea of views being injected into the region etc.</p> <p>In addition to this I would like to be able to react to a user action (e.g. double click on something), hide the main window and present a progress dialog while work is being performed.</p> <p>So, is this possible?</p> http://stackoverflow.com/questions/264163/wpf-dispatcher-invoke-hanging 3 WPF Dispatcher.Invoke 'hanging' Matthew Savage 2008-11-05T02:01:54Z 2008-11-10T23:58:19Z <p>I have a somewhat complex WPF application which seems to be 'hanging' or getting stuck in a Wait call when trying to use the dispatcher to invoke a call on the UI thread.</p> <p>The general process is:</p> <ol> <li>Handle the click event on a button</li> <li>Create a new thread (STA) which: creates a new instance of the presenter and UI, then calls the method <strong>Disconnect</strong></li> <li>Disconnect then sets a property on the UI called <strong>Name</strong></li> <li>The setter for Name then uses the following code to set the property:</li> </ol> <pre><code> if(this.Dispatcher.Thread != Thread.CurrentThread) { this.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate{ this.Name = value; // Call same setter, but on the UI thread }); return; } SetValue(nameProperty, value); // I have also tried a member variable and setting the textbox.text property directly. </code></pre> <p>My problem is that when the dispatcher <strong>invoke</strong> method is called it seems to hang every single time, and the callstack indicates that its in a sleep, wait or join within the Invoke implementation.</p> <p>So, is there something I am doing wrong which I am missing, obvious or not, or is there a better way of calling across to the UI thread to set this property (and others)?</p> <p><strong>Edit:</strong> The solution was to call System.Windows.Threading.Dispatcher.Run() at the end of the thread delegate (e.g. where the work was being performed) - Thanks to all who helped.</p> http://stackoverflow.com/questions/267215/to-azure-or-not-to-azure/267317#267317 1 Answer by Matthew Savage for To Azure or Not to Azure? Matthew Savage 2008-11-06T00:45:38Z 2008-11-06T00:45:38Z <p>I'm still not entirely convinced with Azure yet, the concept is somewhat sound but until we know how much it will cost, the reliability, service guarantees etc I wouldn't quite jump ship to it.</p> <p>As ARKBAN said, its still a tech preview, so perhaps in a few months you'll be able to re-evaluate and decide then.</p> <p>If your looking for something to host a .NET based 'service' you could keep a watch on EC2 because they're brining in a Windows Server option (<a href="http://aws.amazon.com/windows/" rel="nofollow">http://aws.amazon.com/windows/</a>) which might be a viable option to having 'scalable' services (however I imagine it would be somewhat more manual then Azure)</p> http://stackoverflow.com/questions/252309/when-should-i-tell-my-boss-that-im-thinking-about-looking-for-another-job/252636#252636 3 Answer by Matthew Savage for When should I tell my boss that I'm thinking about looking for another job? Matthew Savage 2008-10-31T05:02:39Z 2008-10-31T05:02:39Z <p>I wouldn't be concerned about using your boss as a reference. In my experience most places only contact your references <em>after</em> you have interviewed with them and they are:</p> <ul> <li>looking to decide which candidate too choose (e.g. you are tied with someone else)</li> <li>about to give you an offer but would like to verify your abilities etc</li> <li>are concerned about the salary you are asking and want to make sure you are worth it.</li> </ul> <p>For every job I have ever applied for I have provided <strong>References available upon request</strong> in place of contact details.</p> <p>This has 2 benefits - you know how closely they are looking at your application, and you know when they are about to contact your references.</p> <p>So, coming back to the original question, don't sweat telling him, use the above advise, if you get offered a position, then talk to him about it.</p> http://stackoverflow.com/questions/437808/scripting-engine-host-for-applications/1855431#1855431 Comment by Matthew Savage on Scripting engine host for applications Matthew Savage 2009-12-07T02:16:49Z 2009-12-07T02:16:49Z Thanks for the suggestion, however due to environment constraints (COE, Windows XP etc) we were unable to use PS, mainly because PS wasn't part of the base OS build and installing that dependency would be a huge pain for the platform guys. The scripts also were not actually for the UI, they were to be for 'admin' type staff to write tasks in which would then be executed on standard users machines... think logon script, but not... http://stackoverflow.com/questions/1557060/pointers-for-data-returned-by-delegate-methods-in-macruby/1633270#1633270 Comment by Matthew Savage on Pointers for data returned by delegate methods in MacRuby Matthew Savage 2009-11-06T12:00:01Z 2009-11-06T12:00:01Z This seems promising.. I cant remember if I tried this myself, but from memory I was actually returning a new NSDictionary... I'll have to dig up the code and give it a try... thanks! http://stackoverflow.com/questions/1620729/is-there-a-better-developer-toolbar-for-ie8/1620985#1620985 Comment by Matthew Savage on Is there a better developer toolbar for IE8? Matthew Savage 2009-10-25T15:16:23Z 2009-10-25T15:16:23Z Thanks - this, I think, is what I was after (debug bar) - unfortunately it doesn't seem to play nicely with the latest version of IE8 (maybe this is just me, but the source view doesn't get past the HEAD tags...) Oh well! http://stackoverflow.com/questions/1303671/overriding-rails-mislav-willpaginate-plugin/1325422#1325422 Comment by Matthew Savage on Overriding Rails mislav-will_paginate plugin Matthew Savage 2009-09-29T13:02:18Z 2009-09-29T13:02:18Z Why not make this a plugin which extends will_paginate, or fork/branch will_paginate to include this support and submit a pull-request? http://stackoverflow.com/questions/1271788/session-variables-with-cucumber-stories/1275231#1275231 Comment by Matthew Savage on Session variables with Cucumber Stories Matthew Savage 2009-08-14T10:21:20Z 2009-08-14T10:21:20Z Thanks for the input... I've updated my question with some more details, but what you have suggested doesn't really help as it would involve adding functionality specifically for the tests, which to me seems like more of an 'anti-pattern' - but, would stubbing out controller methods break this rule? http://stackoverflow.com/questions/1123402/grouping-fields-in-asp-net-mvc/1123419#1123419 Comment by Matthew Savage on Grouping fields in ASP.NET MVC Matthew Savage 2009-07-14T05:17:29Z 2009-07-14T05:17:29Z OMG why didn't I see/remember this... I read Scott's blog like.. religiously... thanks for pointing it out :) http://stackoverflow.com/questions/1123402/grouping-fields-in-asp-net-mvc/1123424#1123424 Comment by Matthew Savage on Grouping fields in ASP.NET MVC Matthew Savage 2009-07-14T04:30:43Z 2009-07-14T04:30:43Z I think your confused with ASP.NET WebForms and ASP.NET MVC (Which is what I am using) - MVC doesn't have the page/control model with code behind like WebForms does... http://stackoverflow.com/questions/771134/manipulating-a-thread-from-a-different-thread/771147#771147 Comment by Matthew Savage on Manipulating a thread from a different thread Matthew Savage 2009-04-21T06:21:26Z 2009-04-21T06:21:26Z This is quite subjective - if your threads are for a single unit of work then calling Thread.Abort() shouldn't leave it in a dirty state (provided you handle the abort properly). If you have a thread which is then calling out to lot of other methods then it gets messier. Its really a case of looking at what you are doing and determining the best approach. http://stackoverflow.com/questions/660531/msi-does-not-install-all-files-when-removepreviousversion-is-run/747956#747956 Comment by Matthew Savage on MSI does not install all files when RemovePreviousVersion is run Matthew Savage 2009-04-20T04:52:42Z 2009-04-20T04:52:42Z Thanks for the additional info :) http://stackoverflow.com/questions/660531/msi-does-not-install-all-files-when-removepreviousversion-is-run Comment by Matthew Savage on MSI does not install all files when RemovePreviousVersion is run Matthew Savage 2009-03-19T02:51:03Z 2009-03-19T02:51:03Z @Rob Sanders - none of the files are locked (from what I can see). Before the uninstall is run a process is kicked off to kill the running app. http://stackoverflow.com/questions/660531/msi-does-not-install-all-files-when-removepreviousversion-is-run/660573#660573 Comment by Matthew Savage on MSI does not install all files when RemovePreviousVersion is run Matthew Savage 2009-03-19T02:47:02Z 2009-03-19T02:47:02Z Thanks for the input - Mine is also set to After=&quot;InstallInitialize&quot; - so I'm still at a loss for what the cause of this problem is :| http://stackoverflow.com/questions/390564/should-i-learn-rails-or-merb/391619#391619 Comment by Matthew Savage on Should I learn Rails or Merb? Matthew Savage 2009-02-28T02:57:26Z 2009-02-28T02:57:26Z I also recommend looking at Peepcode - and envy casts (though these are a little weird..) - its a pay-for product, but their screen casts are really top notch. http://stackoverflow.com/questions/543790/rails-inline-javascript-and-best-practices/543822#543822 Comment by Matthew Savage on Rails inline Javascript and Best Practices Matthew Savage 2009-02-12T22:53:20Z 2009-02-12T22:53:20Z I realize this is the best practice in general, but I'm wondering about this from a Rails perspective. A lot of rails apps I have seen make use of these script generators which seem to just output script blocks where ever they are called... http://stackoverflow.com/questions/357076/best-way-to-hide-a-window-from-the-alt-tab-program-switcher/357598#357598 Comment by Matthew Savage on Best way to hide a window from the Alt-Tab program switcher? Matthew Savage 2009-02-08T01:35:49Z 2009-02-08T01:35:49Z While this seems unclean, it works :) http://stackoverflow.com/questions/505611/binary-deserialization-with-different-assembly-version/508827#508827 Comment by Matthew Savage on Binary Deserialization with different assembly version Matthew Savage 2009-02-05T23:41:13Z 2009-02-05T23:41:13Z One thing you'll need to be aware of is that if you have nested types (e.g. a custom collection of custom objects) you'll need to be loading multiple assemblies... try stepping through the overloaded BindToType method.