User Rob Stevenson-Leggett - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T13:48:37Z http://stackoverflow.com/feeds/user/4950 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1761955/when-does-technical-documentation-violate-the-dry-principle/1761994#1761994 0 Answer by Rob Stevenson-Leggett for When does technical documentation violate the DRY principle? Rob Stevenson-Leggett 2009-11-19T09:28:29Z 2009-11-19T09:28:29Z <p>I think you've answered your own question a little. The documentation becomes a DRY burden when you're pushed for time. </p> <p>Upfront design is usually a good thing for inexperienced programmers and most of the time will result in better code. However, like you say the design documentation has to be kept up to date in line with the code base.</p> <p>Maybe look at incorporating some form of automated documentation and implement some standards such as templates for comments from which documentation is generated after the initial design (as recommended in the Pragmatic Programmer). <a href="http://en.wikipedia.org/wiki/Test%5FDriven%5FDevelopment" rel="nofollow">Test Driven Development</a> or <a href="http://en.wikipedia.org/wiki/Behavior%5FDriven%5FDevelopment" rel="nofollow">Behaviour Driven Development</a> might also be worth looking into as the tests are by definition documentation and so when new code is written so are new tests and hence new documentation.</p> http://stackoverflow.com/questions/673638/wcf-messagecontract-datacontract-confused 2 WCF: MessageContract, DataContract ... Confused? Rob Stevenson-Leggett 2009-03-23T14:44:05Z 2009-11-09T15:19:25Z <p>Hi,</p> <p>I'm writing my first WCF service. I decided to write the service just as a DLL to begin with and then aspect the WCF stuff on afterwards which is where I am now.</p> <p>I was advised by the arcitect that I should stick to a specific format for message objects which I have done. However I've used Interfaces, complex types and lists thereof in my message objects. I'm coming to adding the attributes on and I'm getting a bit confused.</p> <p>Here's a show example of my code.</p> <pre><code>[ServiceContract] public interface MyServiceContract { [OperationContract] MyMethodResponseMessage MyMethod(MyMethodRequestMessage request); } public class MyService : MyServiceContract { public MyMethodResponseMessage MyMethod(MyMethodRequestMessage request) { //Do things } } //Messages [MessageContract] public class MyMethodResponseMessage { [MessageBodyMember] public MyMethodResponse Body { get; set; } } [DataContract] public class MyMethodResponse { [DataMember] public IMyComplexTypeItem { get; set; } [DataMember] public List&lt;IMyComplexType&gt; Items { get; set; } [DataMember] public bool Success { get; set; } } //DTO public interface IMyComplexType { [DataMember] string Identity { get; set; } } [DataContract] public class MyComplexType1 : IMyComplexType { [DataMember] public virtual string Identity } </code></pre> <p>Can anyone comment on the correctness in the use of MessageContract, DataContract, DataMember and Serializable etc? Any pointers or glaring mistakes?</p> <p>Also which serializer is the best one to use? and what is the best strategy to ensure I get well formed XML from this so that other clients can consume my service easily?</p> http://stackoverflow.com/questions/1009970/android-eclipse-plugin-instrumentation-test-runner-not-specified 1 Android Eclipse Plugin: Instrumentation Test Runner not specified. Rob Stevenson-Leggett 2009-06-17T23:09:04Z 2009-11-09T07:09:16Z <p>I'm getting this error when trying to run unit tests from Eclipse with an Android Project. The list of Instrumentation Test Runners is empty in the Android preferences.</p> <blockquote> <p>[2009-06-17 23:57:51 - MyApp] ERROR: Application does not specify a android.test.InstrumentationTestRunner instrumentation or does not declare uses-library android.test.runner</p> </blockquote> <p>Google-fu failing me.</p> <p>It's also annoyingly decided that because I tried to run a unit test once, that's what I always want to do... Grr</p> http://stackoverflow.com/questions/502755/episerver-cms-5-r2-custom-page-provider-refuses-to-load 0 EpiServer CMS 5 R2: Custom Page Provider refuses to load. Rob Stevenson-Leggett 2009-02-02T10:18:09Z 2009-10-22T10:20:36Z <p>I've recently started work on a new project using EpiServer which I am totally new to. One of my tasks requires me to write a custom page provider. </p> <p>I have got the sample page provider working and loaded. I've also ensured that I have a Enterprise Developer licence as the functionality is only available with this licence.</p> <p>So I've done a skeleton implementation of my page provider and entered the info into the web.config on my test site exactly as the XmlPageProvider sample does thusly:</p> <p></p> <pre><code> &lt;pageProvider&gt; &lt;providers&gt; &lt;add entryPoint="26" capabilities="Create,Edit,Delete,Move,MultiLanguage" name="custom" type="MyWebsite.CustomProvider,CustomPageProvider" /&gt; &lt;!-- &lt;add filePath="~/externalPages.xml" entryPoint="26" capabilities="Create,Edit" name="xml" type="CodeSamples.XmlPageProvider,XmlPageProvider" /&gt;--&gt; &lt;/providers&gt; &lt;/pageProvider&gt; </code></pre> <p>While we're at it what the hell is the entryPoint property referring to? I cannot find a satisfactory explanation for this anywhere. When I hit the page however I see the following.</p> <blockquote> <p>Error occured 2/2/2009 10:07:26 AM User IP fe80::d0e0:16bf:c536:ad4d%10 User Agent Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618) Url <a href="http://ioc-dev-uk5:17003/cms/admin/default.aspx" rel="nofollow">http://ioc-dev-uk5:17003/cms/admin/default.aspx</a> Referer (none) </p> <p>Exception details: TypeInitializationException: The type initializer for 'EPiServer.DataFactory' threw an exception.</p> <p>Stack trace:</p> <p>[TypeInitializationException: The type initializer for 'EPiServer.DataFactory' threw an exception.] at EPiServer.Web.InitializationModule.Initialize(EPiServerSection config, Settings settings, ConnectionStringSettingsCollection connectionStringSettings) at EPiServer.Web.InitializationModule.StaticInitialization() at EPiServer.Web.InitializationModule.Application_BeginRequest(Object sender, EventArgs e) at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously)</p> <p>[Inner exception ArgumentException: Cannot create an instance of type MyWebsite.CustomProvider,CustomPageProvider] at EPiServer.Core.PageProviderMap.AddPageProvider(ProviderSettings pageProviderSetting) at EPiServer.Core.PageProviderMap.LoadPageProviders(ProviderSettingsCollection pageProvidersCollection) at EPiServer.Core.PageProviderMap..ctor(ProviderSettingsCollection pageProviders) at EPiServer.DataFactory..cctor()</p> </blockquote> <p>As you can see this is fairly unhelpful. I've tried getting another licence, resetting IIS, rebooting the box, trying to work out what's going on using reflector to look at the code in the EpiServer DataFactory, all to no avail.</p> <p>I know it's something really simple but what?! It's been driving me mildly insane for about 2 days now.</p> <p>Plaese Halp!</p> http://stackoverflow.com/questions/1178050/automatically-add-last-modified-header-iis 0 Automatically add Last-Modified header IIS? Rob Stevenson-Leggett 2009-07-24T14:26:06Z 2009-10-11T02:00:03Z <p>Is there an ISAPI filter that can automatically add the Last-Modified header in IIS?</p> http://stackoverflow.com/questions/268490/jquery-document-createelement-equivalent 7 jQuery document.createElement equivalent? Rob Stevenson-Leggett 2008-11-06T12:26:31Z 2009-10-07T20:19:42Z <p>I'm refactoring some old javascript and there's a lot of DOM manipulation going on.</p> <pre><code>var d = document; var odv = d.createElement("div"); odv.style.display = "none"; this.OuterDiv = odv; var t = d.createElement("table"); t.cellSpacing = 0; t.className = "text"; odv.appendChild(t); </code></pre> <p>Is there a better way to do this using jQuery? I've been experimenting with:</p> <pre><code> var odv = $.create("div"); $.append(odv); </code></pre> <p>etc. But I'm not sure this is any better.</p> <p>Google search gives me ambiguous answers on the subject. Clues?</p> http://stackoverflow.com/questions/340151/reportviewer-client-print-control-unable-to-load-client-print-control 5 ReportViewer Client Print Control "Unable to load client print control"? Rob Stevenson-Leggett 2008-12-04T10:29:27Z 2009-10-05T12:23:16Z <p>Has anyone come across this issue?</p> <p>Seems MS have broken it with their own update:</p> <blockquote> <p>A number of people have reported problems using the ActiveX print control in the report viewer after installing Microsoft Update 956391. Specifically, users receive the error "Unable to load client print control" when clicking on the print icon in the report viewer toolbar. I would like to explain what is happening, why we did it, and how to fix the problems that you or your customers are experiencing.</p> </blockquote> <p>From here: <a href="http://blogs.msdn.com/brianhartman/archive/2008/11/05/client-print-fails-to-load-after-microsoft-update-956391.aspx" rel="nofollow">http://blogs.msdn.com/brianhartman/archive/2008/11/05/client-print-fails-to-load-after-microsoft-update-956391.aspx</a></p> <p>I can get it to work in ReportManager again but in our app (<a href="http://www.rsinteract.com" rel="nofollow">RSinteract</a>) which references version 8.0.0.0 of the ReportViewer it is not working no matter what I do. </p> <p>I've tried everything here: <a href="http://www.technologystudio.net/blog/post/Microsoft-Update-KB956391-breaks-Reporting-Services-ReportViewer.aspx" rel="nofollow">http://www.technologystudio.net/blog/post/Microsoft-Update-KB956391-breaks-Reporting-Services-ReportViewer.aspx</a></p> <p>I'd like a fix that doesn't require me to rebuild and redeploy to all my clients. Any ideas?</p> http://stackoverflow.com/questions/506649/episerver-cms-5-r2-custom-page-providers-the-right-choice 0 EpiServer CMS 5 R2: Custom Page Providers - The right choice? Rob Stevenson-Leggett 2009-02-03T10:30:06Z 2009-09-20T21:59:00Z <p>Hello,</p> <p>I'm using EpiServer CMS 5R2 on a new project. I've been tasked with creating a CustomPageProvider to link to an existing back end store which we don't have control of. However looking at the sample provider (XmlPageProvider) it appears that the provider is responsible for maintaining the meta information that EpiServer needs for example (from the examples.xml document):</p> <pre><code>&lt;page id="10011" parent="10010" pagetypeid="3" versionid="1" security="Everyone:Read;Administrators:Create,Edit"&gt; &lt;property name="PageGUID"&gt;35a988fe-2bc1-4e45-a41f-3a009a660551&lt;/property&gt; &lt;property name="PageTypeID"&gt;3&lt;/property&gt; &lt;property name="PageWorkStatus"&gt;4&lt;/property&gt; &lt;property name="PageFolderID"&gt;118&lt;/property&gt; &lt;property name="PageTypeName"&gt;[Public] Standard page&lt;/property&gt; &lt;property name="PageMasterLanguageBranch"&gt;en&lt;/property&gt; &lt;property name="PageLanguageBranch"&gt;en&lt;/property&gt; &lt;!---- SNIP! ----&gt; &lt;property name="Heading"&gt;A subpage&lt;/property&gt; &lt;property name="MainBody"&gt;&lt;p&gt;an external subpage&lt;/p&gt;&lt;/property&gt; &lt;property name="SecondaryBody"&gt;&lt;p&gt;second body&lt;/p&gt;&lt;/property&gt; &lt;property name="MetaAuthor"&gt;John Doe&lt;/property&gt; &lt;/page&gt; </code></pre> <p>I'm a little concerned by this as I would prefer EpiServer takes care of this. This is a high volume website and it would be nice if my services didn't have to contain an extra data store in order to maintain this information, there will be cacheability concerns to say the least.</p> <p>So, questions:</p> <ol> <li><p>Is a custom page provider the right tool for the job?</p></li> <li><p>If so, is there a way to push this responsibility back onto EpiServer?</p></li> <li><p>If not, can you give me any recommendations on how best to approach storing this data? As it is over and above what will be coming from our data source.</p></li> </ol> <p>Much appreciated!</p> <p>Robert Stevenson-Leggett</p> http://stackoverflow.com/questions/910385/why-cant-i-set-an-environment-variable-on-windows-server-2008 -1 Why can't I set an environment variable on Windows Server 2008? Rob Stevenson-Leggett 2009-05-26T12:17:05Z 2009-09-13T18:42:50Z <p>This should be working.</p> <p>I'm writing a script but it's not working and I've narrowed it down to the environment variables not being set so I'm trying this in the command prompt:</p> <pre><code>SET dbName = MyDatabaseName echo %dbName% </code></pre> <p>which is just echoing back %dbName% not the value.</p> <p>What is going on?</p> http://stackoverflow.com/questions/704794/enterprise-library-caching-parameters-on-stored-procs 0 Enterprise library caching parameters on stored procs? Rob Stevenson-Leggett 2009-04-01T09:39:19Z 2009-08-21T15:13:30Z <p>I'm trying to standardise some data access code with my colleagues. One of the aforementioned colleagues asserts that the EntLib Data Access Block trys to cache parameters on stored proc calls. </p> <p>I've had a look in reflector and there is some evidence that it could be caching them. But I don't <em>think</em> it does in the following situation.</p> <pre><code> public Dictionary&lt;long, string&gt; GetQueue(int maxItems) { var sq = new SqlDatabase(_connString.ConnectionString); var result = new Dictionary&lt;long, string&gt;(); using (var cmd = (SqlCommand)sq.GetStoredProcCommand("dbo.GetQueue")) { sq.AddInParameter(cmd, "maxItems", DbType.Int32, maxItems); var reader = cmd.ExecuteReader(CommandBehavior.CloseConnection); while (reader.Read()) { long id = reader.GetInt64(reader.GetOrdinal("id")); string fileName = reader.GetString(reader.GetOrdinal("meta_data_filename")); result.Add(id, fileName); } } return result; } </code></pre> <p>Can anyone confirm or deny this?</p> <p>I'm using EntLib 4.1</p> http://stackoverflow.com/questions/1193054/c-rest-web-service-and-android-client/1193097#1193097 0 Answer by Rob Stevenson-Leggett for C# Rest web service and Android Client Rob Stevenson-Leggett 2009-07-28T09:56:22Z 2009-07-28T09:56:22Z <p>See my question here: <a href="http://stackoverflow.com/questions/992880/unresolved-host-exception-android">http://stackoverflow.com/questions/992880/unresolved-host-exception-android</a></p> <p>Calling the rest service is just a matter of creating the HttpResponse and processing the returned xml/json/value.</p> http://stackoverflow.com/questions/1188545/fastest-editor-ide-for-for-tdd-workflow-test-code-test/1188610#1188610 1 Answer by Rob Stevenson-Leggett for Fastest editor/ide for for TDD workflow: test > code > test? Rob Stevenson-Leggett 2009-07-27T14:48:53Z 2009-07-27T14:48:53Z <p>I've always found Visual Studio + <a href="http://www.testdriven.net/" rel="nofollow">Test Driven.NET</a> to be the best. The test runner built into VS2008 is, I agree, fairly slow.</p> <p>Netbeans is pretty fast too, but that's not for C#...</p> http://stackoverflow.com/questions/1164774/to-charge-or-not-to-charge/1164788#1164788 15 Answer by Rob Stevenson-Leggett for To charge or not to charge? Rob Stevenson-Leggett 2009-07-22T11:59:27Z 2009-07-22T11:59:27Z <p>At the end of the day it's what you produce in the time. You think builders don't charge for tea breaks?</p> <p>However, I personally book an hour a day for this sort of thing.</p> http://stackoverflow.com/questions/658189/relationship-between-url-and-filepath-in-a-url-rewriting-scenario 0 Relationship between URL and Filepath in a URL-rewriting scenario.. Rob Stevenson-Leggett 2009-03-18T13:10:48Z 2009-07-16T08:17:08Z <p>Experience tells me I shouldn't be storing a url in my database of media items.</p> <p>However that is what my architect is telling me. Surely it is the job of a front end server to map the filepath to a url?</p> <p>Any hints? What should I be considering with regard to URL rewriting?</p> http://stackoverflow.com/questions/1097442/subsonic-2-2-update-only-works-for-some-fields 0 Subsonic 2.2: Update only works for some fields? Rob Stevenson-Leggett 2009-07-08T11:20:24Z 2009-07-09T12:44:58Z <pre><code> MyTable.Update(long.Parse(id), txtLocation.Text, txtCode.Text, locale, chkAvailable.Checked, DateTime.Now); </code></pre> <p>Neither chkAvailable.Checked or DateTime.Now cause an update but changing the other fields do...</p> <p>What's going on?</p> <p>I'm using SQL Server 2005. .NET 3.5 SP1</p> <p>Rob</p> http://stackoverflow.com/questions/1097440/web-service-use-in-android/1097446#1097446 2 Answer by Rob Stevenson-Leggett for Web Service use in Android. Rob Stevenson-Leggett 2009-07-08T11:21:35Z 2009-07-08T11:21:35Z <p>See my question here: <a href="http://stackoverflow.com/questions/992880/unresolved-host-exception-android">http://stackoverflow.com/questions/992880/unresolved-host-exception-android</a></p> http://stackoverflow.com/questions/992880/unresolved-host-exception-android 2 Unresolved Host Exception Android Rob Stevenson-Leggett 2009-06-14T14:06:10Z 2009-06-18T16:31:01Z <p>I'm trying to call a RESTful web service from an Android application using the following method:</p> <pre><code> HttpHost target = new HttpHost("http://" + ServiceWrapper.SERVER_HOST,ServiceWrapper.SERVER_PORT); HttpGet get = new HttpGet("/list"); String result=null; HttpEntity entity = null; HttpClient client = new DefaultHttpClient(); try { HttpResponse response=client.execute(target, get); entity = response.getEntity(); result = EntityUtils.toString(entity); } catch (Exception e) { e.printStackTrace(); } finally { if (entity!=null) try { entity.consumeContent(); } catch (IOException e) {} } return result; </code></pre> <p>I can browse to address and see the xml results using the Android Emulator browser and from my machine. I have given my app the INTERNET permission. </p> <p>I'm developing with eclipse.</p> <p>I've seen it mentioned that I might need to configure a proxy but since the web service i'm calling is on port 80 this shouldn't matter should it? I can call the method with the browser.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/993210/html-5-v-s-xhtml/993212#993212 0 Answer by Rob Stevenson-Leggett for html 5 v/s XHTML Rob Stevenson-Leggett 2009-06-14T17:01:29Z 2009-06-14T17:01:29Z <p>Both. I'd focus on XHTML as current browser support for HTML5 is pretty low.</p> http://stackoverflow.com/questions/464933/sql2008-msolap-ssrs-class-not-registered-error-with-certain-dimension 0 SQL2008: MSOLAP & SSRS Class not registered error with certain dimension. Rob Stevenson-Leggett 2009-01-21T11:37:46Z 2009-06-05T16:44:09Z <p>Our product leverages Analysis Services combined with Reporting Services, we recently made some changed to add compatability for SQL2008. Everything works great except with certain dimensions, drillthroughs or measures added to a report we suddenly get this following error:</p> <blockquote> <p>Server: The operation has been cancelled. Errors in the high-level relational engine. A connection could not be made to the data source with the DataSourceID of 'Adventure Works DW', Name of 'Adventure Works DW'. OLE DB error: OLE DB or ODBC error: Class not registered.</p> </blockquote> <p>Any ideas?</p> http://stackoverflow.com/questions/915771/asp-net-url-rewriting-vs-routing/915933#915933 0 Answer by Rob Stevenson-Leggett for ASP.NET - Url Rewriting vs. Routing Rob Stevenson-Leggett 2009-05-27T14:11:16Z 2009-05-27T14:11:16Z <p>IIS 5/6 used ISAPI filtering which was basically the equivalent of mod_rewrite for IIS. I hear that IIS7's url rewriting is a lot easier to manage and configure than ISAPI.</p> http://stackoverflow.com/questions/910385/why-cant-i-set-an-environment-variable-on-windows-server-2008/910391#910391 1 Answer by Rob Stevenson-Leggett for Why can't I set an environment variable on Windows Server 2008? Rob Stevenson-Leggett 2009-05-26T12:18:48Z 2009-05-26T12:18:48Z <p>Ok foolish. It was the spaces between the = and the variable name/value.</p> http://stackoverflow.com/questions/689943/whats-the-most-elegant-way-to-use-stored-procedures 5 What's the most elegant way to use stored procedures? Rob Stevenson-Leggett 2009-03-27T14:20:16Z 2009-05-20T16:44:36Z <p>I'm re-writing the inline SQL in my repository class to use stored procedures instead (security requirement). After using Fluent NHibernate and Linq2Sql in the past I'm finding it to be extremely unwieldy and inelegant.</p> <p><strong>EDIT</strong>: To clarify, I'm not looking for an ORM solution that works with stored procs. I just want some advice on a nice way to write the code below.</p> <p>Are there any strategies for making this sort of code as elegant as possible?</p> <pre><code> string commandText = "dbo.Save"; using (SqlConnection sql = new SqlConnection(_connString.ConnectionString)) using (SqlCommand cmd = sql.CreateCommand()) { cmd.CommandText = commandText; cmd.CommandType = CommandType.StoredProcedure; SqlParameter idParam = new SqlParameter("identity", item.Identity); idParam.Direction = ParameterDirection.Input; SqlParameter nameParam = new SqlParameter("name", item.Name); nameParam.Direction = ParameterDirection.Input; SqlParameter descParam = new SqlParameter("desc", item.Description); descParam.Direction = ParameterDirection.Input; SqlParameter titleParam = new SqlParameter("title", item.) descParam.Direction = ParameterDirection.Input; //SNIP More parameters cmd.Parameters.Add(idParam); cmd.Parameters.Add(descParam); cmd.Parameters.Add(titleParam); //SNIP etc sql.Open(); cmd.ExecuteNonQuery(); //Get out parameters } return item; </code></pre> http://stackoverflow.com/questions/868684/what-does-your-code-do-to-contact-you-when-things-go-badly-wrong/869504#869504 0 Answer by Rob Stevenson-Leggett for What does your code do to contact you when things go badly wrong? Rob Stevenson-Leggett 2009-05-15T15:56:00Z 2009-05-15T15:56:00Z <p>Anyone seen <a href="http://www.exceptioneer.com" rel="nofollow">http://www.exceptioneer.com</a>?</p> http://stackoverflow.com/questions/868900/move-wcf-service-from-test-console-app-to-iis 1 Move WCF service from test console app to IIS Rob Stevenson-Leggett 2009-05-15T14:10:41Z 2009-05-15T14:17:48Z <p>Hi,</p> <p>I've been building a WCF app behind 3 projects (contract,implementation,client) I've hosted my service as a console app with basic HTTP binding. I'm now ready to move it to IIS. However, the tutorial for creating a .svc file shows it actually implementing the contract - but I already have an implementation. How do I just redirect to that implementation or should I be adding a .svc file to my existing implementation project?</p> <p>Hope that's clear enough.</p> <p>Cheers, Rob</p> http://stackoverflow.com/questions/796867/how-to-improve-software-design-skills/796907#796907 1 Answer by Rob Stevenson-Leggett for How to improve software design skills? Rob Stevenson-Leggett 2009-04-28T09:02:14Z 2009-04-28T09:02:14Z <p>Trial and error is the best way to see how your own designs can improve. Always look for a better solution. What mistakes did you make? What part was less flexible than it needed to be? What caused you to have to hack around a design decision you made? </p> <p>Think about the implications of the design rather than purely it's flexibility and elegance. What trade offs have you made in order to make this reusable? Are you following the <a href="http://en.wikipedia.org/wiki/Separation%5Fof%5Fconcerns" rel="nofollow">seperation of concerns</a> and the <a href="http://en.wikipedia.org/wiki/Single%5Fresponsibility%5Fprinciple" rel="nofollow">single responsibility principle</a>? <a href="http://en.wikipedia.org/wiki/Open/closed%5Fprinciple" rel="nofollow">Open closed principle</a>? Do you know what these are and their implications?</p> <p>Also study the work of experts in the form of design patterns.</p> <p>Read <a href="http://rads.stackoverflow.com/amzn/click/0201715945" rel="nofollow">Design Patterns Explained by Shalloway</a>, Read <a href="http://oreilly.com/catalog/9780596007126" rel="nofollow">Head first design patterns</a></p> <p>However remember that these aren't magic bullet solutions and take everything with a pinch of salt. Use your own creativity and STAY PRAGMATIC.</p> http://stackoverflow.com/questions/286876/asp-net-how-to-best-create-a-test-db-when-doing-tdd/286942#286942 2 Answer by Rob Stevenson-Leggett for ASP.NET How to best create a test DB when doing TDD? Rob Stevenson-Leggett 2008-11-13T13:47:05Z 2009-04-28T08:46:19Z <p>Assuming you're using the Repository pattern from Rob Conery's MVC Store Front:</p> <p><a href="http://blog.wekeroad.com/mvc-storefront/mvc-storefront-part-1/" rel="nofollow">http://blog.wekeroad.com/mvc-storefront/mvc-storefront-part-1/</a></p> <p>I followed Rob Conery's tutorial but ran into the same want as you. Best thing to do is move the Mock Repositories you've created into a seperate project called Mocks then you can swap them out pretty easily with the real ones when you instantiate your service. If your feeling adventurous you could create a factory that takes a value from the config file to instantiate either a mock or a real repository, </p> <p>e.g.</p> <pre><code>public static ICatalogRepository GetCatalogRepository(bool useMock) { if(useMock) return new FakeCatalogRepository(); else return new SqlCatalogRepository(); } </code></pre> <p>or use a dependency injection framework :)</p> <pre><code>container.Resolve&lt;ICatalogRepository&gt;(); </code></pre> <p>Good luck!</p> <p><strong>EDIT:</strong> In response to your comments, sounds like you want to use a list and LINQ to emulate a db's operations e.g. GetProducts, StoreProduct. I've done this before. Here's an example:</p> <pre><code>public class Product { public int Identity { get; set; } public string Name { get; set; } public string Description { get; set; } //etc } public class FakeCatalogRepository() { private List&lt;Product&gt; _fakes; public FakeCatalogCatalogRepository() { _fakes = new List&lt;Product&gt;(); //Set up some initial fake data for(int i=0; i &lt; 5; i++) { Product p = new Product { Identity = i, Name = "product"+i, Description = "description of product"+i }; _fakes.Add(p); } } public void StoreProduct(Product p) { //Emulate insert/update functionality _fakes.Add(p); } public Product GetProductByIdentity(int id) { //emulate "SELECT * FROM products WHERE id = 1234 var aProduct = (from p in _fakes.AsQueryable() where p.Identity = id select p).SingleOrDefault(); return aProduct; } } </code></pre> <p>Does that make a bit more sense?</p> http://stackoverflow.com/questions/781042/multi-language-asplabel-aganist-htmllabel-with-aspliteral/781121#781121 1 Answer by Rob Stevenson-Leggett for Multi language: asp:label aganist html:label with asp:Literal Rob Stevenson-Leggett 2009-04-23T10:19:00Z 2009-04-23T10:19:00Z <p>Seems to be a matter of taste. Although I think the second option may add a little weight to the page because literals are usually wrapped in <code>&lt;span</code>></p> http://stackoverflow.com/questions/748087/passing-parameters-as-xml-to-a-stored-procedure 3 Passing Parameters as Xml to a Stored Procedure Rob Stevenson-Leggett 2009-04-14T15:16:38Z 2009-04-15T15:57:42Z <p>I've got a requirement to pass parameters as Xml to my stored procedures.</p> <p>I have a WCF service in the middle tier that makes calls to my data layer which in turn forwards the request to the appropriate stored procedure.</p> <p>The design is that the WCF service is responsible for building the Xml to pass to the Repository.</p> <p>I'm just wondering whether to keep control of what parameters are contained within the Xml in the middle tier or use a Dictionary built up by the client which I then convert to Xml in the middle tier?</p> <p>At the moment I've gone for the latter - for example:</p> <pre><code> public TestQueryResponseMessage TestQuery(TestQueryRequestMessage message) { var result = Repository.ExecuteQuery("TestQuery", ParamsToXml(message.Body.Params)); return new TestQueryResponseMessage { Body = new TestQueryResponse { TopicItems = result; } } } private string ParamsToXml(Dictionary&lt;string, string&gt; nvc) { //TODO: Refactor StringBuilder sb = new StringBuilder(); sb.Append("&lt;params&gt;"); foreach (KeyValuePair&lt;string, string&gt; param in nvc) { sb.Append("&lt;param&gt;"); sb.Append("&lt;" + param.Key + "&gt;"); sb.Append(param.Value); sb.Append("&lt;/" + param.Key + "&gt;"); sb.Append("&lt;/param&gt;"); } sb.Append("&lt;/params&gt;"); return sb.ToString(); } </code></pre> <p>However I might need to do it the first way. E.g.</p> <pre><code>public TestQueryResponseMessage TestQuery(TestQueryRequestMessage message) { string xml = string.Format("&lt;params&gt;&lt;TestParameter&gt;{0}&lt;/TestParameter&gt;&lt;/params&gt;",message.Body.TestParameter) var result = Repository.ExecuteQuery("TestQuery", xml); return new TestQueryResponseMessage { Body = new TestQueryResponse { TopicItems = result; } } } </code></pre> <p>What does the hivemind recommend?</p> http://stackoverflow.com/questions/752135/basic-linqtosql-question-why-wont-this-compile/752144#752144 0 Answer by Rob Stevenson-Leggett for Basic LinqToSql question: Why won't this compile? Rob Stevenson-Leggett 2009-04-15T15:08:25Z 2009-04-15T15:08:25Z <p>Because you've typed "var" as a Table<code>&lt;Territory</code>> and then try to reassign it as a IQueryable<code>&lt;Territory</code>>.</p> <p>This is equivalent to saying</p> <pre><code> var i = 0 i = "a string"; </code></pre> <p>EDIT: To clarify, var is implicitly strong typed at compile time not run time, unlike dynamically typed scripting language.</p> http://stackoverflow.com/questions/751227/ajax-checkbox-if-statement/751268#751268 1 Answer by Rob Stevenson-Leggett for AJAX checkbox if statement Rob Stevenson-Leggett 2009-04-15T11:29:39Z 2009-04-15T11:29:39Z <p>As long as you've given it a name it should be accessible as "on" or "off" in the backend e.g.</p> <pre><code>var $checked = $_POST["checkboxname"] == "on"; </code></pre> <p>So your javascript is redundant.</p> http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you/643078#643078 Comment by Rob Stevenson-Leggett on What language decision in C# annoys you? Rob Stevenson-Leggett 2009-09-17T11:49:13Z 2009-09-17T11:49:13Z @Christian No I'm not. Nowhere do I mention multiple inheritance. I'm talking about C# specific autoproperties only. http://stackoverflow.com/questions/1193066/how-to-write-a-net-application-that-works-with-both-sqlserver-and-oracle-now-th/1193090#1193090 Comment by Rob Stevenson-Leggett on How to write a .Net application that works with both SqlServer and Oracle (now that System.Data.OracleClient is deprecated) Rob Stevenson-Leggett 2009-07-28T10:14:42Z 2009-07-28T10:14:42Z Ah sorry I've not understood the question, apologies. http://stackoverflow.com/questions/1176634/what-is-critical-path/1176687#1176687 Comment by Rob Stevenson-Leggett on What is Critical Path? Rob Stevenson-Leggett 2009-07-24T09:56:09Z 2009-07-24T09:56:09Z Nice answer. Concise. +1 http://stackoverflow.com/questions/1108827/how-to-display-weather-using-any-weather-website/1108839#1108839 Comment by Rob Stevenson-Leggett on How to display weather using any weather website Rob Stevenson-Leggett 2009-07-10T10:39:36Z 2009-07-10T10:39:36Z +1 for yahoo weather api. It's pretty simple. http://stackoverflow.com/questions/1108376/asp-net-still-run-without-code-files-how/1108396#1108396 Comment by Rob Stevenson-Leggett on ASP.NET still run without code files, how? Rob Stevenson-Leggett 2009-07-10T08:38:08Z 2009-07-10T08:38:08Z This isn't strictly true. It's possible for a web site project to have a bin folder. http://stackoverflow.com/questions/1097442/subsonic-2-2-update-only-works-for-some-fields/1099813#1099813 Comment by Rob Stevenson-Leggett on Subsonic 2.2: Update only works for some fields? Rob Stevenson-Leggett 2009-07-09T13:57:39Z 2009-07-09T13:57:39Z It's SQL2005 and it uses the bit type, this works fine for insert so I don't see why it wouldn't work in this case. http://stackoverflow.com/questions/1097442/subsonic-2-2-update-only-works-for-some-fields Comment by Rob Stevenson-Leggett on Subsonic 2.2: Update only works for some fields? Rob Stevenson-Leggett 2009-07-09T09:56:43Z 2009-07-09T09:56:43Z Hi Rob, thanks for the reply. Yes it is static object datasource I've followed it through in the Debugger to item.Save() and all the props are set properly. It's SQL Server 2005. http://stackoverflow.com/questions/1097442/subsonic-2-2-update-only-works-for-some-fields/1099813#1099813 Comment by Rob Stevenson-Leggett on Subsonic 2.2: Update only works for some fields? Rob Stevenson-Leggett 2009-07-09T09:43:27Z 2009-07-09T09:43:27Z No i did not but I will. http://stackoverflow.com/questions/1097440/web-service-use-in-android/1097446#1097446 Comment by Rob Stevenson-Leggett on Web Service use in Android. Rob Stevenson-Leggett 2009-07-08T11:33:15Z 2009-07-08T11:33:15Z Since SOAP is an Xml format you can use the SAXParser built in to the Android framework to parse it. I'm not sure if Android has a &quot;service reference&quot; model ala .NET/Netbeans Java http://stackoverflow.com/questions/75428/mmc-could-not-create-the-snap-in-error-when-launching-internet-information-servic/76401#76401 Comment by Rob Stevenson-Leggett on mmc could not create the snap in error when launching internet information services Rob Stevenson-Leggett 2009-07-02T12:00:24Z 2009-07-02T12:00:24Z Cheers this worked for me too. http://stackoverflow.com/questions/992880/unresolved-host-exception-android/1013733#1013733 Comment by Rob Stevenson-Leggett on Unresolved Host Exception Android Rob Stevenson-Leggett 2009-06-19T09:30:10Z 2009-06-19T09:30:10Z Awww so annoying :) Fixed. Thankyou. http://stackoverflow.com/questions/992880/unresolved-host-exception-android/1004673#1004673 Comment by Rob Stevenson-Leggett on Unresolved Host Exception Android Rob Stevenson-Leggett 2009-06-19T09:28:34Z 2009-06-19T09:28:34Z Thanks for the info! http://stackoverflow.com/questions/1009970/android-eclipse-plugin-instrumentation-test-runner-not-specified/1012421#1012421 Comment by Rob Stevenson-Leggett on Android Eclipse Plugin: Instrumentation Test Runner not specified. Rob Stevenson-Leggett 2009-06-19T09:26:53Z 2009-06-19T09:26:53Z Thanks so much :) http://stackoverflow.com/questions/992880/unresolved-host-exception-android/1004673#1004673 Comment by Rob Stevenson-Leggett on Unresolved Host Exception Android Rob Stevenson-Leggett 2009-06-17T23:02:39Z 2009-06-17T23:02:39Z Is this method a valid way to call a REST web service? I.e. consuming the input stream into a string? http://stackoverflow.com/questions/992880/unresolved-host-exception-android/1004673#1004673 Comment by Rob Stevenson-Leggett on Unresolved Host Exception Android Rob Stevenson-Leggett 2009-06-17T22:58:49Z 2009-06-17T22:58:49Z Right, I can get data back using this method. However I can't figure out why the original code doesn't work. I'm not seeing anything in Fiddler for either!