User Tim Peel - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T15:03:35Zhttp://stackoverflow.com/feeds/user/31412http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/283435/asp-net-mvc-mvc-routing-just-fails-in-ii61ASP.NET MVC - .mvc Routing just fails in II6Tim Peel2008-11-12T09:43:09Z2009-11-24T06:24:20Z
<p>Hi,</p>
<p>I have been banging my head against a brick wall trying to deploy my MVC app on IIS6 (<a href="http://stackoverflow.com/questions/275920/aspnet-mvc-on-iis-6-wildcard-mapping-the-incoming-request-does-not-match-any-ro">linked question</a>)</p>
<p>I have scrapped wildcard mapping for the time being and am trying to get the .mvc extension working. Everything is configured correctly in IIS and the .mvc extension is pointing to the .NET dll for all verb types (unchecked verify if exists option).</p>
<p>Each time I make a request, all I get is the .NET 404 page. /Home.mvc and /Home.mvc/Index all return that page.</p>
<p>I have not made any changes to the default Web.config and all my routes are configured with extenionless and extension based equivalents.</p>
<p>I appreciate how easy this configuration must be (sound) for everyone reading who has got it working but I assure you I am not doing anything different and mine will not work. I even tried deploying it on a different server with IIS6 and the same problems happened there too.</p>
<p>Could there be any other reasons why the routing module/handler is completely missing the request and letting it fall through to the standard .NET 404 error? Strange permissions?</p>
<p>For the IIS 404 errors, I updated the custom error setting so it called the Default.aspx page in the route of the site. This is the default page from the MVC beta template generated in visual studio, which does the following in the code behind:</p>
<pre><code>HttpContext.Current.RewritePath(Request.ApplicationPath);
IHttpHandler httpHandler = new MvcHttpHandler();
httpHandler.ProcessRequest(HttpContext.Current);
</code></pre>
<p>This just then gives me the error from the previous post:</p>
<pre><code>[HttpException (0x80004005): The incoming request does not match any route.]
System.Web.Routing.UrlRoutingHandler.ProcessRequest(HttpContextBase httpContext) +15589
System.Web.Routing.UrlRoutingHandler.ProcessRequest(HttpContext httpContext) +40
System.Web.Routing.UrlRoutingHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext context) +7
......
</code></pre>
http://stackoverflow.com/questions/275920/asp-net-mvc-on-iis-6-wildcard-mapping-the-incoming-request-does-not-match-any2ASP.NET MVC on IIS 6 - wildcard mapping - the incoming request does not match any routeTim Peel2008-11-09T13:35:18Z2009-11-24T06:14:14Z
<p>Hi,</p>
<p>I have been trying to set up my Beta 1 MVC app on IIS 6 and cannot get it to run correctly. I have added a Wildcard mapping to the .net isapi DLL as suggested in other blog posts but get the following error when I access the root of the website:</p>
<pre><code>The incoming request does not match any route.
..
[HttpException (0x80004005): The incoming request does not match any route.]
System.Web.Routing.UrlRoutingHandler.ProcessRequest(HttpContextBase httpContext) +147
System.Web.Routing.UrlRoutingHandler.ProcessRequest(HttpContext httpContext) +36
System.Web.Routing.UrlRoutingHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext context) +4
HCD.Intranet.Web.Default.Page_Load(Object sender, EventArgs e) +81
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +15
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +33
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +47
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1436
</code></pre>
<p>I am using the Default.aspx page supplied in the MVC template application that rewrites access to the root of the website properly.</p>
<pre><code>public partial class Default : Page
{
public void Page_Load(object sender, System.EventArgs e)
{
HttpContext.Current.RewritePath(Request.ApplicationPath);
IHttpHandler httpHandler = new MvcHttpHandler();
httpHandler.ProcessRequest(HttpContext.Current);
}
}
</code></pre>
<p>If I try and access a route within the application, such as /Project, I get the standard IIS 404 error page, not the .net error page.</p>
<p>I tried adding the following line to my Web.config httpHandlers section:</p>
<pre><code><add verb="*" path="*" validate="false" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</code></pre>
<p>This gave me a different error - the .net 404 error page.</p>
<p>I added the following to my Global.asax, which did nothing:</p>
<pre><code>protected void Application_BeginRequest(object sender, EventArgs e)
{
if (Context.Request.FilePath.Equals("/"))
Context.RewritePath("Default.aspx");
}
</code></pre>
<p>I am using the following route configuration (uses the restful routing supplied by the MvcContrib project):</p>
<pre><code>routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
SimplyRestfulRouteHandler.BuildRoutes(routes);
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
</code></pre>
<p>Any suggestions would be grealy received as I've exhausted all options for the time I have right now.</p>
<p>Many thanks.</p>
http://stackoverflow.com/questions/954954/visual-studio-2008-custom-config-xsd-intellisense-auto-complete-broken0Visual Studio 2008 custom config xsd intellisense auto complete broken!Tim Peel2009-06-05T09:10:54Z2009-11-05T21:00:02Z
<p>Hi,</p>
<p>I used to use the intellisense feature within visual studio 2003 for editing a custom .config file against my custom xsd schema.</p>
<p>I put the schema in:</p>
<p>Common7\Packages\schemas\xml</p>
<p>Everything worked happily, no problem.</p>
<p>I have just tried to do the same in VS 2008 and there is no intellisense. The schema viewer for the .config file in the properties windows says that my custom schema is loaded and everything should work but when I try nothing is suggested.</p>
<p>There seem to other problems related to XAML intellisense but none of these solutions worked for me.</p>
<p>Stuck and frustrated! Anyone else had this before or know of something that has changed in 2008?</p>
<p>Many thanks</p>
http://stackoverflow.com/questions/690492/configuring-visual-studio-source-server-symbol-store-against-unsupported-vault0Configuring Visual Studio Source Server / Symbol Store against unsupported Vault SCM appTim Peel2009-03-27T16:35:05Z2009-03-31T22:20:21Z
<p>Hi,</p>
<p>I am trying to configure our in house development code as a symbol server, with source control file access when debugging in Visual Studio 2008. We can use this on other projects that reference our core set of libraries.</p>
<p>Sadly, we use SourceGear Vault for our SCM system, which is currently unsupported when it comes to indexing our .PDB files with their source control references.</p>
<p>I wouldn't really need direct source control access, I'd be happy with just a network share access but I can't see how to update the references in the PDB files.</p>
<p>I have the symbol server configured and have added what would seem the right references to the original build source code, however, when I debug in Visual Studio and try and step into the code referenced, it does not load the PDBs from the source server and consequently no source code is available.</p>
<p>Also, where Visual Studio can download the core .NET PDB files via the Load Symbols command, I do not have that option when I click the module.</p>
<p>Does anyone have any personal experience of setting this sort of thing up?</p>
<p>Many thanks if anyone can help.</p>
http://stackoverflow.com/questions/690492/configuring-visual-studio-source-server-symbol-store-against-unsupported-vault/703307#7033070Answer by Tim Peel for Configuring Visual Studio Source Server / Symbol Store against unsupported Vault SCM appTim Peel2009-03-31T22:20:21Z2009-03-31T22:20:21Z<p>This issue has kind of been resolved <a href="http://stackoverflow.com/questions/694665/ms-source-server-source-stream-is-apparently-not-there-when-viewing-with-srctoo">at this other related question</a>.</p>
<p>Source indexing was missing from the overall process so the PDB symbol server should work properly now.</p>
http://stackoverflow.com/questions/694665/ms-source-server-source-stream-is-apparently-not-there-when-viewing-with-srctoo/703298#7032981Answer by Tim Peel for MS Source Server - source stream is apparently not there when viewing with srctoolTim Peel2009-03-31T22:17:33Z2009-03-31T22:17:33Z<p>I have resolved my problem - the source file path that was written to the PDB during build was slightly different to the one written as part of the Subversion source index task.</p>
<p>This must invalidate the source search within Visual Studio as the two paths don't match.</p>
<p>Also writing my own simplified source index stream to my PDB files from a custom NAnt task, which hooks up to Vault, our SCM system.</p>
http://stackoverflow.com/questions/694665/ms-source-server-source-stream-is-apparently-not-there-when-viewing-with-srctoo1MS Source Server - source stream is apparently not there when viewing with srctoolTim Peel2009-03-29T14:07:06Z2009-03-31T22:17:33Z
<p>Hi,</p>
<p>I have been playing around with the MS Source Server stuff in the MS Debugging Tools install.</p>
<p>At present, I am running my code/pdbs through the Subversion indexing command, which is now running as expected. It creates the stream for a given pdb file and writes it to the pdb file.</p>
<p>However when I use that DLL and associated pdb in visual studio 2008, it says the source code cannot be retrieved.</p>
<p>If I check the pdb against srctool is says none of the source files contained are indexed, which is very strange as the process prior ran fine.</p>
<p>If I check the stream that was generated from the svnindex.cmd run for the pdb, srctool says all source files are indexed.</p>
<p><strong>Why would there be a difference?</strong></p>
<p>I have opened the pdb file in a text editor and I can see the original references to the source files on my machine (also under the srcsrv header name) and the new "injected" source server links to my subversion repository).</p>
<p><strong>Should both references still exist in the pdb? I would have expected one to be removed?</strong></p>
<p>Either way, visual studio 2008 will not pick up my source references so I am a bit lost as to what to try next. As far as I can tell, I have done everything I should have.</p>
<p>Anyone have similar experiences?</p>
<p>Many thanks.</p>
http://stackoverflow.com/questions/694427/syncing-a-folder-against-a-subversion-repo0Syncing a folder against a Subversion repoTim Peel2009-03-29T10:24:48Z2009-03-29T11:05:16Z
<p>Hi,</p>
<p>Is there a quick way, command line tool or whatever, that will look at a folder and work out the SVN operations required to add new files, delete old ones, update existing and then commit everything?</p>
<p>I'm hooking this up via nant and don't want to have to mess around doing it myself.</p>
<p>thanks</p>
http://stackoverflow.com/questions/631591/net-winform-writing-within-panel-causes-scrolling-to-jump0.NET WinForm writing within panel causes scrolling to jumpTim Peel2009-03-10T18:07:22Z2009-03-22T14:11:27Z
<p>Hi,</p>
<p>I have a FlowPanelControl and a custom user control (contains a label and button). I am adding instances of the custom user control to the controls collection of the panel, which flow beneath each other as expected; showing the vertical scroll bar fine too.</p>
<p>When a user clicks a button within one of the added user controls, it starts a timer and writes the elapsed time to the label. When multiple instances of the user control are present, there are multiple buttons with labels; all of which can be started and stopped as required. Think of them as a mini stopwatch.</p>
<p>My problem is that writing to the labels is changing the scroll bar location of the containing flow panel. If you scroll to the bottom and the last user control to be started was first in the list, it moves focus back up to the top.</p>
<p>I have tried preventing focus on the buttons but don't think this is the problem.</p>
<p>Does anyone know what could be causing this? Any help would be much appreciated, thanks.</p>
http://stackoverflow.com/questions/631591/net-winform-writing-within-panel-causes-scrolling-to-jump/671059#6710590Answer by Tim Peel for .NET WinForm writing within panel causes scrolling to jumpTim Peel2009-03-22T14:11:27Z2009-03-22T14:11:27Z<p>I solved my problem by changing the label to a text box. The scrolling no longer flickers when a value is written to one of the controls in the list.</p>
http://stackoverflow.com/questions/524567/linq-and-object-initialisation0linq and object initialisationTim Peel2009-02-07T20:53:12Z2009-03-21T11:53:30Z
<p>If I have something like:</p>
<pre><code>var query = from children in _data.Children
where children.ChildId == childId
select new CustomModel.MyChild
{
ChildId = children.ChildId,
Name = children.ChildName
};
return query.FirstOrDefault();
</code></pre>
<p>Where I want the resultant object to be my custom model.</p>
<p>Can I handle the custom model instantiation in a different method, which could be reused if I had multiple linq queries that all generated a custom child model?</p>
<p>For example,</p>
<pre><code>var query = from children in _data.Children
where children.ChildId == childId
select CreateMyCustomChild([param ??]);
return query.FirstOrDefault();
</code></pre>
<p>This may well be impossible, I don't know, but what would the method signature be like if it is possible?</p>
<p>I'm only thinking reuse for when multiple linq queries contain duplicate object initialisation code.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/650059/strange-behaviour-with-structuremap-asp-mvc-visual-studio-linqtosql4Strange behaviour with StructureMap / ASP.MVC / Visual Studio / LinqToSqlTim Peel2009-03-16T11:40:47Z2009-03-21T11:10:09Z
<p>I have been using the new MVC framework with StructureMap recently and have had good results overall, however, I keep running into a very strange error that I cannot understand or work out how to resolve.</p>
<p>This is my architecture:</p>
<ul>
<li>DBContext - linqToSql data context.</li>
<li>IRepository - contract defining data methods. </li>
<li>IService - contract defining service methods. </li>
<li>Controllers - two in this example.</li>
</ul>
<p>I therefore have:</p>
<pre><code>public class Repo : IRepository
{
public Repo(DBContext db)
{
.....
}
}
public class Service : IService
{
public Service(IRepository repo)
{
.....
}
}
public class ControllerOne : Controller
{
public ControllerOne(IService service)
{
.....
}
}
public class ControllerTwo : Controller
{
public ControllerTwo(IService service)
{
.....
}
}
</code></pre>
<p>StructureMap is being used to define concrete types for IRepository and IService and the DBContext is constructed by the lamba expression - () => new DBContext() configured by DSL registry.</p>
<p><strong>There is no caching of the DBContext at present</strong></p>
<p>Onto the problem:</p>
<p>My index page loads and makes two simultaneous Ajax requests to ControllerOne and ControllerTwo, which are constructed via the StructureMap controller factory from MvcContrib.</p>
<p>StructureMap is injecting the concrete types of IService, which in turn are created with the configured IRepository instance and a new DBContext object.</p>
<p>ControllerOne is requesting a model from the IService instance, which is then returned as a JsonActionResult, which is rendered by Newtonsoft.Json.</p>
<p>ControllerTwo is requesting a different model from the IService instance, which is also serialised to a Json object when the MVC framework executes the ActionResult.</p>
<p>I am running the website via Cassini in VS2008.</p>
<p>The problem I am seeing every now and then is an error generated from within LinqToSql</p>
<ul>
<li>data cannot be read, there is already a reader open or </li>
<li>cannot load data into a data table as the data already exists (I do not have the exact exceptions to hand at present but both are internal to LinqToSql).</li>
</ul>
<p>If the error happens in ControllerOne then ControllerTwo will also fail with a similar error, as if the two requests are running with shared objects.</p>
<p>It doesn't error all the time but it's enough to make me concerned about my architecture and that it's configured wrong in some way.</p>
<p>Is there any way StructureMap could be returning the same instance of ControllerOne and ControllerTwo on subsequent requests, or if it's caching the DBContext in any way? Even though I am not asking it to?</p>
<p>Has anyone seen anything similar when working within Visual Studio / Cassini? Does going through IIS help?</p>
<p>Should I removed LinqToSql?</p>
<p>Closing down Visual Studio and opening up again can often resolve the problem for a while.</p>
<p>Many thanks if anyone can shed any light on the problem.</p>
<p>EDIT: Including logging snippet from NLog log file (thread id is number before semi colon):</p>
<pre><code>03/20/2009 01:40:32 12: controller=Timesheet,date=2001-05-06,Action=WeekEnding /beta/Timesheet/2001-05-06?_dc=1237513232397
03/20/2009 01:40:32 10: controller=Timesheet,date=2001-05-06,Action=WeekEnding /beta/Timesheet/2001-05-06?_dc=1237513232449
03/20/2009 01:40:32 10: There is already an open DataReader associated with this Command which must be closed first. System.InvalidOperationException[br] at System.Data.SqlClient.SqlInternalConnectionTds.ValidateConnectionForExecute(SqlCommand command)
at System.Data.SqlClient.SqlConnection.ValidateConnectionForExecute(String method, SqlCommand command)
at System.Data.SqlClient.SqlCommand.ValidateCommand(String method, Boolean async)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
at System.Data.Common.DbCommand.ExecuteReader()
at System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
at System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
at System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
at System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
at System.Linq.Queryable.Sum[TSource](IQueryable`1 source, Expression`1 selector)
at HCD.Intranet.Core.Data.Linq.LinqEmployeeRepository.CalculateHolidaysRemaining(Employee employee, DateTime weekEnding, Int32 nonProjectId)
at HCD.Intranet.Core.Services.Impl.EmployeeService.CalculateHolidaysRemaining(Employee employee, DateTime weekEnding)
at HCD.Intranet.Core.Models.Timesheet.CalculateHolidaysRemaining()
at HCD.Intranet.Core.Models.Json.TimesheetJsonConverter.WriteTimesheet(JsonWriter writer, Timesheet timesheet)
at HCD.Intranet.Core.Models.Json.TimesheetJsonConverter.WriteJson(JsonWriter writer, Object value)
at Newtonsoft.Json.JsonSerializer.SerializeValue(JsonWriter writer, Object value, JsonConverter memberConverter)
at Newtonsoft.Json.JsonSerializer.WriteMemberInfoProperty(JsonWriter writer, Object value, JsonMemberMapping memberMapping)
at Newtonsoft.Json.JsonSerializer.SerializeObject(JsonWriter writer, Object value)
at Newtonsoft.Json.JsonSerializer.SerializeValue(JsonWriter writer, Object value, JsonConverter memberConverter)
at Newtonsoft.Json.JsonSerializer.Serialize(JsonWriter jsonWriter, Object value)
at HCD.Intranet.Core.Web.Mvc.NewtonsoftJsonResult.ExecuteResult(ControllerContext context)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<InvokeActionResultWithFilters>b__e()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<>c__DisplayClass13.<InvokeActionResultWithFilters>b__10()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<>c__DisplayClass13.<InvokeActionResultWithFilters>b__10()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult)
at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)
03/20/2009 01:40:32 12: Invalid attempt to call Read when reader is closed. System.InvalidOperationException[br] at System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
at System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
at System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
at System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
at System.Linq.Queryable.Sum[TSource](IQueryable`1 source, Expression`1 selector)
at HCD.Intranet.Core.Data.Linq.LinqEmployeeRepository.CalculateHolidaysRemaining(Employee employee, DateTime weekEnding, Int32 nonProjectId)
at HCD.Intranet.Core.Services.Impl.EmployeeService.CalculateHolidaysRemaining(Employee employee, DateTime weekEnding)
at HCD.Intranet.Core.Models.Timesheet.CalculateHolidaysRemaining()
at HCD.Intranet.Core.Models.Json.TimesheetJsonConverter.WriteTimesheet(JsonWriter writer, Timesheet timesheet)
at HCD.Intranet.Core.Models.Json.TimesheetJsonConverter.WriteJson(JsonWriter writer, Object value)
at Newtonsoft.Json.JsonSerializer.SerializeValue(JsonWriter writer, Object value, JsonConverter memberConverter)
at Newtonsoft.Json.JsonSerializer.WriteMemberInfoProperty(JsonWriter writer, Object value, JsonMemberMapping memberMapping)
at Newtonsoft.Json.JsonSerializer.SerializeObject(JsonWriter writer, Object value)
at Newtonsoft.Json.JsonSerializer.SerializeValue(JsonWriter writer, Object value, JsonConverter memberConverter)
at Newtonsoft.Json.JsonSerializer.Serialize(JsonWriter jsonWriter, Object value)
at HCD.Intranet.Core.Web.Mvc.NewtonsoftJsonResult.ExecuteResult(ControllerContext context)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<InvokeActionResultWithFilters>b__e()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<>c__DisplayClass13.<InvokeActionResultWithFilters>b__10()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<>c__DisplayClass13.<InvokeActionResultWithFilters>b__10()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult)
at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)
03/20/2009 01:41:58 12: controller=Timesheet,month=6,year=2001,Action=Calendar /beta/Timesheet/Calendar/6/2001?_dc=1237513318470
03/20/2009 01:41:59 10: controller=Timesheet,date=2001-06-03,Action=WeekEnding /beta/Timesheet/2001-06-03?_dc=1237513318509
03/20/2009 01:41:59 12: The null value cannot be assigned to a member with type System.Int32 which is a non-nullable value type. System.InvalidOperationException[br] at Read_TimesheetEntry(ObjectMaterializer`1 )
at System.Data.Linq.SqlClient.ObjectReaderCompiler.ObjectReader`2.MoveNext()
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
at HCD.Intranet.Core.Data.Linq.LinqTimesheetRepository.GetEntries(Int32 timesheetHeaderId)
at HCD.Intranet.Core.Services.Impl.TimesheetService.GetEntries(Int32 timesheetHeaderId)
at HCD.Intranet.Core.Models.Timesheet.get_InnerEntries()
at HCD.Intranet.Core.Models.TimeMap..ctor(Timesheet timesheet)
at HCD.Intranet.Core.Models.Json.TimesheetCalendarJsonConverter.WriteTimesheet(JsonWriter writer, Timesheet[] timesheets)
at HCD.Intranet.Core.Models.Json.TimesheetCalendarJsonConverter.WriteJson(JsonWriter writer, Object value)
at Newtonsoft.Json.JsonSerializer.SerializeValue(JsonWriter writer, Object value, JsonConverter memberConverter)
at Newtonsoft.Json.JsonSerializer.Serialize(JsonWriter jsonWriter, Object value)
at HCD.Intranet.Core.Web.Mvc.NewtonsoftJsonResult.ExecuteResult(ControllerContext context)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<InvokeActionResultWithFilters>b__e()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<>c__DisplayClass13.<InvokeActionResultWithFilters>b__10()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<>c__DisplayClass13.<InvokeActionResultWithFilters>b__10()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult)
at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)
03/20/2009 01:41:59 12: controller=Timesheet,date=2001-06-03,Action=WeekEnding /beta/Timesheet/2001-06-03?_dc=1237513318545
03/20/2009 01:41:59 12: There is already an open DataReader associated with this Command which must be closed first. System.InvalidOperationException[br] at System.Data.SqlClient.SqlInternalConnectionTds.ValidateConnectionForExecute(SqlCommand command)
at System.Data.SqlClient.SqlConnection.ValidateConnectionForExecute(String method, SqlCommand command)
at System.Data.SqlClient.SqlCommand.ValidateCommand(String method, Boolean async)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
at System.Data.Common.DbCommand.ExecuteReader()
at System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
at System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
at System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
at System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
at System.Linq.Queryable.Sum[TSource](IQueryable`1 source, Expression`1 selector)
at HCD.Intranet.Core.Data.Linq.LinqEmployeeRepository.CalculateHolidaysRemaining(Employee employee, DateTime weekEnding, Int32 nonProjectId)
at HCD.Intranet.Core.Services.Impl.EmployeeService.CalculateHolidaysRemaining(Employee employee, DateTime weekEnding)
at HCD.Intranet.Core.Models.Timesheet.CalculateHolidaysRemaining()
at HCD.Intranet.Core.Models.Json.TimesheetJsonConverter.WriteTimesheet(JsonWriter writer, Timesheet timesheet)
at HCD.Intranet.Core.Models.Json.TimesheetJsonConverter.WriteJson(JsonWriter writer, Object value)
at Newtonsoft.Json.JsonSerializer.SerializeValue(JsonWriter writer, Object value, JsonConverter memberConverter)
at Newtonsoft.Json.JsonSerializer.WriteMemberInfoProperty(JsonWriter writer, Object value, JsonMemberMapping memberMapping)
at Newtonsoft.Json.JsonSerializer.SerializeObject(JsonWriter writer, Object value)
at Newtonsoft.Json.JsonSerializer.SerializeValue(JsonWriter writer, Object value, JsonConverter memberConverter)
at Newtonsoft.Json.JsonSerializer.Serialize(JsonWriter jsonWriter, Object value)
at HCD.Intranet.Core.Web.Mvc.NewtonsoftJsonResult.ExecuteResult(ControllerContext context)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<InvokeActionResultWithFilters>b__e()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<>c__DisplayClass13.<InvokeActionResultWithFilters>b__10()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<>c__DisplayClass13.<InvokeActionResultWithFilters>b__10()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult)
at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)
03/20/2009 01:41:59 10: Invalid attempt to call Read when reader is closed. System.InvalidOperationException[br] at System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
at System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
at System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
at System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
at System.Linq.Queryable.Sum[TSource](IQueryable`1 source, Expression`1 selector)
at HCD.Intranet.Core.Data.Linq.LinqEmployeeRepository.CalculateHolidaysRemaining(Employee employee, DateTime weekEnding, Int32 nonProjectId)
at HCD.Intranet.Core.Services.Impl.EmployeeService.CalculateHolidaysRemaining(Employee employee, DateTime weekEnding)
at HCD.Intranet.Core.Models.Timesheet.CalculateHolidaysRemaining()
at HCD.Intranet.Core.Models.Json.TimesheetJsonConverter.WriteTimesheet(JsonWriter writer, Timesheet timesheet)
at HCD.Intranet.Core.Models.Json.TimesheetJsonConverter.WriteJson(JsonWriter writer, Object value)
at Newtonsoft.Json.JsonSerializer.SerializeValue(JsonWriter writer, Object value, JsonConverter memberConverter)
at Newtonsoft.Json.JsonSerializer.WriteMemberInfoProperty(JsonWriter writer, Object value, JsonMemberMapping memberMapping)
at Newtonsoft.Json.JsonSerializer.SerializeObject(JsonWriter writer, Object value)
at Newtonsoft.Json.JsonSerializer.SerializeValue(JsonWriter writer, Object value, JsonConverter memberConverter)
at Newtonsoft.Json.JsonSerializer.Serialize(JsonWriter jsonWriter, Object value)
at HCD.Intranet.Core.Web.Mvc.NewtonsoftJsonResult.ExecuteResult(ControllerContext context)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<InvokeActionResultWithFilters>b__e()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<>c__DisplayClass13.<InvokeActionResultWithFilters>b__10()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass11.<>c__DisplayClass13.<InvokeActionResultWithFilters>b__10()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult)
at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)
</code></pre>
http://stackoverflow.com/questions/524075/lazy-loading-whats-the-best-approach6Lazy loading - what's the best approach?Tim Peel2009-02-07T16:33:48Z2009-03-18T02:56:44Z
<p>I have seen numerous examples of lazy loading - what's your choice?</p>
<p>Given a model class for example:</p>
<pre><code>public class Person
{
private IList<Child> _children;
public IList<Child> Children
{
get {
if (_children == null)
LoadChildren();
return _children;
}
}
}
</code></pre>
<p>The Person class should not know anything about how it's children are loaded .... or should it? Surely it should control when properties are populated, or not?</p>
<p>Would you have a repository that couples a Person together with its children collection or would you use a different approach, such as using a <a href="http://stackoverflow.com/questions/375881/lazy-loading-and-lazy-execution-patterns">lazyload</a> class - even then, I don't want a lazyload class blurring in my model architecture.</p>
<p>How would you handle performance if first requesting a Person and then its Children (i.e. not lazy loading in this instance) or somehow lazy loading.</p>
<p>Does all this boil down to personal choice?</p>
http://stackoverflow.com/questions/476062/asp-net-mvc-adding-action-filters-programmatically1ASP.NET MVC - adding action filters programmaticallyTim Peel2009-01-24T14:05:43Z2009-02-19T12:19:27Z
<p>Hello,</p>
<p>I've been doing a bit of research regarding action filters and wondered if there was a way to add them programmatically to controllers??</p>
<p>To give some context, I'd like to add a logging filter if logging is configured in the web.config, otherwise I don't want the filter to exist in the execution chain of each action method.</p>
<p>I appreciate I can put a check in the actual filter code itself to see if logging is enabled but don't want to have to do this is possible.</p>
<p>Many thanks!</p>
http://stackoverflow.com/questions/554159/convenience-or-lazy-programming-ilist-management-protecting-ilist-add-method0Convenience or "lazy programming" IList management - protecting IList.Add methodTim Peel2009-02-16T18:45:25Z2009-02-16T19:25:09Z
<p>How do you manage this simple scenario when you have an object with a list of items. EG:</p>
<pre><code>public class ContainerObject
{
IList<ChildObject> Children { get; }
public void AddCustom(ChildObject toAdd)
{
// Some validation ...
Children.Add(toAdd);
}
}
</code></pre>
<p>Assuming the collection is initialised to an implementation of IList, is there any way in which to control the way in which items are added to the list?</p>
<p>For example, I have another method on the ContainerObject class that takes a ChildObject and adds it to the list. This method is required to perform some basic validation on the ChildObject before adding it.</p>
<p>I am being lazy in that I don't want to mess around and write a custom list interface (without an add method) that consuming developers need to implement. I am also using the ToList() method on the IQueryable interface so this is another reason for sticking with IList - it just works.</p>
<p>So, is there an approach in which you can police how items are added to the IList instance i.e. prevent use of the Add method and only allow adding to the collection via my custom method, or am I just asking for the impossible? ... and being lazy :(</p>
<p>I can think of a few hacky ways in which to check when items are added via my custom method or directly on the list but these seem hacky!</p>
<p>Anyone experience anything similar to this? If so, what did you do?</p>
http://stackoverflow.com/questions/501902/asp-net-mvc-asp-net-webform-data-access-application-whats-the-best-architect0ASP.NET MVC / ASP.NET WebForm data access application - what's the best architecture?Tim Peel2009-02-02T00:27:24Z2009-02-02T16:56:57Z
<p>In response to an <a href="http://stackoverflow.com/questions/498986/linqtosql-no-supported-translation-to-sql/499112#499112">answer</a> posted by Marc Gravell and his suggestion via email, I was wondering:</p>
<p><strong>What choices do people make when deciding on their architecture for a new project?</strong></p>
<p><hr /></p>
<p>This question could serve as a decent reference point for links/ideas/suggestions/architecture decisions, anything really that is of interest when deciding the best way to approach a new solution.</p>
<p>I am currently working on an ASP.NET MVC application - mainly as a exercise to increase my experience of the new framework - that works with an ExtJs front end passing Json objects between the layers.</p>
<p>Testability is very important so my .NET layer uses interfaces to define contracts and consists of a service layer, which handles data validation and application logic, which in turn interacts with a repository layer that just handles the data persistence and retrieval. All allowing me to test quite thoroughly.</p>
<p>I have a custom model hierarchy that is based on the database, however, it is not related to any ORM (I am using LinqToSql at present) tool tying it to a particular platform. My repositories return my custom models and not their own database structures, which will hopefully allow me to develop different repository implementations in the future without too many problems.</p>
<p>Another reason for this approach was that I am working with a legacy database that has some interesting design choices and cannot change the structure too much at present, so I wanted a bit more control over the resultant models.</p>
<p><hr /></p>
<p>All this may seem completely wrong to some of you so tell me what you think ;)</p>
http://stackoverflow.com/questions/498986/linqtosql-no-supported-translation-to-sql/500695#5006950Answer by Tim Peel for LinqToSQL - no supported translation to SQLTim Peel2009-02-01T12:10:41Z2009-02-01T12:10:41Z<p>Hi Marc,</p>
<p>Thanks for the reply. Appreciate your comments on the architecture and will look at making some changes. My playing around with ideas has been focused on the store front example by Rob Conery. Not sure if you're familiar with this or have any suggestions of better examples.</p>
<p>I didn't want to do the final restriction on ParentId in .NET as my real world example has too much data. I suspected that was the only way though!</p>
<p>Thanks again for your time.</p>
http://stackoverflow.com/questions/498986/linqtosql-no-supported-translation-to-sql1LinqToSQL - no supported translation to SQLTim Peel2009-01-31T15:18:49Z2009-02-01T12:10:41Z
<p>Hi,</p>
<p>I have been puzzling over a problem this morning with LinqToSQL. I'll try and summarise with the abbreviated example below to explain my point.</p>
<p>I have DB two tables:</p>
<pre><code>table Parent
{
ParentId
}
table Child
{
ChildId
ParentId [FK]
Name
Age
}
</code></pre>
<p>These have LinqToSQL equivalent classes in my project, however, I have written two custom model classes that I want my UI to use, instead of using the LinqToSQL classes.</p>
<p>My data access from the front end goes through a service class, which in turn calls a repository class, which queries the data via linq.</p>
<p>At the repository level I return an IQueryable by:</p>
<pre><code>return from data in _data.Children
select new CustomModel.Child
{
ChildId = data.ChildId,
ParentId = date.ParentId
};
</code></pre>
<p>My service layer then adds an additional query restriction by parent before returning the list of children for that parent.</p>
<pre><code>return _repository.GetAllChildren().Where(c => c.Parent.ParentId == parentId).ToList();
</code></pre>
<p>So at this point, I get the method has no supported translation to sql error when I run everything as the c.Parent property of my custom model cannot be converted. [The c.Parent property is an object reference to the linked parent model class.]</p>
<p>That all makes sense so my question is this:</p>
<blockquote>
<p>Can you provide the querying process
with some rules that will convert a
predicate expression into the correct
piece of SQL to run at the database
and therefore not trigger an error?</p>
</blockquote>
<p>I haven't done much work with linq up to now so forgive my lack of experience if I haven't explained this well enough.</p>
<p>Also, for those commenting on my choice of architecture, I have changed it to get around this problem and I am just playing around with ideas at this stage. I'd like to know if there is an answer for future reference.</p>
<p>Many thanks if anyone can help.</p>
http://stackoverflow.com/questions/482782/net-automated-build-with-cruisecontrol-net-nant-multiple-assembly-structure0.NET automated build with cruisecontrol.net + nant - multiple assembly structure / best practiceTim Peel2009-01-27T09:35:30Z2009-01-29T19:02:51Z
<p>Hi,</p>
<p>I'm doing some work with several shared .NET assemblies and a generic web application that I would like to handle better in our CC.NET/NAnt build environment.</p>
<p>Currently, we have several .NET assemblies (shared common code that we use in client projects) that exist in different .NET solutions within different repositories in our SCM (Vault incidentally). They are all configured under CC.NET separately so we have a decent amount of control over their build and deployment at present.</p>
<p>We have developed a CMS system that uses some of the .NET assemblies and includes a common administration website project and a template website example project. Out of this one solution we have the following elements that need to managed separately:</p>
<ul>
<li>Admin interface is not tied to .NET so it is template based and we are developing a PHP backend for it currently.</li>
<li>CMS shared assembly build on top of our other common company wide assemblies.</li>
<li>Control over functionality within each major CMS build/release.</li>
</ul>
<p>I'd like the build output of this solution to be a Visual Studio template, which we can use to develop other client sites and better manage version changes within the CMS itself, as we add features to the codebase.</p>
<p>I have a rough approach for all this and think it is achievable, however, I wanted to open this topic up for discussion and see what everyone else is doing when it comes to managing the build and deployment of multiple solutions.</p>
<p>Main considerations for us are:</p>
<ul>
<li>Do we make use of the integration queue functionality in CC.NET to ensure a build order and pull together the assemblies we need for the CMS at build time?</li>
<li>Debugging within a CMS client site i.e. stepping into the shared assemblies' code when the client solution is a version of the base CMS system and therefore separate.</li>
<li>Developing and extending the CMS when it uses shared assemblies i.e. do we add the assembly projects to the trunk solution during development (across source control repositories) and then rely on the build to pull it together or do we use a different approach entirely?</li>
<li>Any other issues people might have experienced that could change our way of thinking?</li>
</ul>
<p>Hopefully this question isn't too vague and some of you will have dealt with these issues. Look forward to hearing everyones experiences.</p>
<p>Many thanks!
Tim</p>
http://stackoverflow.com/questions/240263/nant-mbunit-cruisecontrol-selenium-passing-settings-to-the-test-assembly1NAnt, MbUnit, CruiseControl, Selenium - passing settings to the test assemblyTim Peel2008-10-27T15:17:09Z2009-01-15T12:49:22Z
<p>Hello,</p>
<p>I am putting together some ideas for our automated testing platform and have been looking at Selenium for the test runner.</p>
<p>I am wrapping the recorded Selenium C# scripts in an MbUnit test, which is being triggered via the MbUnit NAnt task. The Selenium test client is created as follows:</p>
<pre><code>selenium = new DefaultSelenium("host", 4444, "*iexplore", "http://[url]/");
</code></pre>
<p>How can I pass the host, port and url settings into the test so their values can be controlled via the NAnt task?</p>
<p>For example, I may have multiple Selenium RC servers listening and I want to use the same test code passing in each server address instead of embedding the settings within the tests themselves.</p>
<p>I have an approach mocked up using a custom NAnt task I have written but it is not the most elegant solution at present and I wondered if there was an easier way to accomplish what I want to do.</p>
<p>Many thanks if anyone can help.</p>
http://stackoverflow.com/questions/283435/asp-net-mvc-mvc-routing-just-fails-in-ii6/285853#2858531Answer by Tim Peel for ASP.NET MVC - .mvc Routing just fails in II6Tim Peel2008-11-12T23:47:00Z2008-11-12T23:47:00Z<p>My <a href="http://stackoverflow.com/questions/275920/aspnet-mvc-on-iis-6-wildcard-mapping-the-incoming-request-does-not-match-any-ro">original problem</a> has been solved by <a href="http://stackoverflow.com/users/36849/oli">Oli</a> who pointed out that the Global.asax file is needed with the website. I was using NAnt/MSBuild to deploy my release package and the Global.asax file was not included. This file can be ignored in all our .NET 2 projects, and has been with all our NAnt deployment structure, so I didn't spare it a thought.</p>
<p>One to note for the future. Something I didn't spot so all credit to <a href="http://stackoverflow.com/users/36849/oli">Oli</a>. Thanks again!</p>
http://stackoverflow.com/questions/283435/asp-net-mvc-mvc-routing-just-fails-in-ii6/284705#2847050Answer by Tim Peel for ASP.NET MVC - .mvc Routing just fails in II6Tim Peel2008-11-12T17:38:49Z2008-11-12T17:38:49Z<p>Thanks huey, been through that post too - everything configured the same.</p>
<p>My extensionless routes are output before the extension ones, purely because I intend to use an ISAPI rewrite module and want any URLs generated from my route table to be clean. They will then be re-written to the extenion based ones.</p>
<p>I don't even care about extensionless URLs though at the moment, would just like to get a version working so I can show the client! I've really enjoyed the MVC stuff up to now but this has taken the shine off things.</p>
<p>Thanks again for your assistance.</p>
http://stackoverflow.com/questions/280969/windows-batch-loop-over-folder-string-and-parse-out-last-folder-name2Windows batch - loop over folder string and parse out last folder nameTim Peel2008-11-11T14:07:44Z2008-11-11T15:56:56Z
<p>Hi,</p>
<p>I need to grab the folder name of a currently executing batch file. I have been trying to loop over the current directory using the following syntax (which is wrong at present):</p>
<pre><code>set mydir = %~p0
for /F "delims=\" %i IN (%mydir%) DO @echo %i
</code></pre>
<p>Couple of issues in that I cannot seem to pass the 'mydir' variable value in as the search string. It only seems to work if I pass in commands; I have the syntax wrong and cannot work out why.</p>
<p>My thinking was to loop over the folder string with a '\' delimiter but this is causing problems too. If I set a variable on each loop then the last value set will be the current folder name. For example, given the following path:</p>
<p>C:\Folder1\Folder2\Folder3\Archive.bat</p>
<p>I would expect to parse out the value 'Folder3'.</p>
<p>I need to parse that value out as its name will be part of another folder I am going to create further down in the batch file.</p>
<p>Many thanks if anyone can help. I may be barking up the wrong tree completely so any other approaches would be greatly received also.</p>
<p>Tim</p>
http://stackoverflow.com/questions/280969/windows-batch-loop-over-folder-string-and-parse-out-last-folder-name/281284#2812841Answer by Tim Peel for Windows batch - loop over folder string and parse out last folder nameTim Peel2008-11-11T15:56:56Z2008-11-11T15:56:56Z<p>Slight alteration for if any of the folders have spaces in their names - replace space to ':' before and after operation:</p>
<pre><code>set mydir="%~p0"
set mydir=%mydir:\=;%
set mydir=%mydir: =:%
for /F "tokens=* delims=;" %%i IN (%mydir%) DO call :LAST_FOLDER %%i
goto :EOF
:LAST_FOLDER
if "%1"=="" (
set LAST=%LAST::= %
goto :EOF
)
set LAST=%1
SHIFT
goto :LAST_FOLDER
</code></pre>
http://stackoverflow.com/questions/280969/windows-batch-loop-over-folder-string-and-parse-out-last-folder-name/281130#2811300Answer by Tim Peel for Windows batch - loop over folder string and parse out last folder nameTim Peel2008-11-11T15:04:23Z2008-11-11T15:04:23Z<p>This is what we had in the end (little bit more crude and can only go so deep :)</p>
<pre><code>@echo off
for /f "tokens=1-10 delims=\" %%A in ('echo %~p0') do (
if NOT .%%A==. set new=%%A
if NOT .%%B==. set new=%%B
if NOT .%%C==. set new=%%C
if NOT .%%D==. set new=%%D
if NOT .%%E==. set new=%%E
if NOT .%%F==. set new=%%F
if NOT .%%G==. set new=%%G
if NOT .%%H==. set new=%%H
if NOT .%%I==. set new=%%I
if NOT .%%J==. set new=%%J
)
@echo %new%
</code></pre>
http://stackoverflow.com/questions/275920/asp-net-mvc-on-iis-6-wildcard-mapping-the-incoming-request-does-not-match-any/279731#2797310Answer by Tim Peel for ASP.NET MVC on IIS 6 - wildcard mapping - the incoming request does not match any routeTim Peel2008-11-11T01:12:55Z2008-11-11T01:12:55Z<p>Hi Phil, thanks for the response.</p>
<p>Did everything you suggested and when I browse to the site I get:</p>
<blockquote>
<p>"The incoming request does not match
any route".</p>
</blockquote>
<p>If I browse to /Home I get the IIS 404, not the .Net one.</p>
<p>???</p>
<p>Is there anything I can send you so you have more to go on/investigate? Obviously something wrong with my version of IIS but not sure what at present. </p>
http://stackoverflow.com/questions/275920/asp-net-mvc-on-iis-6-wildcard-mapping-the-incoming-request-does-not-match-any/276593#2765930Answer by Tim Peel for ASP.NET MVC on IIS 6 - wildcard mapping - the incoming request does not match any routeTim Peel2008-11-09T22:36:26Z2008-11-09T22:36:26Z<p>Thanks for the reply but I read articles similar to the ones you posted and they all said I can either enable wildcard mapping or install a rewrite module. Is this not the case and wilcard mappings just don't work? Contrary to what the articles say?</p>
<p>I was trying not to go down the .mvc extension method but maybe I'll need this.</p>
<p>Thanks again.</p>
http://stackoverflow.com/questions/240263/nant-mbunit-cruisecontrol-selenium-passing-settings-to-the-test-assembly/240326#2403260Answer by Tim Peel for NAnt, MbUnit, CruiseControl, Selenium - passing settings to the test assemblyTim Peel2008-10-27T15:36:19Z2008-10-27T15:36:19Z<p>Thanks for the responses so far.</p>
<p>Environment variables could work, however, we could be running parallel tests via a single test assembly so I wouldn't want settings to be overwritten during execution, which could break another test. Interesting line of thought though, thanks, I reckon I could use that in other areas.</p>
<p>My current solution involves a custom NAnt task build on top of the MbUnit task, which allows me to specify the additional host, port, url settings as attributes. These are then saved as a config file within the build directory and then read in by the test assemblies. This feels a bit "clunky" to me as my tests need to inherit from a specific class. Not too bad but I'd like to have less dependencies and concentrate on the testing.</p>
<p>Maybe I am worrying too much!!</p>
http://stackoverflow.com/questions/236248/asp-net-mvc-including-js-file0ASP.NET MVC - Including JS fileTim Peel2008-10-25T11:21:48Z2008-10-27T00:38:31Z
<p>I am playing around with MVC and have started setting up an existing site we have built in standard .Net Forms.</p>
<p>I am only including a JS file and as all the requests are being routed via .Net it is trying to compile it.</p>
<p>It is the standard compilation error you would see with invalid c#:</p>
<p>CS1012: Too many characters in character literal</p>
<p>How do you prevent client assets being compiled?</p>
<p>Many thanks</p>
http://stackoverflow.com/questions/236248/asp-net-mvc-including-js-file/236324#2363241Answer by Tim Peel for ASP.NET MVC - Including JS fileTim Peel2008-10-25T12:31:11Z2008-10-25T12:31:11Z<p>I have resolved my problem. I had the script tag in my Master Page with a runat="server" in the declaration. This then made .NET try and compile the included JavaScript file?? I have done this quite happily in .NET 2.0 without problems.</p>
http://stackoverflow.com/questions/694665/ms-source-server-source-stream-is-apparently-not-there-when-viewing-with-srctoo/703298#703298Comment by Tim Peel on MS Source Server - source stream is apparently not there when viewing with srctoolTim Peel2009-08-13T11:19:59Z2009-08-13T11:19:59ZSure, contact me off list. me@timpeel.comhttp://stackoverflow.com/questions/694427/syncing-a-folder-against-a-subversion-repo/694440#694440Comment by Tim Peel on Syncing a folder against a Subversion repoTim Peel2009-03-29T14:55:06Z2009-03-29T14:55:06ZI know - in this case though, I'm not bothered, I just need to track the revisions.http://stackoverflow.com/questions/694427/syncing-a-folder-against-a-subversion-repo/694440#694440Comment by Tim Peel on Syncing a folder against a Subversion repoTim Peel2009-03-29T14:08:26Z2009-03-29T14:08:26Z@Johannes - thanks - I'm just deleting and re-adding each time now. This is fine for what I need.http://stackoverflow.com/questions/292480/ms-source-server-significance-of-srcsrv-ini-variableComment by Tim Peel on MS Source Server: significance of srcsrv.ini variableTim Peel2009-03-28T14:03:38Z2009-03-28T14:03:38Z@Chrisd - may I contact you regarding your experiences of using the source server tools?http://stackoverflow.com/questions/650059/strange-behaviour-with-structuremap-asp-mvc-visual-studio-linqtosql/652856#652856Comment by Tim Peel on Strange behaviour with StructureMap / ASP.MVC / Visual Studio / LinqToSqlTim Peel2009-03-21T10:29:50Z2009-03-21T10:29:50Z@Freddy - thanks again. Exceptions included in edited post. When I step through it, it never triggers the problem :( From the logging snippet, it shows different threads are involved yet there are still clashes on the dbcontext.http://stackoverflow.com/questions/650059/strange-behaviour-with-structuremap-asp-mvc-visual-studio-linqtosql/651424#651424Comment by Tim Peel on Strange behaviour with StructureMap / ASP.MVC / Visual Studio / LinqToSqlTim Peel2009-03-20T10:16:03Z2009-03-20T10:16:03Z@Rob - I made your fix and it looked to have sorted the problem but I saw it again last night. My repo now constructs its own DbContext at constructor level. I'm thinking of moving it to method level within a using statement.
@DaRKoN - Have you progressed your problem?http://stackoverflow.com/questions/650059/strange-behaviour-with-structuremap-asp-mvc-visual-studio-linqtosql/652856#652856Comment by Tim Peel on Strange behaviour with StructureMap / ASP.MVC / Visual Studio / LinqToSqlTim Peel2009-03-20T10:13:11Z2009-03-20T10:13:11Z@Freddy - thanks. the problem has returned so I am back to finding a scoping issue. The object build that mvc is using calls GetInstance each time a controller is requested - how will this work with scoping? Will I ever get the same controller instance twice? I suspect this is happening.http://stackoverflow.com/questions/650059/strange-behaviour-with-structuremap-asp-mvc-visual-studio-linqtosql/651424#651424Comment by Tim Peel on Strange behaviour with StructureMap / ASP.MVC / Visual Studio / LinqToSqlTim Peel2009-03-16T17:49:55Z2009-03-16T17:49:55ZThanks Rob, that's very interesting. The DbContext management was based on the store front code. Is there any more info to explain this problem and how you identified it? I will check this is the solution tonight and feed back.http://stackoverflow.com/questions/650059/strange-behaviour-with-structuremap-asp-mvc-visual-studio-linqtosql/651099#651099Comment by Tim Peel on Strange behaviour with StructureMap / ASP.MVC / Visual Studio / LinqToSqlTim Peel2009-03-16T17:45:42Z2009-03-16T17:45:42ZThanks Phil but I'd say the controllers are getting created per request - I am just employing the MvcContrib controller factory wired up as per their examples. The ObjectFactory.GetInstance methods from StructureMap return new instances of the requested type. I'll keep digging!http://stackoverflow.com/questions/650059/strange-behaviour-with-structuremap-asp-mvc-visual-studio-linqtosql/650169#650169Comment by Tim Peel on Strange behaviour with StructureMap / ASP.MVC / Visual Studio / LinqToSqlTim Peel2009-03-16T13:41:03Z2009-03-16T13:41:03ZI'd be surprised if this were the case as both controllers are being created by the object container, which will use a different DBContext for each one. I'd expect the dependencies to cascade as new instances. BUT some caching like this must be happening somewhere to result in the error I am gettinghttp://stackoverflow.com/questions/650059/strange-behaviour-with-structuremap-asp-mvc-visual-studio-linqtosql/650169#650169Comment by Tim Peel on Strange behaviour with StructureMap / ASP.MVC / Visual Studio / LinqToSqlTim Peel2009-03-16T12:37:46Z2009-03-16T12:37:46Z@DaRKoN - thanks. Do you have any more explanation for why this is the solution? ie what LinqToSql is doing? I would expect a linq query to open the reader and close it. There should be no readers open on a connection. There are no synchronous data calls either, it's all within the single thread.http://stackoverflow.com/questions/631591/net-winform-writing-within-panel-causes-scrolling-to-jump/631951#631951Comment by Tim Peel on .NET WinForm writing within panel causes scrolling to jumpTim Peel2009-03-11T09:54:16Z2009-03-11T09:54:16Z@Hunter, thanks - I don't want the scroll flicking, if I start a timer at the bottom of the list and then scroll to the top, I want to scroll bar to stay at the top. Currently, it is flicking back down to the last clicked timer control. Inserting rather than adding will still leave the same problem.http://stackoverflow.com/questions/554159/convenience-or-lazy-programming-ilist-management-protecting-ilist-add-method/554176#554176Comment by Tim Peel on Convenience or "lazy programming" IList management - protecting IList.Add methodTim Peel2009-02-16T19:31:24Z2009-02-16T19:31:24ZThanks Jon, appreciated
http://stackoverflow.com/questions/554159/convenience-or-lazy-programming-ilist-management-protecting-ilist-add-method/554176#554176Comment by Tim Peel on Convenience or "lazy programming" IList management - protecting IList.Add methodTim Peel2009-02-16T19:03:48Z2009-02-16T19:03:48ZSorry Jon, could you explain the caching comment in more detail please? Thankshttp://stackoverflow.com/questions/524567/linq-and-object-initialisation/524578#524578Comment by Tim Peel on linq and object initialisationTim Peel2009-02-08T13:09:35Z2009-02-08T13:09:35Z@Jon - thanks. Sadly, it's linqtosql. Also get the point about singular child.