Tagged Questions

N-Tier architecture refers to the architecture of an application that has at least 3 "logical" layers or parts that are separate. Each layer interacts with only the layer directly below, and has specific function that it is responsible for.

learn more… | top users | synonyms

11
votes
11answers
2k views

Reasons not to use MVC architecture for web application

In the past I have primarily built all my web applications using an N-tier architecture, implementing the BLL and DAL layers. Recently, I have started doing some RoR development as well as looking ...
10
votes
8answers
314 views

Help with seeming contradiction of two concepts - oop and n-tier development

Not so Newbie to oop here, but still making the transition from structured programming. I'm trying to reconcile the concept of a self contained object with n-tier programming. Seems to me you can have ...
9
votes
3answers
2k views

Entity Framework POCO Entities in multi layer web application

I'm new to EF4 and haven't had any experience with it before. So, bare with me if this is very simple question. I have my POCO entities (.tt file) in BOL, the .edmx file (EDM) in DAL and my webapp in ...
7
votes
3answers
813 views

How to model and handle presentation DTO's to abstract from complicated domain model?

Hi I am developing an application that needs to work with a complex domain model using Hibernate. This application uses Spring MVC and using the domain objects in the presentation layer is very messy ...
7
votes
4answers
621 views

passing data in an ntier application

How do you pass data to layers in an n-tier application? I have mapped out 3 different methods. A) generic .net objects generic data tables, Hashtables, generic datasets, strings, ints etc... then ...
6
votes
4answers
212 views

ASP.NET Membership & Role-based Security

I'm developing a blogging engine with ASP.NET & C#. the main solution consists of several projects as listed below DomainModel : domain entities and interfaces for repositories AppService : ...
6
votes
3answers
820 views

How would I know if I should use Self-Tracking Entities or DTOs/POCOs?

What are some questions I can ask myself about our design to identify if we should use DTOs or Self-Tracking Entities in our application? Here's some things I know of to take into consideration: We ...
6
votes
1answer
201 views

To Wrap or Not to Wrap: Wrapping Data Access in a Service Facade

For a while now, my team and I have been wrapping our data access layer in a web service facade (using WCF) and calling it from the business logic layer. Meanwhile, we could simply use the repository ...
5
votes
1answer
199 views

Practical Usage of N-Tier Architecture

I'm a .NET web developer for a small organization. We have some skilled developers here, but what we don't have is anyone who's worked for larger, more organized, software shops. We do all right, but ...
4
votes
4answers
966 views

Entity and N-Tier architecture in C#

I have three tables as shown below Emp ---- empID int empName deptID empDetails ----------- empDetailsID int empID int empDocuments -------------- docID empID docName docType I am creating a ...
4
votes
2answers
376 views

Optimal architecture solution

I'm building an application which (currently) consists of one web application (ASP.NET MVC) and two console applications. The web application is just the user interface. The first console application ...
4
votes
1answer
1k views

n-tiered architecture with Silverlight, WCF and nHibernate

I try to set-up a clean and flexbible application-framework for data-centric applications with silverlight-only UI. I want to have a strict seperation of concerns, and want to be as flexible as ...
3
votes
1answer
52 views

Wiring up any UI to my application

At present, I have very successfully architected my applications as follows: Data model (Entity Framework 4.1) Validation using Enterprise Library 5.0 Validation Application Block. Object Context ...
3
votes
1answer
34 views

Response message: Composite message or optional fields

We are working with a set of web services and we're looking for the best option to return errors to the web service's consumer. This is the current response: Response Some data about the server ...
3
votes
2answers
160 views

DDD & client-side validation

I've been looking around on StackOverflow for a similar post and yes, there were some discussions on what im about to ask but i decided to start a new topic. Suppose you have an application that ...
3
votes
2answers
103 views

Another application architecture question

I am trying some DDD and I will try to describe in most simple manner what I have done. Core project The core project contains Entities, VO and domain services. For example I have User entity and ...
3
votes
4answers
245 views

