User Rob Stevenson-Leggett - Stack Overflowmost recent 30 from stackoverflow.com2009-11-25T13:48:37Zhttp://stackoverflow.com/feeds/user/4950http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1761955/when-does-technical-documentation-violate-the-dry-principle/1761994#17619940Answer by Rob Stevenson-Leggett for When does technical documentation violate the DRY principle?Rob Stevenson-Leggett2009-11-19T09:28:29Z2009-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-confused2WCF: MessageContract, DataContract ... Confused?Rob Stevenson-Leggett2009-03-23T14:44:05Z2009-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<IMyComplexType> 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-specified1Android Eclipse Plugin: Instrumentation Test Runner not specified.Rob Stevenson-Leggett2009-06-17T23:09:04Z2009-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-load0EpiServer CMS 5 R2: Custom Page Provider refuses to load.Rob Stevenson-Leggett2009-02-02T10:18:09Z2009-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> <pageProvider>
<providers>
<add entryPoint="26" capabilities="Create,Edit,Delete,Move,MultiLanguage"
name="custom" type="MyWebsite.CustomProvider,CustomPageProvider" />
<!-- <add filePath="~/externalPages.xml" entryPoint="26" capabilities="Create,Edit"
name="xml" type="CodeSamples.XmlPageProvider,XmlPageProvider" />-->
</providers>
</pageProvider>
</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& 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-iis0Automatically add Last-Modified header IIS?Rob Stevenson-Leggett2009-07-24T14:26:06Z2009-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-equivalent7jQuery document.createElement equivalent?Rob Stevenson-Leggett2008-11-06T12:26:31Z2009-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-control5ReportViewer Client Print Control "Unable to load client print control"?Rob Stevenson-Leggett2008-12-04T10:29:27Z2009-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-choice0EpiServer CMS 5 R2: Custom Page Providers - The right choice?Rob Stevenson-Leggett2009-02-03T10:30:06Z2009-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><page id="10011" parent="10010" pagetypeid="3" versionid="1" security="Everyone:Read;Administrators:Create,Edit">
<property name="PageGUID">35a988fe-2bc1-4e45-a41f-3a009a660551</property>
<property name="PageTypeID">3</property>
<property name="PageWorkStatus">4</property>
<property name="PageFolderID">118</property>
<property name="PageTypeName">[Public] Standard page</property>
<property name="PageMasterLanguageBranch">en</property>
<property name="PageLanguageBranch">en</property>
<!---- SNIP! ---->
<property name="Heading">A subpage</property>
<property name="MainBody"><p>an external subpage</p></property>
<property name="SecondaryBody"><p>second body</p></property>
<property name="MetaAuthor">John Doe</property>
</page>
</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-1Why can't I set an environment variable on Windows Server 2008?Rob Stevenson-Leggett2009-05-26T12:17:05Z2009-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-procs0Enterprise library caching parameters on stored procs?Rob Stevenson-Leggett2009-04-01T09:39:19Z2009-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<long, string> GetQueue(int maxItems)
{
var sq = new SqlDatabase(_connString.ConnectionString);
var result = new Dictionary<long, string>();
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#11930970Answer by Rob Stevenson-Leggett for C# Rest web service and Android ClientRob Stevenson-Leggett2009-07-28T09:56:22Z2009-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#11886101Answer by Rob Stevenson-Leggett for Fastest editor/ide for for TDD workflow: test > code > test?Rob Stevenson-Leggett2009-07-27T14:48:53Z2009-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#116478815Answer by Rob Stevenson-Leggett for To charge or not to charge?Rob Stevenson-Leggett2009-07-22T11:59:27Z2009-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-scenario0Relationship between URL and Filepath in a URL-rewriting scenario..Rob Stevenson-Leggett2009-03-18T13:10:48Z2009-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-fields0Subsonic 2.2: Update only works for some fields?Rob Stevenson-Leggett2009-07-08T11:20:24Z2009-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#10974462Answer by Rob Stevenson-Leggett for Web Service use in Android.Rob Stevenson-Leggett2009-07-08T11:21:35Z2009-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-android2Unresolved Host Exception AndroidRob Stevenson-Leggett2009-06-14T14:06:10Z2009-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#9932120Answer by Rob Stevenson-Leggett for html 5 v/s XHTMLRob Stevenson-Leggett2009-06-14T17:01:29Z2009-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-dimension0SQL2008: MSOLAP & SSRS Class not registered error with certain dimension.Rob Stevenson-Leggett2009-01-21T11:37:46Z2009-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#9159330Answer by Rob Stevenson-Leggett for ASP.NET - Url Rewriting vs. RoutingRob Stevenson-Leggett2009-05-27T14:11:16Z2009-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#9103911Answer by Rob Stevenson-Leggett for Why can't I set an environment variable on Windows Server 2008?Rob Stevenson-Leggett2009-05-26T12:18:48Z2009-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-procedures5What's the most elegant way to use stored procedures?Rob Stevenson-Leggett2009-03-27T14:20:16Z2009-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#8695040Answer by Rob Stevenson-Leggett for What does your code do to contact you when things go badly wrong?Rob Stevenson-Leggett2009-05-15T15:56:00Z2009-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-iis1Move WCF service from test console app to IISRob Stevenson-Leggett2009-05-15T14:10:41Z2009-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#7969071Answer by Rob Stevenson-Leggett for How to improve software design skills?Rob Stevenson-Leggett2009-04-28T09:02:14Z2009-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#2869422Answer by Rob Stevenson-Leggett for ASP.NET How to best create a test DB when doing TDD?Rob Stevenson-Leggett2008-11-13T13:47:05Z2009-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<ICatalogRepository>();
</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<Product> _fakes;
public FakeCatalogCatalogRepository()
{
_fakes = new List<Product>();
//Set up some initial fake data
for(int i=0; i < 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#7811211Answer by Rob Stevenson-Leggett for Multi language: asp:label aganist html:label with asp:LiteralRob Stevenson-Leggett2009-04-23T10:19:00Z2009-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><span</code>></p>
http://stackoverflow.com/questions/748087/passing-parameters-as-xml-to-a-stored-procedure3Passing Parameters as Xml to a Stored ProcedureRob Stevenson-Leggett2009-04-14T15:16:38Z2009-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<string, string> nvc)
{
//TODO: Refactor
StringBuilder sb = new StringBuilder();
sb.Append("<params>");
foreach (KeyValuePair<string, string> param in nvc)
{
sb.Append("<param>");
sb.Append("<" + param.Key + ">");
sb.Append(param.Value);
sb.Append("</" + param.Key + ">");
sb.Append("</param>");
}
sb.Append("</params>");
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("<params><TestParameter>{0}</TestParameter></params>",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#7521440Answer by Rob Stevenson-Leggett for Basic LinqToSql question: Why won't this compile?Rob Stevenson-Leggett2009-04-15T15:08:25Z2009-04-15T15:08:25Z<p>Because you've typed "var" as a Table<code><Territory</code>> and then try to reassign it as a IQueryable<code><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#7512681Answer by Rob Stevenson-Leggett for AJAX checkbox if statementRob Stevenson-Leggett2009-04-15T11:29:39Z2009-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#643078Comment by Rob Stevenson-Leggett on What language decision in C# annoys you?Rob Stevenson-Leggett2009-09-17T11:49:13Z2009-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#1193090Comment 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-Leggett2009-07-28T10:14:42Z2009-07-28T10:14:42ZAh sorry I've not understood the question, apologies.http://stackoverflow.com/questions/1176634/what-is-critical-path/1176687#1176687Comment by Rob Stevenson-Leggett on What is Critical Path?Rob Stevenson-Leggett2009-07-24T09:56:09Z2009-07-24T09:56:09ZNice answer. Concise. +1http://stackoverflow.com/questions/1108827/how-to-display-weather-using-any-weather-website/1108839#1108839Comment by Rob Stevenson-Leggett on How to display weather using any weather websiteRob Stevenson-Leggett2009-07-10T10:39:36Z2009-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#1108396Comment by Rob Stevenson-Leggett on ASP.NET still run without code files, how?Rob Stevenson-Leggett2009-07-10T08:38:08Z2009-07-10T08:38:08ZThis 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#1099813Comment by Rob Stevenson-Leggett on Subsonic 2.2: Update only works for some fields?Rob Stevenson-Leggett2009-07-09T13:57:39Z2009-07-09T13:57:39ZIt'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-fieldsComment by Rob Stevenson-Leggett on Subsonic 2.2: Update only works for some fields?Rob Stevenson-Leggett2009-07-09T09:56:43Z2009-07-09T09:56:43ZHi 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#1099813Comment by Rob Stevenson-Leggett on Subsonic 2.2: Update only works for some fields?Rob Stevenson-Leggett2009-07-09T09:43:27Z2009-07-09T09:43:27ZNo i did not but I will.http://stackoverflow.com/questions/1097440/web-service-use-in-android/1097446#1097446Comment by Rob Stevenson-Leggett on Web Service use in Android.Rob Stevenson-Leggett2009-07-08T11:33:15Z2009-07-08T11:33:15ZSince 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 "service reference" model ala .NET/Netbeans Javahttp://stackoverflow.com/questions/75428/mmc-could-not-create-the-snap-in-error-when-launching-internet-information-servic/76401#76401Comment by Rob Stevenson-Leggett on mmc could not create the snap in error when launching internet information servicesRob Stevenson-Leggett2009-07-02T12:00:24Z2009-07-02T12:00:24ZCheers this worked for me too.http://stackoverflow.com/questions/992880/unresolved-host-exception-android/1013733#1013733Comment by Rob Stevenson-Leggett on Unresolved Host Exception AndroidRob Stevenson-Leggett2009-06-19T09:30:10Z2009-06-19T09:30:10ZAwww so annoying :) Fixed. Thankyou.http://stackoverflow.com/questions/992880/unresolved-host-exception-android/1004673#1004673Comment by Rob Stevenson-Leggett on Unresolved Host Exception AndroidRob Stevenson-Leggett2009-06-19T09:28:34Z2009-06-19T09:28:34ZThanks for the info!http://stackoverflow.com/questions/1009970/android-eclipse-plugin-instrumentation-test-runner-not-specified/1012421#1012421Comment by Rob Stevenson-Leggett on Android Eclipse Plugin: Instrumentation Test Runner not specified.Rob Stevenson-Leggett2009-06-19T09:26:53Z2009-06-19T09:26:53ZThanks so much :)http://stackoverflow.com/questions/992880/unresolved-host-exception-android/1004673#1004673Comment by Rob Stevenson-Leggett on Unresolved Host Exception AndroidRob Stevenson-Leggett2009-06-17T23:02:39Z2009-06-17T23:02:39ZIs 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#1004673Comment by Rob Stevenson-Leggett on Unresolved Host Exception AndroidRob Stevenson-Leggett2009-06-17T22:58:49Z2009-06-17T22:58:49ZRight, 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!