User rob_g - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T21:48:38Z http://stackoverflow.com/feeds/user/5691 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1824516/books-for-an-aspiring-software-architect/1824669#1824669 0 Answer by rob_g for Books for an aspiring software architect. rob_g 2009-12-01T08:04:35Z 2009-12-01T08:04:35Z <p>(Looking at my bookshelf) </p> <ul> <li><p>Microsoft .NET: Architecting Applications for the Enterpise PoEAA</p> <p>Patterns of Enterprise Application Architecture </p> <p>ASP.NET Enterprise App Developement (Ok book but not as good as the above two) </p> <p>.NET Driven Design with C# </p> <p>Professional Refactoring C# and ASP.NET (not really an architectural book, and in my experience I found it a little bit junior, but it's a good read anyway).</p></li> </ul> <p>There's also the usual patterns books, but they're more developer oriented, so you're probably already beyond that.</p> http://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-job/1824650#1824650 0 Answer by rob_g for How to help a struggling newbie do a better job? rob_g 2009-12-01T07:59:42Z 2009-12-01T07:59:42Z <p>I've got a similar issue at my work at the moment. I'm doing the following</p> <ol> <li>Emailing him links to useful online videos (eg Google's clean code).</li> <li>Peer reviewing everything he does.</li> <li>I've recently started making sure he's commenting methods and classes with what their responsibilities are prior to starting to code, to help him think about what it is he's trying to do, and to ensure each method and class only has the one responsibility.</li> <li>Offering him books to read (eg Code Complete sitting on my shelf)</li> <li>Offering complements and not putting him down, and where I need to point out how something is wrong, being constructive. We were all young and experienced once...</li> </ol> http://stackoverflow.com/questions/1824600/sql-auto-increment-question/1824622#1824622 0 Answer by rob_g for SQL: Auto Increment question rob_g 2009-12-01T07:50:48Z 2009-12-01T07:50:48Z <p>not sure if this will help, but in sql server you can reseed the identity fields. It seems there's an ALTER TABLE statement in mySql to acheive this. Eg to set the id to continue at 59446.</p> <pre><code>ALTER TABLE table_name AUTO_INCREMENT = 59446; </code></pre> <p>I'm thinking you should be able to combine a query to get the largest value of auto_increment field, and then use the alter table to update as needed.</p> http://stackoverflow.com/questions/1777158/instantiating-transactionscope-returns-null 0 Instantiating TransactionScope returns null rob_g 2009-11-21T23:37:45Z 2009-11-22T01:52:42Z <p>I have some VB.NET code that creates a TransactionScope instance:</p> <pre><code>LoggingUtility.LogDebug("UpdateCallTable", "SatComCallDataImporter", "About to associate call data with contracts") Using ts = New TransactionScope() LoggingUtility.LogDebug("UpdateCallTable", "SatComCallDataImporter", "Getting all unimported SatCom calls") </code></pre> <p>My application is throwing an exception on the call to the creation of a new TransactionScope, with "Object reference not set to an instance of an object.". The exception isn't thrown on my development machine or my test machine; only on the customers production machine, and I have no idea why. I've placed debug lines immediately before and after this line so I'm positive it is this line causing the problem.</p> <p>A have used TransactionScopes throughout the application and this is the only place throwing the exception on the client machine.</p> <p>"About to associate call data with contracts" gets written to the log and the next log entry is the "Object reference not set to an instance of an object".</p> <p>Code works fine if I move it out of a transaction.</p> <p>I've been struggling with this for 4 days now and have got no closer. </p> http://stackoverflow.com/questions/1726446/how-much-designing-should-go-on-before-any-coding-takes-place/1726951#1726951 0 Answer by rob_g for How Much Designing Should Go On Before Any Coding Takes Place? rob_g 2009-11-13T03:29:58Z 2009-11-13T03:29:58Z <p>It depends on the particular project and the particular customer. Some people need to be able to visualise a system to be able to understand it and what they want from it. Other times, you may be designing a system where the customer presents you with an inch thing requirements specification, for a system where the quality processes must be higher. Also, some customer require formal agreement to a list of requirements. </p> <p>In the cases where the customer is unclear on requirements, an agile methodology is more suited. This way the developer can quickly implement new features and get feedback from the customer, reducing the probability of deliverying something not wanted. This contrasts to trying to establish a list of set requirements and only building what has been agreed on contractually, only to deliver something that isnt' accepted by the customer.</p> <p>My company has recently hired two new developers both of whom have had many years in the software development industry, but never worked at a company where requirements where written, or design documents produced, or a set SDLC of any kind followed; the typical shop where the developer is given a piece of paper with some requirements and told to "build this". Once both were forced to sit down and iteratively complete design documents (more for their own learning than anything else) they both came to me saying how much more beneficial an upfront design has been in realising thing they would never have thought about until the application was well and truely implemented (badly). Shortly after, they started writting Unit Tests upfront (before implementation) and while for the first few weeks, found it very strange and saw it as a waste of time, each day they come to me and espouse how much more they'd learnt and beneficial unit tests are.</p> <p>Rushing straight in to coding the actual implementation (as opposed to tests) is a rookie mistake that we've probably all made.</p> http://stackoverflow.com/questions/1563648/visual-studio-development-server-not-updating-css-and-javascript 0 Visual Studio Development Server not updating css and javascript? rob_g 2009-10-14T00:13:23Z 2009-10-14T00:17:48Z <p>I've recently returned to a web site project that has been on the backburner. Since recommencing work I've noticed css and javascript changes aren't being recognised by the application when it's running in Visual Studio Development Server. This previously worked fine. I could change stylesheets and javascript and run the app and test. Now the only way I can test the application is to publish it to my local IIS server (though I believe restarting my pc also fixes the problem).</p> <p>Using Visual Studio 2008 (9.0.30729.1)</p> <p>The things that have changed since I am certain it was working correctly is the operating system, from Vista x64 Home Premium Edition to Win 7 x64 Ultimate and I've moved the project source from c: to d:. Though I moved back to C: with the same negative results. I've also moved some functionality out in seperate WCF services, hosted by console apps (two service hosts) which are put into debug when the web site starts up in debug.</p> <p>Stopping the dev server does nothing. Checking out (using VSS 2005) ALL the files to ensure nothing is read only does nothing. The only thing that works is publishing to IIS or restarting my machine. Both undesirable. I'll even be satisfied if there's a process I need to terminate each time I stop debugging, to ensure not using previous copies of things.</p> <p>Any solutions?</p> http://stackoverflow.com/questions/1540917/ensuring-unique-numbers-from-a-sql-server-database 1 Ensuring unique numbers from a sql server database rob_g 2009-10-08T22:41:54Z 2009-10-08T23:27:05Z <p>I have an application that uses incident numbers (amongst other types of numbers). These numbers are stored in a table called "Number_Setup", which contains the current value of the counter. </p> <p>When the app generates a new incident, it number_setup table and gets the required number counter row (counters can be reset daily, weekly, etc and are stored as int's). It then incremenets the counter and updates the row with the new value.</p> <p>The application is multiuser (approximately 100 users at any one time, as well as sql jobs that run and grab 100's of incident records and request incident numbers for each). The incident table has some duplicate incident numbers where they should not be duplicate. </p> <p>A stored proc is used to retrieve the next counter.</p> <pre> SELECT @Counter = counter, @ShareId=share_id, @Id=id FROM Number_Setup WHERE LinkTo_ID=@LinkToId AND Counter_Type='I' IF isnull(@ShareId,0) > 0 BEGIN -- use parent counter SELECT @Counter = counter, @ID=id FROM Number_Setup WHERE Id=@ShareID END SELECT @NewCounter = @Counter + 1 UPDATE Number_Setup SET Counter = @NewCounter WHERE id=@Id </pre> <p>I've now surrounded that block with a transaction, but I'm not entirely sure it' will 100% fix the problem, as I think there's still shared locks, so the counter can be read anyway. </p> <p>Perhaps I can check that the counter hasn't been updated, in the update statement</p> <pre> UPDATE Number_Setup SET Counter = @NewCounter WHERE Counter = @Counter IF @@ERROR = 0 AND @@ROWCOUNT > 0 COMMIT TRANSACTION ELSE ROLLBACK TRANSACTION </pre> <p>I'm sure this is a common problem with invoice numbers in financial apps etc.<br /> I cannot put the logic in code either and use locking at that level. I've also locked at HOLDLOCK but I'm not sure of it's application. Should it be put on the two SELECT statements?</p> <p>How can I ensure no duplicates are created?</p> http://stackoverflow.com/questions/1528438/stopping-display-of-custom-dialog-boxes-in-wix-uninstall 1 Stopping display of custom dialog boxes in WiX uninstall rob_g 2009-10-06T22:30:26Z 2009-10-07T01:05:44Z <p>I have a WiX installer project that utilises a custom dialog box to ask for parameters to update a web.config file and run a database script on install. Everything works correctly and the application is installed and runs correctly.</p> <p>However, the custom dialog box is also displayed when I uninstall the software and it certainly doesn't need to be (as I'm not updating a web.config file). </p> <p>Is there a way to suppress the custom dialog when the application is being uninstalled? </p> <p>(I should also remove the sql procs I install, at uninstall time but that is outside of this issue).</p> http://stackoverflow.com/questions/1524079/calling-wcf-with-netmsmqbinding-inside-transactionscope-stopping-transaction 0 Calling WCF with netMsmqBinding inside TransactionScope stopping transaction. rob_g 2009-10-06T07:31:16Z 2009-10-06T08:21:41Z <p>I have a WCF logging service that runs operates over MSMQ. Items are logged to a Sql Server 2005 database. Every functions correctly if used outside a TransactionScope. When used inside a TransactionScope instance the call always causes the transaction to be aborted. Message = "The transaction has aborted".</p> <p>What do I need to do to get this call to work inside a Transaction? Is it even possible. I've read that for a client transaction to flow across a service boundary the binding must support transaction flow, which immediately limits the bindings to only NetNamedPipeBinding, NetTcpBinding, WSHttpBinding, WSDualHttpBinding and WSFederationHttpBinding.</p> http://stackoverflow.com/questions/1524079/calling-wcf-with-netmsmqbinding-inside-transactionscope-stopping-transaction/1524246#1524246 2 Answer by rob_g for Calling WCF with netMsmqBinding inside TransactionScope stopping transaction. rob_g 2009-10-06T08:15:46Z 2009-10-06T08:15:46Z <p>Sorry for the needless question...</p> <p>I have solved my problem. I needed to place [TransactionFlow(TransactionFlowOption.Allowed)] on the operation in the service contract and then [OperationBehavior(TransactionScopeRequired=true)] on the implementation of the contract (the service itself). </p> <p>Works a treat.</p> http://stackoverflow.com/questions/865987/do-i-need-to-heartbeat-to-keep-a-tcp-connection-open 3 Do I need to heartbeat to keep a TCP connection open? rob_g 2009-05-14T21:44:17Z 2009-07-21T12:10:51Z <p>I have two components that that communicate via TCP/IP. Component A acts as a server/listener and Component B is the client. The two should communicate as quickly as possible. There can only ever be one connection at any time (though that is aside to this question). A senior developer at my company has said I need to use application level heartbeats between the two components to ensure the connection stays open. </p> <p>I thought the connection stays open with TCP/IP but I've read a number of blogs/sites saying it's pretty standard practice to heartbeat between these applications. </p> <p>I know part of the reason component A heartbeats component B is so it can inform support if there are communications problems with component B (either the link is down or component B is not running). Are heartbeats needed for any other reason? Such as to ensure there is frequently something "in the pipe" to keep it open?</p> <p>Component A currently heartbeats component B every 20 seconds and closes the connection if nothing is received back from component B in 120 seconds. It then resumes listening for connections under the assumption that component B will periodically try a reconnect if the link is broken. This works successfully. </p> <p>To reiterate my question: Are heartbeats necessary to keep a TCP/IP connection alive?</p> http://stackoverflow.com/questions/886952/tech-innovation-and-products-who-should-be-the-one-to-bring-it-up/887401#887401 0 Answer by rob_g for Tech Innovation and Products - who should be the one to bring it up? rob_g 2009-05-20T11:31:58Z 2009-05-20T11:31:58Z <p>Solution Architects makes the decisions of what technologies to use to implement a solution given a set of customer requirements. They're usually the ones with the broadest knowledge about various technologies and their suitability for particular requirements. Some of the factors that may weigh in on their decision making process would be actually suitablility of the technology but they may also need to consult with the dev manager about human resoureces. Perhaps there are skills limitations within the existing team, or financial constraints that prevent or discourage the use of a particular technology.</p> http://stackoverflow.com/questions/805161/versioning-assemblies-of-distributed-application-with-hot-fixes 4 Versioning assemblies of distributed application with hot fixes rob_g 2009-04-30T02:39:31Z 2009-05-01T07:42:02Z <p>We are developing an application with components on multiple physical tiers, sharing many assemblies as well as having some exclusive to each tier. </p> <p>I am wanting to know what the typical versioning strategy is for release hot-fixes, or only a few components of the application.</p> <p>Our issue tracking software contains a version number for the entire product. If the current version is 1.4.5 and a hotfix is required, the issues for the hotfix are to be released against 1.4.6. All assemblies affected by the fixes for 1.4.6 are versioned 1.4.6. If we distributed just those files we end up with some files on version 1.4.5 and some on 1.4.6.</p> <p>A solution could be to rebuild and release the entire application as 1.4.6 but this would required multiple components on the multiple machines to be redeployed and result in unnecessary downtime of the components that didn't actually change.</p> <p>What strategies have people put in place for this issue? Is it just a matter accepting that some files will have different version numbers? In the past I have found that this causes confusion with the customers (level 1) support team.</p> http://stackoverflow.com/questions/776589/are-there-any-really-big-sites-which-use-asp-net/776610#776610 1 Answer by rob_g for Are there any really big sites which use ASP.NET? rob_g 2009-04-22T10:51:58Z 2009-04-22T10:51:58Z <p>I thought myspace run on asp.net. Doesn't get much bigger than that.</p> http://stackoverflow.com/questions/766805/how-to-convince-management-programmers-suck-at-it/766825#766825 2 Answer by rob_g for How to Convince Management Programmers Suck at IT rob_g 2009-04-20T03:50:56Z 2009-04-20T03:50:56Z <p>Try pointing out that TechEd runs a Developer stream and an IT Pro stream for a reason. That reason being they are two different tracks, with different skill sets. Maybe throwing Microsoft's name around will be enough to convince the IT dilettantes in management that developers are not the right people to be changing printer cartridges, or configuring AD domains and routers. </p> <p>Perhaps you can also start petitioning for another "Developer" on your team. Then if and when granted, give that person the IT Pro role.</p> <p>Yes it is annoying so many people associate "working with computers" to mean you can and should do everything related to computers.</p> http://stackoverflow.com/questions/539503/wcf-individual-methods-or-a-generic-processmessage-method-accepting-xml 2 WCF: Individual methods or a generic ProcessMessage method accepting xml. rob_g 2009-02-12T00:25:48Z 2009-02-17T10:25:33Z <p>My company is developing an application that receives data from another company via TCP sockets and xml messages. This is delivered to a single gateway application which then broadcasts it to multiple copies of the same internal application on various machines in our organisation.</p> <p>WCF was chosen as the technology to handle the internal communications (internally bi-directional). The developers considered two methods.</p> <ol> <li><p>Individual methods exposed by the WCF service for each different message received by the gateway application. The gateway application would parse the incoming external message and call the appropriate WCF service method. The incoming XML would be translated into DataContract DTO’s and supplied as argument to the appropriate WCF method.</p></li> <li><p>The internal application exposed a WCF service with one method “ProcessMessage” which accepted an Xml string message as argument. The internal app would parse then deserialize the received xml and process it accordingly.</p></li> </ol> <p>The lead developer thought option two was the better option as it was “easier” to serialized/deserialize the xml. I thought the argument didn’t make sense because DataContracts are serialized and deserialized by WCF and by using WCF we had better typing of our data. In option 2 someone could call the WCF service and pass in any string. I believe option 1 presents a neater interface and makes the application more maintainable and useable.</p> <p>Both options would still require parsing and validation of the original xml string at some point, so it may also be a question where is the recommended place to perform this validation.</p> <p>I was wondering what the current thoughts are for passing this kind of information and what people’s opinions on both alternatives are. </p> http://stackoverflow.com/questions/551911/how-to-explain-to-your-mom-what-an-algorithm-is/552154#552154 1 Answer by rob_g for How to explain to your mom what an algorithm is? rob_g 2009-02-16T03:26:54Z 2009-02-16T03:26:54Z <p>I would compare an algorithm to a recipe for cooking a cake. Sexist I know, but a recipe is an algorithm. </p> http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/539376#539376 0 Answer by rob_g for Where do you keep your code? rob_g 2009-02-11T23:40:17Z 2009-02-11T23:40:17Z <p>c:\source\ [mirror source control tree]</p> http://stackoverflow.com/questions/486393/is-it-possible-to-put-an-event-handler-on-a-different-thread-to-the-caller 3 Is it possible to put an event handler on a different thread to the caller? rob_g 2009-01-28T03:32:04Z 2009-02-04T10:13:44Z <p>Lets say I have a component called Tasking (that I cannot modify) which exposes a method “DoTask” that does some possibly lengthy calculations and returns the result in via an event TaskCompleted. Normally this is called in a windows form that the user closes after she gets the results.</p> <p>In my particular scenario I need to associate some data (a database record) with the data returned in TaskCompleted and use that to update the database record.</p> <p>I’ve investigated the use of AutoResetEvent to notify when the event is handled. The problem with that is AutoResetEvent.WaitOne() will block and the event handler will never get called. Normally AutoResetEvents is called be a separate thread, so I guess that means that the event handler is on the same thread as the method that calls. </p> <p>Essentially I want to turn an asynchronous call, where the results are returned via an event, into a synchronous call (ie call DoSyncTask from another class) by blocking until the event is handled and the results placed in a location accessible to both the event handler and the method that called the method that started the async call.</p> <pre><code>public class SyncTask { TaskCompletedEventArgs data; AutoResetEvent taskDone; public SyncTask() { taskDone = new AutoResetEvent(false); } public string DoSyncTask(int latitude, int longitude) { Task t = new Task(); t.Completed = new TaskCompletedEventHandler(TaskCompleted); t.DoTask(latitude, longitude); taskDone.WaitOne(); // but something more like Application.DoEvents(); in WinForms. taskDone.Reset(); return data.Street; } private void TaskCompleted(object sender, TaskCompletedEventArgs e) { data = e; taskDone.Set(); //or some other mechanism to signal to DoSyncTask that the work is complete. } } In a Windows App the following works correctly. public class SyncTask { TaskCompletedEventArgs data; public SyncTask() { taskDone = new AutoResetEvent(false); } public string DoSyncTask(int latitude, int longitude) { Task t = new Task(); t.Completed = new TaskCompletedEventHandler(TaskCompleted); t.DoTask(latitude, longitude); while (data == null) Application.DoEvents(); return data.Street; } private void TaskCompleted(object sender, TaskCompletedEventArgs e) { data = e; } } </code></pre> <p>I just need to replicate that behaviour in a window service, where Application.Run isn’t called and the ApplicationContext object isn’t available.</p> http://stackoverflow.com/questions/486393/is-it-possible-to-put-an-event-handler-on-a-different-thread-to-the-caller/493619#493619 1 Answer by rob_g for Is it possible to put an event handler on a different thread to the caller? rob_g 2009-01-29T21:54:27Z 2009-01-29T21:54:27Z <p>I worked out a solution to the async to sync problem, at least using all .NET classes.</p> <p><a href="http://geekswithblogs.net/rgray/archive/2009/01/29/turning-an-asynchronous-call-into-a-synchronous-call.aspx" rel="nofollow">http://geekswithblogs.net/rgray/archive/2009/01/29/turning-an-asynchronous-call-into-a-synchronous-call.aspx</a></p> <p>It still doesn't work with COM. I suspect because of STA threading. The Event raised by the .NET component that hosts the COM OCX is never handled by my worker thread, so I get a deadlock on WaitOne(). </p> <p>someone else may appreciate the solution though :)</p> http://stackoverflow.com/questions/475617/wrapping-an-asynchronous-method-synchronously-in-c/486305#486305 0 Answer by rob_g for Wrapping an asynchronous method synchronously in C# rob_g 2009-01-28T02:47:16Z 2009-01-28T02:47:16Z <p>I've got some more information on this problem (I'm working in the same team as mikecamimo).</p> <p>The problem also occurs in the Windows Forms application, when replicated correctly. In the original OP, the problem didn't occur in the windows form because there was no blocking. When blocking is introduced by using a ResetEvent, the same problem occurs. </p> <p>This is because the event handler (Widget_Completed) is on the same thread as the method calling Widget.DoWork. The result that AutoResetEvent.WaitOne(); blocks forever because the event handler is never called to Set the event.</p> <p>In a windows forms environment this can worked around by using Application.DoEvents to poll the message queue and allow the event the be handled. See below.</p> <pre><code>using System; using System.Threading; using System.Windows.Forms; class Program { EventArgs data; static void Main() { Program p = new Program(); p.RunWidget(); } public Program() { _autoEvent = new AutoResetEvent(false); } public void RunWidget() { ThirdParty widget = new ThirdParty(); widget.Completed += new EventHandler(this.Widget_Completed); data = null; widget.DoWork(); while (data == null); Application.DoEvents(); // do stuff with the results of DoWork that are contained in EventArgs. } // Assumes that some kind of args are passed by the event public void Widget_Completed(object sender, EventArgs e) { data = e; } } </code></pre> <p>In a non windows forms application, such as a Windows Service, Application is not available so DoEvents cannot be called.</p> <p>The problem is one of threading and that widget.DoWork's associated event handler somehow needs to be on another thread. This should prevent AutoResetEvent.WaitOne from blocking indefinitely. I think... :)</p> <p>Any ideas on how to accomplish this would be fantastic.</p> http://stackoverflow.com/questions/442265/unit-test-a-class-that-contains-an-idictionary/442307#442307 0 Answer by rob_g for Unit Test a class that contains an IDictionary. rob_g 2009-01-14T08:45:00Z 2009-01-14T08:45:00Z <p>Good point Jon. The class above is simplified slightly from what I was trying at work this afternoon. In the actual code under test, I supplied 1 or more tokens to register the IClientCallBack against. There should be a dictionary entry for each token. The idea being that Resolve(int token) would return the mapped IClientCallBack...</p> <p>What's throwing me is if my method is</p> <pre><code>public bool Register(int token, IClientCallBack client) { return true; } </code></pre> <p>My test will incorrectly succeed. Now, I could include a call to another method in the class that would verify the IClientCallBack was correctly mapped, such as a call to Resolve, but I'd then be testing to different methods in the one test, and I thought that was bad karma?</p> <p>Previously I have just tested that the method would return true, but there's that voice telling me that if I code the method to pass, it may not necessarily do what I want it too. </p> <p>Perhaps I'm just messing the TDD point :)</p> http://stackoverflow.com/questions/442265/unit-test-a-class-that-contains-an-idictionary 0 Unit Test a class that contains an IDictionary. rob_g 2009-01-14T08:19:29Z 2009-01-14T08:45:00Z <p>I am creating a class that determines which of number of registered WCF client callbacks to call. When a client registers with the server, it supplies the token it is interested in. The class then stores a mapping of token to IClientCallback interface for that token, in a Dictionary.</p> <p>The method and it's class under test looks like the following</p> <pre><code>public class Router { private IDictionary&lt;int, IClientCallBack&gt; clients; public Router() { clients = new Dictionary&lt;int, IClientCallBack&gt;(); } public Router(IDictionary&lt;int, IClientCallBack&gt; clients) { this.clients = clients; } public bool Register(int token, IClientCallBack client) { if (!clients.ContainsKey(token)) { clients.Add(token, client); return true; } return false; } } </code></pre> <p>How do I test the clients are successfully registered with the Router? I figured I can either assume that if the function returned true, it is successful (but what is to stop the function body being only "return true;"?) or I could inject the clients Dictionary into the constructor of the class and in my test I could check that clients.Count equals 1, as per the following.</p> <pre><code>[TestMethod] public void RegisterTest() { IDictionary&lt;int, IClientCallBack&gt; clients = new Dictionary&lt;int, IClientCallBack&gt;(); var router = new Router(clients); var client = new Mock&lt;IClientCallBack&gt;().Object; var success = router.Register(4, client); Assert.IsTrue(success); Assert.AreEqual(1, clients.Count); Assert.AreEqual(clients[4], client); } </code></pre> <p>While the test above seems good, it seems like overkill to use dependency injection to insert the collection in, just so I can test it. However it does make testing a lot easier and more accurate (when testing other methods of the class too).</p> <p>Is this the recommended way to test this method, or is it overkill?</p> http://stackoverflow.com/questions/367290/how-many-hours-days-do-you-work-on-a-day-week/367354#367354 0 Answer by rob_g for How many hours (days) do you work on a day (week)? rob_g 2008-12-15T02:33:55Z 2008-12-15T02:33:55Z <p>06:00 to 14:30/15:30 usually. Sometimes leave near 17:00 but usually not. </p> <p>Work hours are flexible. I like to start early, before anyone else comes in and I like to leave earlier so I can get ot the gym and then see my kids before they go to bed.</p> http://stackoverflow.com/questions/99684/message-passing-between-objects-how-to-refer-to-the-target-object/99821#99821 2 Answer by rob_g for Message passing between objects - How to refer to the target object? rob_g 2008-09-19T05:11:55Z 2008-10-30T01:05:28Z <p>Generally dependency injection is the way to go. If you're just talking about two objects communicating then pass an instance of one in as a paramter to the other, as in your first example. Passing in the constructor ensure the reference is always valid. Otherwise you'd have to test to ensure register had been called. Also you'd need to make sure calling register more than once wouldn't have adverse effects.</p> <p>What if you want a controlling object, to which other objects register for events. It would then be suitable to use a Register method ( which may add to a delegate).</p> <p>See <a href="http://www.dofactory.com/Patterns/PatternObserver.aspx" rel="nofollow">Observer Pattern</a></p> http://stackoverflow.com/questions/211628/do-you-think-exams-that-test-rote-memorization-are-worthwhile/211988#211988 0 Answer by rob_g for Do you think exams that test rote memorization are worthwhile? rob_g 2008-10-17T12:51:42Z 2008-10-17T12:51:42Z <p>I don't mind rote exams. The most useful purpose they serve is introducing the api of a language to developers. There are many things in the .NET exams I wouldn't have learnt, or at least would have only discovered after hours or days of going up the wrong the path. Especially useful if you're trying to bootstrap your knowledge in a particular area, like if you've just switched languages. You may already know how to programme and design well, and doing rote based certifications are a good way to get familiar with a new api.</p> <p>I still refer to google / msdn alot, but at least I know what I'm looking for. Time is money.</p> http://stackoverflow.com/questions/199906/becoming-a-ninja-developer/199924#199924 3 Answer by rob_g for Becoming a ninja developer rob_g 2008-10-14T03:26:19Z 2008-10-14T03:26:19Z <p>Depends on the type and complexity of problems you're presented as a developer. One way would be to use a more complex language or toolset. </p> <p>For example, if you're solving business problems using MS Access, try solving, or at least thinking about how you'd solve them, in a .NET ans Sql Server.</p> http://stackoverflow.com/questions/199889/escaping-in-access-sql/199916#199916 0 Answer by rob_g for Escaping ' in Access SQL rob_g 2008-10-14T03:22:15Z 2008-10-14T03:22:15Z <p>I believe access can use Chr$(34) and happily have single quotes/apostrophes inside.<br /> eg </p> <pre><code>DLookup("island", "villages", "village = " &amp; chr$(34) &amp; nonEscapedString &amp; chr$(34)) </code></pre> <p>Though then you'd have to escape the chr$(34) (")</p> <p>You can use the Replace function. </p> <pre><code>Dim escapedString as String escapedString = Replace(nonescapedString, "'", "''") </code></pre> http://stackoverflow.com/questions/181853/mocking-an-attribute-change-on-a-parameter-using-moq 0 Mocking an attribute change on a parameter - using Moq rob_g 2008-10-08T08:40:47Z 2008-10-08T23:57:27Z <p>I am using Moq to mock my Repository layer so I can unit test.</p> <p>My repository layer Insert methods update the Id property of my entities when a successful db insert occurs.</p> <p>How do I configure moq to update the Id property of the entity when the Insert method is called? </p> <p>Repository code:-</p> <pre><code>void IAccountRepository.InsertAccount(AccountEntity account); </code></pre> <p>Unit Test:-</p> <pre><code>[TestInitialize()] public void MyTestInitialize() { accountRepository = new Mock&lt;IAccountRepository&gt;(); contactRepository = new Mock&lt;IContactRepository&gt;(); contractRepository = new Mock&lt;IContractRepository&gt;(); planRepository = new Mock&lt;IPlanRepository&gt;(); generator = new Mock&lt;NumberGenerator&gt;(); service = new ContractService(contractRepository.Object, accountRepository.Object, planRepository.Object, contactRepository.Object, generator.Object); } [TestMethod] public void SubmitNewContractTest() { // Setup Mock Objects planRepository .Expect(p =&gt; p.GetPlan(1)) .Returns(new PlanEntity() { Id = 1 }); generator .Expect(p =&gt; p.GenerateAccountNumber()) .Returns("AC0001"); // Not sure what to do here? // How to mock updating the Id field for Inserts? // // Creates a correctly populated NewContractRequest instance NewContractRequest request = CreateNewContractRequestFullyPopulated(); NewContractResponse response = service.SubmitNewContract(request); Assert.IsTrue(response.IsSuccessful); } </code></pre> <p>implementation snippet from ContractService class (WCF service contract).</p> <pre><code>AccountEntity account = new AccountEntity() { AccountName = request.Contact.Name, AccountNumber = accountNumber, BillingMethod = BillingMethod.CreditCard, IsInvoiceRoot = true, BillingAddressType = BillingAddressType.Postal, ContactId = request.Contact.Id.Value }; accountRepository.InsertAccount(account); if (account.Id == null) { // ERROR } </code></pre> <p>I apologise if this information may be a little lacking. I only started learning moq and mocking frameworks today. ac</p> http://stackoverflow.com/questions/181853/mocking-an-attribute-change-on-a-parameter-using-moq/185370#185370 0 Answer by rob_g for Mocking an attribute change on a parameter - using Moq rob_g 2008-10-08T23:37:59Z 2008-10-08T23:57:27Z <p>I'm not sure how that will work because account is created inside the method, so it's not the instance I'll be referring to when I set the value of ID to 1.</p> <p>Perhaps there's a flaw in my design and I should be checking for ID > 0 inside the IAccountRepository.InsertAccount implementation and then returning a bool if it's ok. Though then I've a problem with inserting an account that has a related object that needs to be insterted (and an Id genereated).</p> <p>I found this to be the answer to my problem</p> <pre><code>accountRepository .Expect(p =&gt; p.InsertAccount(It.Is&lt;AccountEntity&gt;(x =&gt; x.Id == null))) .Callback&lt;AccountEntity&gt;(a =&gt; a.Id = 1); </code></pre> <p>thanks.</p> http://stackoverflow.com/questions/1777158/instantiating-transactionscope-returns-null Comment by rob_g on Instantiating TransactionScope returns null rob_g 2009-11-22T05:20:21Z 2009-11-22T05:20:21Z Silly me. The erroring was aborting the transaction, so of course my debug logs weren't getting written (to the database). The actual cause was a difference between the import specification and the data being import. A field that should never have been null was in fact null. I never picked it up in testing becuase I had a correct to the spec sample file to test with, and not real data. Sounds too obvious now. http://stackoverflow.com/questions/1777158/instantiating-transactionscope-returns-null/1777205#1777205 Comment by rob_g on Instantiating TransactionScope returns null rob_g 2009-11-22T01:06:00Z 2009-11-22T01:06:00Z I'll throw some more debug code in and see how I go :) http://stackoverflow.com/questions/1777158/instantiating-transactionscope-returns-null/1777205#1777205 Comment by rob_g on Instantiating TransactionScope returns null rob_g 2009-11-22T00:14:02Z 2009-11-22T00:14:02Z Happy to show the code if it helps, but that's the line of code that is failing. The surrounding lines are debug lines. I've checked the MSDTC settings on all machines and they are identical. http://stackoverflow.com/questions/1563648/visual-studio-development-server-not-updating-css-and-javascript/1563657#1563657 Comment by rob_g on Visual Studio Development Server not updating css and javascript? rob_g 2009-10-14T00:21:15Z 2009-10-14T00:21:15Z Thank you! clearing my browser cache fixed the problem. I wish I tried this three days ago :) http://stackoverflow.com/questions/1540917/ensuring-unique-numbers-from-a-sql-server-database Comment by rob_g on Ensuring unique numbers from a sql server database rob_g 2009-10-09T00:41:13Z 2009-10-09T00:41:13Z at the moment, 2000. http://stackoverflow.com/questions/1540917/ensuring-unique-numbers-from-a-sql-server-database/1540969#1540969 Comment by rob_g on Ensuring unique numbers from a sql server database rob_g 2009-10-09T00:40:38Z 2009-10-09T00:40:38Z because the counter has to generate a number that resets every day, month, or other customer defined period. different customers have incident numbers that reset daily and some never reset. The incident number gets placed into a field on the incident table. that field isn't unique, just indexed. the existing stored proc has been in place for over 10 years :) http://stackoverflow.com/questions/1540917/ensuring-unique-numbers-from-a-sql-server-database/1541093#1541093 Comment by rob_g on Ensuring unique numbers from a sql server database rob_g 2009-10-09T00:38:45Z 2009-10-09T00:38:45Z thanks for the feedback. the schema is outside our control, and my example has made up field names and isn't a direct copy of the actual sproc :) http://stackoverflow.com/questions/1528438/stopping-display-of-custom-dialog-boxes-in-wix-uninstall/1528933#1528933 Comment by rob_g on Stopping display of custom dialog boxes in WiX uninstall rob_g 2009-10-07T04:20:08Z 2009-10-07T04:20:08Z &lt;InstallUISequence&gt; &lt;Show Dialog=&quot;InstallDlg&quot; After=&quot;WelcomeDlg&quot; Overridable=&quot;yes&quot; /&gt; &lt;/InstallUISequence&gt; Is what I am doing to display my custom UI element. http://stackoverflow.com/questions/1528438/stopping-display-of-custom-dialog-boxes-in-wix-uninstall/1528933#1528933 Comment by rob_g on Stopping display of custom dialog boxes in WiX uninstall rob_g 2009-10-07T04:19:32Z 2009-10-07T04:19:32Z I'm new to Wix. I'm at a loss to follow what you mean. I'm not installing a custom action, I'm defining a UI element to display a custom screen to get data to update web.config. I then use properties (eg [DATABASENAME]) to update connectionString in web.config, using util:XmlFile ... command from WiXUtilExtension. http://stackoverflow.com/questions/1524079/calling-wcf-with-netmsmqbinding-inside-transactionscope-stopping-transaction/1524265#1524265 Comment by rob_g on Calling WCF with netMsmqBinding inside TransactionScope stopping transaction. rob_g 2009-10-06T22:50:04Z 2009-10-06T22:50:04Z thanks marc. you're correct. I don't want the transaction behavior (especially as one of the services is an email sending service). I'll try that attribute. http://stackoverflow.com/questions/1523612/should-you-build-components-every-time-you-build-a-main-app/1525885#1525885 Comment by rob_g on Should you build components every time you build a main app rob_g 2009-10-06T21:30:53Z 2009-10-06T21:30:53Z In this case, the ocx uses binary compatiability and is part of the compile process. The ocx gets built then the exe gets built. The second case 'sort of' applies, in that the ocx is only updated once or twice every year. The most recent update being for performance. In all cases the interface doesn't change and binary compatiability is preserved. The build process also zips up all components in a release package, so it's useful to include the ocx in the build to ensure the application always uses the most up-to-date (and performant) version http://stackoverflow.com/questions/1523612/should-you-build-components-every-time-you-build-a-main-app Comment by rob_g on Should you build components every time you build a main app rob_g 2009-10-06T21:26:06Z 2009-10-06T21:26:06Z In Mike's particular case above, the latest version of the ocx should always be used. The ocx provides a communication layer to various versions of the same VB6 application (different versions for different customers). http://stackoverflow.com/questions/805161/versioning-assemblies-of-distributed-application-with-hot-fixes/808635#808635 Comment by rob_g on Versioning assemblies of distributed application with hot fixes rob_g 2009-04-30T20:55:24Z 2009-04-30T20:55:24Z Thanks Daniel. I am leaning toward releasing the entire application whenever a change in any of the tiers occurs. 99% of changes will be in the server components, so realistically downtime during updates is basically unavoidable. http://stackoverflow.com/questions/766805/how-to-convince-management-programmers-suck-at-it/766820#766820 Comment by rob_g on How to Convince Management Programmers Suck at IT rob_g 2009-04-20T03:53:20Z 2009-04-20T03:53:20Z Great idea talking about context switch cost. Hopefully management will be able to appreciate the complexity that devs have to load into their brain. http://stackoverflow.com/questions/539503/wcf-individual-methods-or-a-generic-processmessage-method-accepting-xml/556213#556213 Comment by rob_g on WCF: Individual methods or a generic ProcessMessage method accepting xml. rob_g 2009-02-17T20:46:23Z 2009-02-17T20:46:23Z Thanks for those links. much appreciated :)