User Todd Smith - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T11:30:03Zhttp://stackoverflow.com/feeds/user/31624http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/334408/where-to-get-microsoft-web-mvc-dll3Where to get Microsoft.Web.Mvc.dllTodd Smith2008-12-02T15:49:40Z2009-11-12T16:32:42Z
<p>Where do you get Microsoft.Web.Mvc.dll? I see it included in a lot of ASP.NET MVC open-source projects but it's not on my system after having installed ASP.NET MVC Beta and .NET 3.5 SP1.</p>
<p>In the ASP.NET MVC Beta source code from codeplex.com the Microsoft.Web.Mvc.dll is produced by the MvcFutures project. Is everyone compiling this module themselves?</p>
<p><strong>EDIT:</strong> now that I know what it's called I see where Scott Gu mentions it in his release notes: <a href="http://weblogs.asp.net/scottgu/archive/2008/10/16/asp-net-mvc-beta-released.aspx#ten" rel="nofollow">ASP.NET MVC Futures Assembly</a></p>
http://stackoverflow.com/questions/1353029/conditionally-validating-portions-of-an-asp-net-mvc-model-with-dataannotations/1710566#17105661Answer by Todd Smith for Conditionally validating portions of an ASP.NET MVC Model with DataAnnotations?Todd Smith2009-11-10T19:30:14Z2009-11-10T19:30:14Z<p>For the more complex cases I moved away from simple DataAnnotations to the following: <a href="http://www.lostechies.com/blogs/jimmy%5Fbogard/archive/2007/10/24/entity-validation-with-visitors-and-extension-methods.aspx" rel="nofollow">Validation with visitors and extension methods</a>. </p>
<p>If you want to make use of your DataAnnotations you would replace something like the following:</p>
<pre><code>public IEnumerable<ErrorInfo> BrokenRules (Payment payment)
{
// snip...
if (string.IsNullOrEmpty (payment.CCName))
{
yield return new ErrorInfo ("CCName", "Credit card name is required");
}
}
</code></pre>
<p>with a method to validate a property by name via DataAnnotations (which I don't have atm).</p>
http://stackoverflow.com/questions/372955/best-way-to-filter-domain-objects-for-json-output-in-an-asp-net-mvc-application3Best way to filter domain objects for json output in an ASP.NET MVC applicationTodd Smith2008-12-16T22:14:09Z2009-10-08T06:38:32Z
<p>If I'm rendering a regular view in asp.net mvc the only domain object properties that show up in my page the ones I specifically write out. For example:</p>
<pre><code><div><%= Customer.FirstName %></div>
</code></pre>
<p>However, if I serialize a domain object for json it will include every property. Example:</p>
<pre><code>public JsonResult Customer (int? id)
{
Customer customer = _serviceLayer.GetCustomer (id.Value);
return Json (customer);
}
</code></pre>
<p>Since I don't want every Customer property exposed what is the best way to filter the output properties for json in this case? Can you use an include/exclude list like UpdateModel()? Use a proxy class such as public class JsonCustomer? What would you recommend?</p>
http://stackoverflow.com/questions/1317221/facebook-connect-mvc-model/1317389#13173892Answer by Todd Smith for Facebook Connect + MVC Model Todd Smith2009-08-23T00:09:56Z2009-08-24T15:34:49Z<p>I would suggest a FacebookService layer that implements a subset of functionality you need from the Facebook API. In the DDD world it's called an Anti-Corruption Layer.</p>
http://stackoverflow.com/questions/1133079/asp-net-mvc-futures-requiressl-attribute-and-authorize-attribute-together/1133148#11331481Answer by Todd Smith for ASP.NET MVC Futures RequireSSL Attribute and Authorize Attribute TogetherTodd Smith2009-07-15T18:37:32Z2009-07-15T18:37:32Z<p>I'm using both of them with success. Do you have the attributes on your default action?</p>
<pre><code>public class HomeController : BaseController
{
[Authorize]
[RequireSsl]
public ActionResult Index ()
{
}
}
</code></pre>
<p>BTW I'm using a slightly modified version than the futures so that I can disable SSL globally:</p>
<pre><code>[AttributeUsage (AttributeTargets.Class | AttributeTargets.Method, Inherited = true, AllowMultiple = false)]
public sealed class RequireSslAttribute : FilterAttribute, IAuthorizationFilter
{
public RequireSslAttribute ()
{
Redirect = true;
}
public bool Redirect { get; set; }
public void OnAuthorization (AuthorizationContext filterContext)
{
Validate.IsNotNull (filterContext, "filterContext");
if (!Enable)
{
return;
}
if (!filterContext.HttpContext.Request.IsSecureConnection)
{
// request is not SSL-protected, so throw or redirect
if (Redirect)
{
// form new URL
UriBuilder builder = new UriBuilder
{
Scheme = "https",
Host = filterContext.HttpContext.Request.Url.Host,
// use the RawUrl since it works with URL Rewriting
Path = filterContext.HttpContext.Request.RawUrl
};
filterContext.Result = new RedirectResult (builder.ToString ());
}
else
{
throw new HttpException ((int)HttpStatusCode.Forbidden, "Access forbidden. The requested resource requires an SSL connection.");
}
}
}
public static bool Enable { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/1010183/using-the-repository-pattern-is-it-best-to-save-parent-and-children-objects-toge/1010507#10105070Answer by Todd Smith for Using The Repository Pattern, Is It Best To Save Parent and Children Objects Together Or Separately?Todd Smith2009-06-18T02:40:01Z2009-06-18T02:40:01Z<p>I prefer a repository per table but glue them together into an aggregate repository:</p>
<pre><code>public RootEmployeeRepository (
IEmployeeRepository employeeRepository,
IAddressRepository addressRepository)
{
// init
}
public SaveEmployee (Employee employee)
{
// call IEmployeeRepository to save the employee record minus childen
// call IAddressRepository to save employee.addresses
// commit all changes to the DB via UnitOfWork
}
</code></pre>
http://stackoverflow.com/questions/516615/validation-in-a-domain-driven-design3Validation in a Domain Driven DesignTodd Smith2009-02-05T16:20:17Z2009-06-13T13:28:05Z
<p>How do you deal with validation on complex aggregates in a domain driven design? Do you consolidate your business rules/validation logic?</p>
<p>I understand argument validation. And I understand property validation which can be attached to the models themselves and do things like check that an email address or zipcode is valid or that a first name has a minimum and maximum length.</p>
<p>But what about complex validation that involves multiple models? Where do you typically place these rules & methods within your architecture? And what patterns if any do you use to implement them?</p>
http://stackoverflow.com/questions/986648/large-footer-full-of-links-is-it-good/989192#9891921Answer by Todd Smith for Large footer full of links, is it good?Todd Smith2009-06-12T21:40:36Z2009-06-12T21:40:36Z<ul>
<li>If you have javascript generated menus then it's good to have for search engines so they can index your site better</li>
<li>It's nice to have for mobiles if you don't have a mobile optimized version of your site/pages.</li>
<li>You can CTRL+F search the page for specific links that might be hard to find via cascading menus.</li>
<li>Vision impaired users can navigate easier from the footer style menu</li>
<li>Users typically scan/read web sites from top to bottom. If they don't immediately find what they're looking for they end at the bottom of your page so it can be nice to have a set of navigation links to avoid scrolling back to the top and scanning the whole page again.</li>
</ul>
http://stackoverflow.com/questions/984285/asp-net-mvc-value-cannot-be-null-parameter-name-httpcontext/984407#9844070Answer by Todd Smith for ASP.NET MVC Value cannot be null Parameter name: httpContextTodd Smith2009-06-12T00:01:55Z2009-06-12T00:01:55Z<p>Make sure you're getting the latest source code <a href="https://mvcsamples.svn.codeplex.com/svn/trunk" rel="nofollow">Kona</a>. PersonalizationController isn't part of the current codebase. </p>
http://stackoverflow.com/questions/962587/domain-services-and-communication-against-the-database/970792#9707920Answer by Todd Smith for Domain Services and communication against the databaseTodd Smith2009-06-09T15:28:26Z2009-06-11T04:01:00Z<p>So far my services have used the repositories directly via constructor dependency.</p>
<p>Are you including services in your aggregate root models or does your service layer operate on domain models via method parameters?</p>
http://stackoverflow.com/questions/976564/domain-driven-design-aggregate-roots/976930#9769301Answer by Todd Smith for Domain Driven Design - Aggregate RootsTodd Smith2009-06-10T17:06:48Z2009-06-10T17:06:48Z<p>In the case of a shopping cart with an cart and line items I have both of those as aggregate roots since I often modify them independently.</p>
<pre><code>public class Cart : IAggregateRoot
{
public List<LineItem> LineItems {get;}
}
public class LineItems : IAggregateRoot
{
public List<LineItem> LineItems {get;}
}
</code></pre>
<p>However, I have a separate bounded context for orders and in this case I only need to have one aggregate root since I no longer need to modify the line items independently.</p>
<pre><code>public class Order : IAggregateRoot
{
public List<LineItem> LineItems {get;}
}
</code></pre>
<p>The other option is to have a way of looking up the aggregate root from a child ID. </p>
<pre><code>Car GetCarFromSeatID(guid seatID)
</code></pre>
http://stackoverflow.com/questions/967626/need-a-more-in-depth-example-of-repository-pattern-and-dependency-injection/967700#9677000Answer by Todd Smith for Need a more in depth example of repository pattern and dependency injection Todd Smith2009-06-09T00:48:12Z2009-06-09T00:48:12Z<p>It's up to you whether you create a generic IRepository class with CRUD methods that can be used for any table vs. unique repository classes for each table.</p>
<p>This is the kind of question I would ask when trying to decide:</p>
<p>"Should every repository support Create, Read, Update and Delete?"</p>
<p>I have chosen to use custom repository classes so that my interfaces are more explicit. For example I have tables of lookup data that I do not allow inserts, updates or deletes on. The repository for those tables contain only Get methods. This provides me with a cleaner design but at the cost of a bit more work.</p>
http://stackoverflow.com/questions/966272/apart-from-ui-flair-what-do-you-use-jquery-for/966551#9665512Answer by Todd Smith for Apart from UI "flair", what do you use jQuery for?Todd Smith2009-06-08T19:32:24Z2009-06-08T19:32:24Z<p>Some of the things I use jQuery for are:</p>
<ul>
<li>simplified AJAX</li>
<li>client-side validation</li>
<li>forms that have application like behavior (ex changing the visible form elements based on a dropdown)</li>
<li>interactive and dynamic menus</li>
<li>client-side sorting</li>
<li>dynamic textareas that grow as you type</li>
<li>drag'n'drop</li>
<li>integrating with a flash based multi-file uploader</li>
</ul>
http://stackoverflow.com/questions/963386/update-multiple-divs-from-jquery-ajax-response-html0Update multiple div's from jQuery ajax response htmlTodd Smith2009-06-08T04:07:57Z2009-06-08T07:25:32Z
<p>I have a page in a asp.net mvc shopping cart which allows you to enter a coupon and shows an order summary along with other page content. I would like to have an Update button which will validate the coupon code, report any errors and also update the order summary on the page via jQuery ajax.</p>
<p>I know I could do this by making a form and partial view and use the target property in the jQuery submit. However, was thinking I could do something like the following:</p>
<pre><code>var options
{
success: function (responseHtml) // contains the entire form in the response
{
// extract sub-sections from responseHtml and update accordingly
// update <div id="coupon"> with coupon div from responseHtml
// update <div id="order-summary> with order summary div from responseHtml
}
}
$('#my-form').ajaxSubmit(options); // submits the entire form
</code></pre>
<p>The advantage here is that I wouldn't have to do a full page refresh or create a partial view containing all of the areas that need updating. Is there an appropriate way to do this via jQuery ajax?</p>
http://stackoverflow.com/questions/954166/can-i-use-the-nerddinner-sample-project-as-a-base-template-for-a-larger-project/954333#9543331Answer by Todd Smith for Can I use the NerdDinner sample project as a base template for a larger project?Todd Smith2009-06-05T05:00:30Z2009-06-05T05:00:30Z<p>I would add a service layer between the repositories and controllers. The service layer will contain all of your business logic leaving your controllers to deal mainly with processing form inputs and page flow.</p>
<p>Within the repositories I map LinqToSql classes and fields to domain models and then use the domain models within the service layer, controllers and views. For a larger system the extra layers will prove their worth in the long run.</p>
http://stackoverflow.com/questions/952301/replacement-for-microsoft-index-server/952355#9523552Answer by Todd Smith for Replacement for Microsoft Index Server? Todd Smith2009-06-04T18:41:17Z2009-06-04T18:41:17Z<p>Try Lucene.NET <a href="http://stackoverflow.com/questions/37059/lucene-net-and-sql-server">http://stackoverflow.com/questions/37059/lucene-net-and-sql-server</a></p>
http://stackoverflow.com/questions/945703/securing-controllers-in-asp-net-mvc-to-the-correct-user/946872#9468720Answer by Todd Smith for Securing controllers in ASP.NET MVC to the correct userTodd Smith2009-06-03T20:03:12Z2009-06-03T20:03:12Z<p>When it comes to security in ASP.NET MVC you have Authentication and Authorization. </p>
<p>Authentication is the process of validating a user's identity and usually involves checking a username and password against a database and then assigning some kind of user ID to that user.</p>
<p>Authorization is the process of restricting access to system resources and is often done via Roles (<a href="http://en.wikipedia.org/wiki/Role-based%5Faccess%5Fcontrol" rel="nofollow">RBAC)</a>. However, Roles don't often cover ownership which is what you're after.</p>
<p>In your case you will need to write your own code to perform an ownership check on the task such as:</p>
<pre><code>if (!task.IsOwnedBy(userID))
{
throw new HttpException ((int)HttpStatusCode.Unauthorized,
"You are not authorized.");
}
</code></pre>
<p>I asked a similar question here <a href="http://stackoverflow.com/questions/890085/how-do-you-weave-authenticaion-roles-and-security-into-your-ddd">http://stackoverflow.com/questions/890085/how-do-you-weave-authenticaion-roles-and-security-into-your-ddd</a> and have yet to decide how I'm going to integrate this into my business layer.</p>
http://stackoverflow.com/questions/942458/c-mvc-use-attribute-to-create-request-ip-constraint/942504#9425042Answer by Todd Smith for C# MVC: Use Attribute to create Request IP constraintTodd Smith2009-06-03T00:04:55Z2009-06-03T00:04:55Z<p>You could create a custom filter attribute:</p>
<pre><code>public class InternalOnly : FilterAttribute
{
public void OnAuthorization (AuthorizationContext filterContext)
{
if (!IsIntranet (filterContext.HttpContext.Request.UserHostAddress))
{
throw new HttpException ((int)HttpStatusCode.Forbidden, "Access forbidden.");
}
}
private bool IsIntranet (string userIP)
{
// match an internal IP (ex: 127.0.0.1)
return !string.IsNullOrEmpty (userIP) && Regex.IsMatch (userIP, "^127");
}
}
</code></pre>
http://stackoverflow.com/questions/912669/html-formating-in-domain-classes/932346#9323460Answer by Todd Smith for Html formating in domain classesTodd Smith2009-05-31T16:06:10Z2009-05-31T16:06:10Z<p>You could add an extension method:</p>
<pre><code>public static class AddressHelpers
{
public static string ToStringHtmlFormat (this Address address)
{
string result = address.Address1;
// snip..
return result;
}
}
</code></pre>
<p>and now you can control when & where the extension method gets included in your project (ex: in your web application only).</p>
http://stackoverflow.com/questions/831390/multiple-asserts-in-single-test/914163#9141630Answer by Todd Smith for Multiple asserts in single test?Todd Smith2009-05-27T05:56:30Z2009-05-27T05:56:30Z<p>As @Paul mentioned several test frameworks support RowTests. Using that feature you can write something as monstrous as this:</p>
<pre><code>[TestCase ("test@test.com", true)]
[TestCase ("x!x@test.com", true)]
[TestCase ("x#x@test.com", true)]
[TestCase ("x$x@test.com", true)]
[TestCase ("x%x@test.com", true)]
[TestCase ("x&x@test.com", true)]
[TestCase ("x'x@test.com", true)]
[TestCase ("x*x@test.com", true)]
[TestCase ("x+x@test.com", true)]
[TestCase ("x-x@test.com", true)]
[TestCase ("x/x@test.com", true)]
[TestCase ("x=x@test.com", true)]
[TestCase ("x?x@test.com", true)]
[TestCase ("x^x@test.com", true)]
[TestCase ("x_x@test.com", true)]
[TestCase ("x`x@test.com", true)]
[TestCase ("x{x@test.com", true)]
[TestCase ("x{x@test.com", true)]
[TestCase ("x|x@test.com", true)]
[TestCase ("x}x@test.com", true)]
[TestCase ("x~x@test.com", true)]
[TestCase ("test", false)]
[TestCase ("", false)]
[TestCase (null, false)]
public void IsEmail_Should_Match_Valid_Email_Addresses(string target, bool result)
{
Assert.AreEqual(result, target.IsEmail());
}
</code></pre>
<p>Or you could do the same with a bunch of asserts. It's common to assert multiple properties on an object after performing some action. I think the above solution is more readable though.</p>
http://stackoverflow.com/questions/908423/apply-an-action-filter-to-every-controller-in-only-one-part-of-an-asp-net-mvc-sit/908480#9084801Answer by Todd Smith for Apply an action filter to every controller in only one part of an ASP.NET MVC site?Todd Smith2009-05-26T00:37:43Z2009-05-26T16:44:31Z<p>1) Can't you just check for the role within the view?</p>
<pre><code><% if (HttpContext.Current.User.IsInRole ("Administrator")) { %>
// insert some admin specific stuff here
<%= model.ExtraStuff %>
% } %>
</code></pre>
<p>You can perform the same check in the controller if you need to set admin specific view model properties. In your controller you can do your extra processing only when the user is already authenticated:</p>
<pre><code>public ActionResult Details (int productId)
{
ProductViewModel model = new ProductViewModel ();
if (User.Identity.IsAuthenticated && User.IsInRole ("Administrator"))
{
// do extra admin processing
model.ExtraStuff = "stuff";
}
// now fill in the non-admin specific details
model.ProductName = "gizmo";
return View (model);
}
</code></pre>
<p>The only thing missing here is a redirect to your login page when an admin tries to access the view without being authenticated.</p>
<p>2) Alternatively if you want to reuse your default product view with some extra bits you could try the following:</p>
<pre><code>public class AdminController
{
[Authorize(Roles = Roles.Admin)]
public ActionResult Details(int productId)
{
ProductController productController = new ProductController(/*dependencies*/);
ProductViewModel model = new ProductViewModel();
// set admin specific bits in the model here
model.ExtraStuff = "stuff";
model.IsAdmin = true;
return productController.Details(productId, model);
}
}
public class ProductController
{
public ActionResult Details(int productId, ProductViewModel model)
{
if (model == null)
{
model = new ProductViewModel();
}
// set product bits in the model
return Details(model);
}
}
</code></pre>
<p>NOTE: I would prefer solution 1) over 2) due to the fact that you need to create a new instance of ProductController and that brings up it's own set of issues especially when using IoC.</p>
http://stackoverflow.com/questions/907541/average-price-appropriate-logic-to-perform-in-the-view-or-better-in-the-control/907583#9075830Answer by Todd Smith for Average Price - Appropriate logic to perform in the View or better in the Controller?Todd Smith2009-05-25T18:06:32Z2009-05-25T18:06:32Z<p>Put your business logic where it belongs in the model:</p>
<pre><code><p>Average price: <%= @seller.get_average_price () %></p>
</code></pre>
http://stackoverflow.com/questions/906917/what-are-some-examples-of-how-your-company-uses-a-wiki-for-development/907116#9071161Answer by Todd Smith for What are some examples of how your company uses a wiki for development?Todd Smith2009-05-25T15:15:10Z2009-05-25T15:20:49Z<p>We use ours to store </p>
<ul>
<li>Coding Style docs</li>
<li>Setup and Deployment procedures for web servers and sites</li>
<li>Network diagrams (what are all the servers in Dev, Staging, QA and Production called etc.)</li>
<li>Project docs (pdfs, visios, excel, docs, etc.) are stored in SVN. For the non-techies we have links to those docs in the wiki that point to an up-to-date share on my box. (tip: some wikis provide source control integration but ours doesn't)</li>
<li>Installation and Setup procedures for development tools</li>
<li>Howto's on things like using our bug tracking system, our unit testing philosophy</li>
<li>When doing research on a topic I often capture the important information in a wiki page for others to learn from</li>
<li>I've seen them used to keep seating charts in medium to large size organizations for the new people</li>
<li>At my previous company all of the emergency contacts and procedures for handling a critical outage where available on the front page of the wiki</li>
<li>The best part about a wiki is that it's searchable. Some wiki's support searching inside uploaded or linked docs as well.</li>
</ul>
<p>If you setup a wiki and encourage or even require people to use it the amount of information that will accumulate can be amazing. It's definately worth the effort especially if you have someone in IT with some spare time on their hands to set it up.</p>
http://stackoverflow.com/questions/329772/whats-the-deal-with-asp-net-3-5-extensions-preview-20What's the deal with ASP.NET 3.5 Extensions Preview 2?Todd Smith2008-12-01T01:30:50Z2009-05-24T23:37:28Z
<p>I'm trying to get the <a href="http://go.microsoft.com/fwlink/?LinkID=106001&clcid=0x409" rel="nofollow">MVCToolkit</a> working with an ASP.NET MVC Beta application and ran into an unresolved reference to System.Web.Extensions version 3.6 (ASP.NET MVC Beta comes with System.Web.Extensions version 3.5). All my google searches seem to point to a broken download link on Microsoft's site: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a9c6bc06-b894-4b11-8300-35bd2f8fc908&DisplayLang=en" rel="nofollow">ASP.NET 3.5 Extensions Preview 2</a></p>
http://stackoverflow.com/questions/780291/mvc-implement-members-online-functionality/904173#9041730Answer by Todd Smith for MVC - Implement members online functionalityTodd Smith2009-05-24T16:56:45Z2009-05-24T16:56:45Z<p>See <a href="http://stackoverflow.com/questions/155593/how-can-i-determine-the-number-of-users-on-an-asp-net-site-iis-and-their-info">How can I determine the number of users on an ASP.NET site (IIS)? And their info?</a> The same approach can be used for WebForms as well as ASP.NET MVC.</p>
http://stackoverflow.com/questions/901509/how-to-edit-tabular-data-asp-mvc/903870#9038701Answer by Todd Smith for How to edit tabular data (ASP MVC)Todd Smith2009-05-24T14:25:56Z2009-05-24T14:25:56Z<p>I would checkout one of the javascript UI libraries first:</p>
<ul>
<li><a href="http://extjs.com/deploy/dev/examples/grid/edit-grid.html" rel="nofollow">ExtJS Grid</a></li>
<li><a href="http://developer.yahoo.com/yui/examples/datatable/dt%5Fcellediting.html" rel="nofollow">Yahoo DataTable</a></li>
<li><a href="http://www.flexigrid.info/" rel="nofollow">Flexigrid</a></li>
</ul>
<p>WebForms are easier when it comes to quickly developing rich UI's like editable grids. </p>
http://stackoverflow.com/questions/900922/what-to-learn-ruby-on-rails-or-asp-net-mvc-given-that-am-familiar-with-asp/903810#9038100Answer by Todd Smith for What to learn - Ruby on Rails or ASP .NET MVC...given that am familiar with ASP .NETTodd Smith2009-05-24T13:56:06Z2009-05-24T13:56:06Z<blockquote>
<p>However, I fail to see what is so
great about these. Most of them sound
basic (the kind you'll not really want
to use in production code -
scaffolding for example) - and most of
them sound like they are there in ASP
.NET MVC in some form or the other.</p>
</blockquote>
<p>The ability to rapid prototype a website is part of what makes RoR so popular. When designing a website for a client there's a big difference between a non-functional mock and a functional mock. </p>
<p>I believe the feature gab between ASP.NET MVC and RoR will continue to get smaller. Eventually the choice will come down to a question of Windows vs LAMP.</p>
<p>I would spend a few weeks with RoR. It's extremely simple to get it installed and up and running so you can develop with it. Then it's just a matter of following a few tutorials until you've covered most of the basics. Then decide if you want to continue with RoR or stick with ASP.NET MVC.</p>
http://stackoverflow.com/questions/882509/ddd-domain-model-and-logging/903146#9031460Answer by Todd Smith for DDD. Domain model and logging.Todd Smith2009-05-24T05:21:50Z2009-05-24T05:21:50Z<p>Try <a href="http://code.google.com/p/postsharp-user-plugins/wiki/Log4PostSharp" rel="nofollow">Log4PostSharp</a></p>
http://stackoverflow.com/questions/890085/how-do-you-weave-authenticaion-roles-and-security-into-your-ddd1How do you weave Authenticaion, Roles and Security into your DDD?Todd Smith2009-05-20T20:31:56Z2009-05-20T21:02:26Z
<p>How do you implement Roles and Security in your C# Domain Driven Designs? We have some debate raging on wether it should be implemented by the calling application (ASP.NET MVC) or in the Domain Model itself (model entities and services). Some argue that it should be in the web site itself since that's where the authentication already exists. But that means you have to re-implement security every time you integrate with the core business systems.</p>
<p><strong>As an example:</strong> an Admin should be able to do pretty much any action in the system such as edit and deleting records (ie they can delete a user's order). A User on the other hand should only be able to edit and delete their own records (ie they can add/remove items from their shopping cart).</p>
<p>BTW Here is a nice thesis on the topic which covers 7 different scenarios regarding DDD & Security:</p>
<p><a href="http://wwwhome.cs.utwente.nl/~pires/supervision/uithol-msc-thesis.pdf" rel="nofollow">Security in Domain-Driven Design</a></p>
<ul>
<li>Chapter 4 Security service design scenarios
<ul>
<li>4.1 Scenario 1: Security service as regular service</li>
<li>4.2 Scenario 2: Security embedded in the UI</li>
<li>4.3 Scenario 3: Security service encapsulating the domain model</li>
<li>4.4 Scenario 4: Security service as a gateway for the UI</li>
<li>4.5 Scenario 5: Security service as an adapter for the UI</li>
<li>4.6 Scenario 6: Security service integrated by AOP with adapters</li>
<li>4.7 Scenario 7: Security service integrated with AOP</li>
</ul></li>
</ul>
<p>I would personally lean towards AOP using PostSharp but not having do much with it before I'm hesitant to take the leap.</p>
http://stackoverflow.com/questions/886473/can-i-access-resources-file-from-a-view-in-mvc/888221#8882213Answer by Todd Smith for Can I access Resources file from a View in MVC ?Todd Smith2009-05-20T14:21:34Z2009-05-20T14:21:34Z<p>All resource strings get compiled into a class which you can reference in your views. Example:</p>
<pre><code><%= Resources.Strings.MyCustomString %>
</code></pre>
<p>I believe the following is automatically added to your web.config so you can drop the Resources..</p>
<pre><code><namespaces>
<add namespace="Resources">
</namespaces>
</code></pre>
<p>However, this will not support localization. For that you'll want to use a <a href="http://blog.eworldui.net/post/2008/05/ASPNET-MVC---Localization.aspx" rel="nofollow">helper method</a>.</p>
<p>If you're trying to populate a list you'll need to create a helper class that can iterate through the Strings class and extract the appropriate values or encode your selections in a comma delimited list and parse/split that before feeding it to your dropdownlist's selectionlist.</p>
http://stackoverflow.com/questions/1317221/facebook-connect-mvc-model/1317389#1317389Comment by Todd Smith on Facebook Connect + MVC Model Todd Smith2009-08-24T15:34:29Z2009-08-24T15:34:29Z@OneDeveloper a single "user service" that depeneds on both UserDBRepository and your Facebook data sounds like a good approach. But whether that should be a FacebookRepository or FacebookService depends on the kind of methods you need to support from Facebook. If it's simple CRUD methods then a repository sounds appropriate.http://stackoverflow.com/questions/1004640/data-model-design-and-domain-model-designComment by Todd Smith on Data Model design and Domain Model designTodd Smith2009-06-17T21:39:52Z2009-06-17T21:39:52ZThey have candy bars and tabloids on almost every isle. Would that be a more accurate model of a grocery store?http://stackoverflow.com/questions/991523/asp-net-a-connection-attempt-failedComment by Todd Smith on ASP.NET- A connection attempt failed ...Todd Smith2009-06-13T21:58:52Z2009-06-13T21:58:52ZTwitter does have lots of outages but I would keep checking things on your side.http://stackoverflow.com/questions/990955/mvc-or-webform-architecture-for-new-siteComment by Todd Smith on MVC or Webform Architecture for new siteTodd Smith2009-06-13T17:14:09Z2009-06-13T17:14:09ZWith asp.net mvc you can can mix'in a bit of webforms as well. Try the main site as asp.net mvc and use webforms for the admin side.http://stackoverflow.com/questions/667733/best-value-for-paid-asp-net-controls/667855#667855Comment by Todd Smith on Best Value for Paid ASP.NET ControlsTodd Smith2009-06-13T17:11:08Z2009-06-13T17:11:08ZWe use both the desktop application and asp.net controls from DevExpress. They aren't without their quirks and I tend to prefer asp.net mvc these days but if I had to use asp.net I would use DevExpress again.http://stackoverflow.com/questions/516615/validation-in-a-domain-driven-design/990668#990668Comment by Todd Smith on Validation in a Domain Driven DesignTodd Smith2009-06-13T17:08:29Z2009-06-13T17:08:29ZThe approach described in Bogard's article looks pretty handy. Thx.http://stackoverflow.com/questions/967626/need-a-more-in-depth-example-of-repository-pattern-and-dependency-injection/967700#967700Comment by Todd Smith on Need a more in depth example of repository pattern and dependency injection Todd Smith2009-06-10T04:34:37Z2009-06-10T04:34:37ZYes. It makes unit testing and IoC easier.http://stackoverflow.com/questions/973506/asp-net-mvc-linq-to-sql-or-entitiesComment by Todd Smith on ASP.NET MVC + LINQ to SQL or Entities?Todd Smith2009-06-10T04:29:53Z2009-06-10T04:29:53ZThis sight was developed with LinqToSql.http://stackoverflow.com/questions/971155/post-bind-modelsComment by Todd Smith on Post: Bind ModelsTodd Smith2009-06-09T16:51:21Z2009-06-09T16:51:21ZDo you have some kid of input control on your form for the picture? And why are you doing a redirect to Create and passing an id when your Create method doesn't have an id parameter?http://stackoverflow.com/questions/964175/frustration-at-standard-of-programming-at-workComment by Todd Smith on Frustration at standard of programming at workTodd Smith2009-06-09T04:56:28Z2009-06-09T04:56:28ZWhen you get to work on "really good code" it will have just as many pieces of data except that they'll be levels of abstraction and indirection instead of undocumented cells in a table.http://stackoverflow.com/questions/966272/apart-from-ui-flair-what-do-you-use-jquery-forComment by Todd Smith on Apart from UI "flair", what do you use jQuery for?Todd Smith2009-06-08T19:24:14Z2009-06-08T19:24:14ZEvery web site should have a minimum of 19 pieces of flair.http://stackoverflow.com/questions/963386/update-multiple-divs-from-jquery-ajax-response-html/963770#963770Comment by Todd Smith on Update multiple div's from jQuery ajax response htmlTodd Smith2009-06-08T16:45:05Z2009-06-08T16:45:05ZDoesn't this require a specially formatted XML response from the server? I was hoping to reuse the preexisting action handler for my page. And to avoid the entire page refresh I only wanted to update the areas that changed. This is similar to what the UpdatePanel in asp.net does.http://stackoverflow.com/questions/962860/avoid-database-dependency-for-unit-testing-without-mockingComment by Todd Smith on Avoid Database Dependency For Unit Testing Without MockingTodd Smith2009-06-07T21:58:52Z2009-06-07T21:58:52ZMake sure you know the difference between "unit testing" and "integration testing" and when to use them and what they're best suited for.http://stackoverflow.com/questions/958613/presentation-class-vs-interface-for-view-filteringComment by Todd Smith on Presentation class vs Interface for View FilteringTodd Smith2009-06-07T13:33:07Z2009-06-07T13:33:07ZI think they're asking why use a ViewModel vs. an Interface.http://stackoverflow.com/questions/495079/beginform-in-rc-bugComment by Todd Smith on BeginForm in RC bug?Todd Smith2009-06-07T13:13:13Z2009-06-07T13:13:13ZCheck your routes. I think I ran into this before when I changed the default route and it fell through to the catchall.