Thursday, July 02, 2009

Microsoft just released their latest addition to the P&P library.  This time it's a guidance about Acceptance test (Vol 1).

The book was previously already announced in beta 1, now it's the Beta 2 release.

Find all the info at the Codeplex site : http://codeplex.com/TestingGuidance

7/2/2009 7:22:13 AM (Romance Standard Time, UTC+01:00)  #     | 
 Friday, October 31, 2008

Microsoft has released 2 new P&P guidelines.

The first one is about Distributed Agile Development.

This guideline contains a white paper and an Agile Development Showcase.


Agile Development Showcase: http://msdn.microsoft.com/en-us/dd128747.aspx

PDF: http://download.microsoft.com/download/4/4/a/44a2cebd-63fb-4379-898d-9cf24822c6cc/distributed_agile_development_at_microsoft_patterns_and_practices.pdf

The second one is about Acceptance Test Engineering.

This guideline is still in beta1.

Codeplex site: http://codeplex.com/TestingGuidance

Project Announcement: http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=TestingGuidance&DownloadId=40458

Community: http://www.codeplex.com/TestingGuidance/Thread/List.aspx

10/31/2008 8:47:33 AM (Romance Standard Time, UTC+01:00)  #     | 
 Tuesday, July 15, 2008

We all know a good training will get you 50% of the way! http://www.ordina.be/soa

 bannerPracticalSOA

7/15/2008 8:46:08 AM (Romance Standard Time, UTC+01:00)  #     | 
 Tuesday, May 16, 2006

At this moment I'm diving into Design Patterns and Business Objects.  Later I will blog more about these items, but now I just put down the resources I have at this moment:

I also have bought a few books:

  • Head First Design Patterns (Eric & Elisabeth Freeman), which I'm reading now.  This book has it's examples in Java, but that should be no problem.
  • Expert C#2005 Business Objects (Rockford LHotka)

At the project I'm working this moment, we are using Design Patterns like the state Machine Pattern.  We have created a base business object based on LHotka.  We have included the rule manager for broken rules of LHotka.  At last we also included the use of property bags (-Collections).  We have prepared the base in the first project.  All of this will be extended during the next projects.  We have seen that we have the need for some extensions, but have chosen for the pragmatic approach (also because of the project deadline ;-) ).

5/16/2006 8:43:39 PM (Romance Standard Time, UTC+01:00)  #     | 
 Tuesday, October 05, 2004

At this moment I'm busy with the second part of my DAAB description, to implement the Oracle driver.  But now a short overview about the Model View Controller.

What's the problem ?

How do you modularize the user interface of a Web application so that you can easily modify the individual parts?

Other items :

  • User Interface changes more than business logic
  • Display info in several ways
  • User Interface consists of 2 parts : Presentation and update
  • User Interface depends on the device, than the business logic
  • Developing the User Interface or the Business Logic takes 2 different skills
The solution :

The Model View Controller (MVC) pattern.  This pattern separates the presentation and the actions based on user inputs in 3 separate classes :

  • Model : Managing of data, responding to information requests, responds to instructions
  • View : Manages the information displaying
  • Controller : interprets the mouse and keyboard inputs, and informed the model/view

 

 

Good to know is that both the view and the controller depends on the model.  But not visa versa. 

There are several variations of the MVC :

  • Passive model
  • Active model
The Passive Model :

This model is employed when one controller manipulates the model exclusively.  The controller modifies the model and then informs the view that the model has been changed.  Now the view knows that he must refresh himself.

 

The Active Model :

This model is used when the model changes states without the controller's involvement.

 

Microsoft did a good way with their example "Implementing Model-View-Controller in ASP.NET".  This pattern is the fundation for further, more specialized patterns like Page Controller and Front Controller.

The example starts with everything in one page and finally gives the good solution on how to build the MVC in ASP.Net. But... Yes your read it good.  I have my thoughts with this example.

When reading about the MVC, I came to the conclusion that the solution of Microsoft isn't really a translation of what they said in the theory about MVC.  SO when searching on the internet, I came across the blog of Mads Nissen, who did in 2003 a nice translation from the theoretical part to the practical part.  Read this article and go to the GotDotNet community to download the example.

More info can be found :

 

10/5/2004 7:11:06 AM (Romance Standard Time, UTC+01:00)  #     |