How many tiers do you need?

We have a web-app that consists of web-tier (PHP), app-tier (Java) and DB (mysql). web-tier communicates with app-tier AND with DB to retrieve some data. One of our clients insists on separating each ...
3
votes
3answers
1k views

WPF - Where to put DAL in 3-tier architecture design with MVVM?

I'm fairly new to the whole n-tier architecture thing, and I had some questions about using MVVM with a 3-tier application. From my understanding, we have: The View, or UI layer, which is the xaml ...
3
votes
5answers
595 views

Where to place Business Entities, Enums, Custom exceptions?

I'm trying to figure out how to share my entities between the data, business, and UI tiers. Is it best to create a separate project for these entities that will be referenced by all the tiers? What ...
3
votes
1answer
524 views

N-tier architecture design seperation of concerns

I realize there have already been a number of posts on n-tier design and this could possibly be me over thinking things and going round in circles, but I have myself all confused now and would like to ...
2
votes
3answers
140 views

Is this a good SOA Architecture? [closed]

We are trying to re-architect our website. Our architect came up with this high level of architecture diagram. Is this a good architecture?
2
votes
2answers
146 views

Application architecture - Transactions w/ RavenDB

I'm implementing RavenDB in a project and after a few days trying the database i'm now structuring this application but i'm having a question. I'm writing business layers for each entity (almost) and ...
2
votes
2answers
98 views

Namespace and class name guidelines

Im having problems naming my classes and services correctly when utils and other help classes are involved. How would you structure the following: EventService.cs EventServiceUtils.cs ...
2
votes
2answers
97 views

BL Services: Exception or Method Result?

