I'm developing a framework and need samples and a best practices to have better performance and code less. I wonder if there is an open source enterprise project using POCO for Web Applications covering most of topics mentioned in Application Architecture Guide ver 2 such as:
- Authentication
- Authorization
- Caching
- Communication between layers
- Exception Management
- Logging
- Validation
- Transactions
- ...
edit: Well, Microsoft Enterprise Library implemented the above topics, but it is not a layered enterprise framework. Same for 1Code. I'm looking for a sample of an enterprise project with UI/[Facade]/BLL/Common/Data Access layers including resource-based authentication, using simple classes as entities. A loosely coupled multi-layer (ready to multi-tier) sample.
Are you looking for the Microsoft Enterprise Library? Here's a start page for the documentation and downloads.
All of your bullet point features are covered by the code in the Enterprise Library. Or, as you suggest, you can use it as samples and best practices.
There is also a huge amount of sample code and best practices in the All-in-One framework that starts here.