WCSF vs MEF, What's Best For Me?

Posted by Galilyou on Stack Overflow See other posts from Stack Overflow or by Galilyou
Published on 2010-04-07T11:30:46Z Indexed on 2010/04/07 11:33 UTC
Read the original article Hit count: 431

Filed under:
|
|

Hey fellows,

I'm working on a large web application that includes many modules (CRM, Inventory, Administration, etc.) What I want to accomplish is to be able develop each of these modules independently (the UI, Core Logic, DataAccess Logic, and all) and then integrate them all together into a core module (this integration should only be a change in the configuration file). For example, if I have a core module named Host, I should be able to add the CRM module to the host module by simply adding this line to the host's configuration file:

<module name="CRM" />

I did some reading on the WCSF, and found that it can help integrate some modules together, but it really doesn't offer so much help in terms of integrating those UI elements.
Some friends suggested MEF for the job, but I haven't looked at that yet.
What do you guys think?
Is it possible to achieve this level of modularity, and how much work do I have to put into it to get it working?

© Stack Overflow or respective owner

Related posts about wcsf

Related posts about MEF