What is the best way and why? V1: try { var service = IoC.Resolve<IMyBLService>(); service.Do(); } catch(BLException ex) { //Handle Exception } V2: var service = ...
2
votes
1answer
184 views

N-tier architectural patterns for web apps

I'm looking for architectural patterns of server-side software, particularly web apps, that have been used for good reason in the real world. Here are some I can think of: single-server: all parts ...
2
votes
2answers
140 views

.NET Application Architecture - Which is the optimal assembly for this class?

I have a .net web application that I have taken over, that had in the past suffered from all business logic being in code behind pages and very much tied to the UI. I have spent some time ...
2
votes
3answers
218 views

Should business rules be enforced in both the application tier and the database tier, or just one of the two?

I have been enforcing business rules in both my application tier (models) and my database tier (stored procedures who raise errors). I've been duplicating my validations in both places for a few ...
2
votes
1answer
130 views

Looking for books to understand multi tier , transaction layer etc?

I am I am looking text books to understand multi-tier architecture, database layer, business logic layer and transaction layers, roll back, recovery and error handling. Any recommendation? I am ...
2
votes
2answers
180 views

Is n-tier software design a subset of SOA?

Is n-tier software design a subset of SOA?
2
votes
3answers
1k views

Can anybody explain these words.Presentation Tier .Business Tier .Integration Tier in java EE with example?

Hi What are these in Java EE .Presentation Tier .Business Tier .Integration Tier I like to know what are these patterns with example
2
votes
7answers
1k views

n-tier architecture: best place to store business objects?

Say I have a 3-tier architecture (UI, Business, and Data). Usually, I create a 4th project called "Model" or "Common" to keep my data access objects and each of the other projects would then use this ...
1
vote
1answer
35 views

How to best represent database views/summary info in “3-Tiered” application

This is basically asking the same question as in How to handle views in a multilayer-application. However, that post didn't receive much feedback. Here's the problem: we have built a 3-tiered web ...
1
vote
1answer
37 views

Application Layers and Contracts

What is the prefered communication: IAggregationRoot marker is stored in Domain Layer and Data Access Layer references it in IRepository contract or vice versa? EDIT I looked at Tim Maccharty's ...
1
vote
3answers
37 views

Understand architecture of MVC application

There are many articles available to explain architecture design of MVC application , some contains business layers , domain layers and etc. I would like to know each & every terms and what ...
1
vote
2answers
34 views

Do we need to have <Serializable()> attribute for a BO class which is on App Server?

I have the following architecture for my project: UI -> Web Server -> App Server -> Database I am using SOA architecture for my project. My Web Service is residing on AppServer having BL (Business ...
1
vote
3answers
151 views

Is it possible to use n-tier architecture with ASP.NET MVC?

Is it possible to use n-tier such as business entity, business logic, data access in ASP.NET MVC? Is it efficient to use n-tier in MVC?
1
vote
2answers
67 views

Guidelines for implementing service layer methods

We are developing an 3-tier application where presentation layer communicates with service layer, which in turn communicates with the business layer. The business layer has access to database. ...
1
vote
3answers
373 views

How to architect MVC 3, EF, ViewModels, AutoMapper, POCO, Repository and Unit of Work in n-tiered project?

I have been reading countless articles about how to architect a new MVC 3 application using best practices. 90% of the articles combine the EF EDMX files into the same project as the MVC app. Those ...
1
vote
3answers
62 views

Best method for a generic web applications 'features' / global properties

I'm creating a generic flexible site that I can use over and over again but with different features activated or deactivated. I'm looking for the best method to approach my solution. Specific areas ...
1
vote
3answers
60 views

Sharing types in a modular application architecture

I have an application under development that is following a modular application design. There is a 'core' vertical stack that provides common, central services such as authentication/authorization, ...
1
vote
2answers
70 views

Should validation be on business models or view models?

I am trying to figure out where to put validation in my N-Tier Asp.net MVC application On the one hand I feel like validation should be in the business layer with the business objects themselves. ...
1
vote
3answers
130 views

Using static classes in Business Logic Layer

I am aware that answering to my question might involve in choosing a specific approach, But I try to explain what I'm trying to find out with details: Consider a simple 3-layer application (DAL, ...
1
vote
0answers
321 views

Three tier architecture sample app with EF and Winform

Can someone provide some URL/reference of a sample desktop application (winform) which shows the implementation of Entity Framework in Winform in a 3 tier architecture.
1
vote
1answer
92 views

WCF and Silverlight 4.0 in N-Tier App : Secure service calls (No SSL, No Message Security, No x.509)

Our architecture is a straightforward N-Tier model, which consists of a ASP.Net Application sitting in IIS7 (hosted in DiscountASP), that exposes methods on a WCF Service. Those methods talk to the DB ...
1
vote
1answer
137 views

Entity Framework and DetailsView in N-Tier Application

I am absolutely new to Entity Framework so please don't hesitate to point any errors. Anyway I'll try to describe my problem as I understand it. I am creating a n-Tier application with Entity ...
1
vote
1answer
188 views

Entity Framework n-tier solution

I'm creating a new project that is following closely to the design used by this example. http://www.toplinestrategies.com/dotneters/net/wcf-entity-framework-and-n-tier-solutions-part-2/?lang=en I ...
1
vote
2answers
217 views

What is the difference between tier vs layer application?

Last week I was talking about the 3 tier architecture with my seniors. I was saying that it has a UI tier, Business Logic Tier and Data Access tier. After I have finished, he just told me that, I am ...
1
vote
1answer
122 views

How does the Integration Tier interface with the Business Tier?

I need some advice on designing an "Integration Tier" of an N-Tiered system in Java. This tier is responsible for persisting and retrieving data for the "Business Tier" (located on a separate ...
1
vote
2answers
437 views

Best practices for incorporating WCF into an MVC middle tier

I was wondering if some one has implemented a 3 tier application using MVC and WCF as the middle tier? Were there any performance issues/drawbacks rather than implementing a typical middle tier using ...
1
vote
1answer
299 views

Entity Framework 4 - Updating a single entity property in N-Tier dilemma

We have an n-tier app that includes a DB , on top of it EF4 , then WCF services and finally a silverlight 4 client. We are thinking what is the best way to update a single entity property. We have a ...

1 2 3