What's your opinion on MS CAB (Composite Application Block)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T14:37:06Z http://stackoverflow.com/feeds/question/477734 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/477734/whats-your-opinion-on-ms-cab-composite-application-block 4 What's your opinion on MS CAB (Composite Application Block)? Brann 2009-01-25T14:11:08Z 2009-11-20T00:09:31Z <p>I'm in the process of evaluating the use of CAB for a new .net 3.5 winform project</p> <p>I plan to use the Infragistics toolset, <a href="http://www.infragistics.com/learn/cab.aspx" rel="nofollow">which is known to be 'CAB compliant'</a></p> <p>While CAB has the immediate upside of letting me focus on my business instead of coding basic docking/login/etc code, I feel like I would be able to achieve the same level of functionnality quite radpidly by myself (with the added flexibility/reactivity bonus you have when you 'own' the code).</p> <p>I'm seeking some feedback on Microsoft's CAB from people using it :</p> <ol> <li>Have you experienced problems/bugs ?</li> <li>Do you feel like CAB saved your time ?</li> <li>Are there extra functionalities I don't know about (beside Docking/Login/WorkerThreads best practices?)</li> </ol> http://stackoverflow.com/questions/477734/whats-your-opinion-on-ms-cab-composite-application-block/477743#477743 0 Answer by Michael Prewecki for What's your opinion on MS CAB (Composite Application Block)? Michael Prewecki 2009-01-25T14:21:04Z 2009-01-25T14:21:04Z <p>While i've never actually used CAB, it ships with the source code so you'd still have the ability to tweak it to suit your exact needs if you need extra flexibility not provided by the Application Block. </p> http://stackoverflow.com/questions/477734/whats-your-opinion-on-ms-cab-composite-application-block/482775#482775 3 Answer by gilles27 for What's your opinion on MS CAB (Composite Application Block)? gilles27 2009-01-27T09:30:49Z 2009-01-27T09:30:49Z <p>I had some experience using CAB a couple of years ago and my conclusion was that it too complex and had a steep learning curve. As such the benefits it offered just weren't worth the price of getting up to speed with it. However don't take my word for it, try following some of their labs and see what you think.</p> <p>Jeremy Miller wrote an excellent series of blog posts about building your own CAB</p> <p><a href="http://codebetter.com/blogs/jeremy.miller/archive/2007/07/25/the-build-your-own-cab-series-table-of-contents.aspx" rel="nofollow">http://codebetter.com/blogs/jeremy.miller/archive/2007/07/25/the-build-your-own-cab-series-table-of-contents.aspx</a></p> <p>these are worth a look as you could just take from there what you need.</p> <p>My advice would be to get on with your project rather than build a framework up front. As the project develops you should spot opportunities to refactor code into base classes and effectively harvest a framework from your application.</p> <p>That way you will end up with a framework that meets your needs, and that everyone on the development team will understand. Whatever you do don't build a framework up front - there lies the path to ruin :-)</p> http://stackoverflow.com/questions/477734/whats-your-opinion-on-ms-cab-composite-application-block/1215876#1215876 1 Answer by AlejandroR for What's your opinion on MS CAB (Composite Application Block)? AlejandroR 2009-08-01T05:04:11Z 2009-11-20T00:09:31Z <p>We have used CAB+SCSF for a couple of projects. The learning curve is indeed steep. You will probably be up to speed after the first month. Other cons:</p> <ol> <li>Too much complexity</li> <li>Pattern-itis</li> <li>Code generation bloat</li> <li>Hard to debug</li> </ol> <p>The pros:</p> <p>Follows the best practices architectural design patterns in the industry:</p> <ol> <li>Model-View-Presenter</li> <li>UI Composition</li> <li>Dependency injection, Inversion of control</li> <li>Loosely Coupled Events</li> <li>Modularity</li> <li>etc...</li> </ol> <p>Using CAB-SCSF in the long run will mean less bugs and more maintainable code. If your project can afford the initial hit of the learning curve I will definitely recommend it.</p> http://stackoverflow.com/questions/477734/whats-your-opinion-on-ms-cab-composite-application-block/1215885#1215885 0 Answer by JP for What's your opinion on MS CAB (Composite Application Block)? JP 2009-08-01T05:12:53Z 2009-08-01T05:12:53Z <p>The <a href="http://msdn.microsoft.com/en-us/library/aa480450.aspx" rel="nofollow">CAB</a> is retired in favor of the <a href="http://msdn.microsoft.com/en-us/library/aa480482.aspx" rel="nofollow">SCSF</a>. Both the CAB and SCSF offer some value in terms of standardizing rich client development across projects (if you use them that way), but both are very heavyweight.</p>