avoiding extreme measures

Ellen Degeneres' tweaking her face <Townsend0@fieldsskincare.com> Thu, 19 February 2015 16:54 UTC

Return-Path: <MaryTownsend@duplinwinery.fieldsskincare.com>
X-Original-To: ietfarch-krb-wg-archive@ietfa.amsl.com
Delivered-To: ietfarch-krb-wg-archive@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 28B8C1A9168 for <ietfarch-krb-wg-archive@ietfa.amsl.com>; Thu, 19 Feb 2015 08:54:15 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.912
X-Spam-Level:
X-Spam-Status: No, score=-1.912 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01] autolearn=ham
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wXg0d7DylijW for <ietfarch-krb-wg-archive@ietfa.amsl.com>; Thu, 19 Feb 2015 08:54:03 -0800 (PST)
Received: from duplinwinery.fieldsskincare.com (duplinwinery.fieldsskincare.com [209.205.124.124]) by ietfa.amsl.com (Postfix) with ESMTP id 364561A9169 for <krb-wg-archive@lists.ietf.org>; Thu, 19 Feb 2015 08:53:51 -0800 (PST)
Date: Thu, 19 Feb 2015 08:53:50 -0800
From: Ellen Degeneres' tweaking her face <Townsend0@fieldsskincare.com>
Subject: avoiding extreme measures
Reply-to: <Townsend0@fieldsskincare.com>
Message-ID: <20150219080505007.5D101FE701.2jwWp2CT.EB70EB94BA@s.duplinwinery.fieldsskincare.com>
To: <krb-wg-archive@lists.ietf.org>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
MIME-Version: 1.0

Ellen Degeneres and Portia De Rossi may have had their fair share of problems....
But did Ellen get plastic surgery... and it still didn't work??


Find out what she did.  The instant-lift.

View Pics that sparked Rumors: / http://www.fieldsskincare.com/typify-59753_4442-irreversibility.htm


We think that Ellen learned from horror shows like Meg Ryan and Nicole Kidman...

Heres what she really did to turn back the clock 20 yrs -> http://www.fieldsskincare.com/typify-59753_4442-irreversibility.htm






- Celeb Dirty Laundry












We hope you enjoyed this Celeb Update. 
To stop further messages - write Update Notice Messages
118 Kecks Lane-Ruff Dale- Pennsylvania 15679 or visit http://www.fieldsskincare.com/429/unidentified/unhorse.php

Isn't it that MVC is used to architect the whole (web) application, while MVVM is used inside View component of MVC ? So the whole paradigm would be M(VVM)CTrue, but "where they are used" was not the question (or the point of my answer). My point is that controllers are still useful in MVVM.I agree. My comment was caused by sudden enlightement and not because I disagreed with you. We also used controllers to control the "flow" of views in a wizard-like UI.The cause of confusion comes from what ASP.NET MVC calls "ViewModel", because, when implementing Rails interpretation of MVC, there is no view, only templates while people call "views". In ASP.NET MVC the ViewModel actually a full implemented View from Model2 MVC pattern (active view which requests data from model layer and manipulates multiple templates based on that dataWhat you are saying makes perfect sense (the VM shouldn't contain logic), however I'm struggling to see how it would work in practice - for example what unit-testa
 ble piece of logic is executed when the user clicks on a button? How about when the user modifies a text box which is two-way databound to a property on the ViewModel?  I see my wording of that sentence is a little ambiguous. I actually mean unit-testing for all components is more easily supported, not specifically just improving testing of ViewModels (which as you point out don't actually do that much in MVCVM... which is what you want). The real benefit of controllers is that you are actually removing most of the requirements for testing from the ViewModel (where people keeps shoving controller logic) and putting it where it can be tested (mainly Controllers and Models). The reuse comment is specific to the VMs in that sentence. I have edited it.    don't understand what's the difference between MVVM and MVC with Controller Service pattern MVVM does not normally encourage separation of controllers (which I am encouraging). MVC also uses ViewModels, as well as models, so should it 
 not also be called MVCVM and both follow the same patternPlease elaborate on the role of ViewModel in two-way data binding. The Controller gets and puts ViewModels from and to the View. What type of Entity (Controller?) mediates getting and putting between the ViewModel and (one or more) Models? Two-way binding, in MVVM, is purely a way of mirroring values in both the View and View-Model allowing the changes to reflect elsewhere in the View(s). Binding direct to actual data sources in a GUI app can be quite a fragile connection (e.g. not resistant to comms failures), so better to persist data under the specific control of a Controller, e.g. in response to a Save option/command. Controllers can instantiate data connection objects as and when needed (like EF does). I am assuming you will persist your data with WCF RIA services?