Multi-tier architecture (often referred to as n-tier architecture) is a client–server architecture in which the presentation, the application processing, and the data management are logically separate processes.

learn more… | top users | synonyms

0
votes
2answers
137 views

How do i output more text?

I am working on a homemade forum for an exam and i have just discovered a wierd problem. If i input more than 50 characters into the textarea made for post content, the data is commited to the ...
3
votes
5answers
3k views

3tier/ntier architecture - good examples need

Currently I am working with single tier architecture. Now i want to use 3iter/ntier architecture. Please any body provide me code samples where 3iter/ntier architecture is implemented. Thanks in ...
1
vote
3answers
313 views

N-Tier Design for Common Business Tier but Different Presentation and Data Tiers

I have an application that exists in 3 different presentation tiers...web, mobile (offline) and desktop (offline). The core business objects are the same for all three, and they share the same ...
0
votes
2answers
255 views

How many physical tiers exist in real world applications

I'm looking for an answer from those who have experience with complex real world enterprise n-tier applications. How many physical tiers (distributed to separate machines) exist in practice in ...
4
votes
1answer
1k views

Question about Java EE 6 architecture

From the picture above, I would conclude that Java EE 6 architecture is an 3 tier architecture. What I dont understand is what exactly is the client tier? Isn't the UI code suppose to be the client ...
3
votes
1answer
1k views

Looking for n-tier C# 4 tutorial: stored procs, Entity Framework, pocos, business logic, UI

I've been tasked with investigating n-tier architecture/design for a new C#.NET winforms project (produce a small app to prototype the proposed approach). We have lots of stored procs which we want ...
1
vote
1answer
315 views

Is using DTO's the best way to solve this problem?

I am working on a client / server system: There is a database, an application server and a user interface (client) app. The application server handles connections from the client applications which ...
15
votes
5answers
4k views

Exception handling in n-tier applications?

What is the suggested approach or best practice for handling exceptions in tiered applications? Where should you place try/catch blocks? Where should you implement logging? Is there a suggested ...
1
vote
6answers
1k views

How to design a business logic layer

To be perfectly clear, I do not expect a solution to this problem. A big part of figuring this out is obviously solving the problem. However, I don't have a lot of experience with well architected ...
1
vote
2answers
245 views

WCF for web sites?

I'm working For my company on a .NET N-tier architecture and have several questions. Basics: the project should be split into layers and should not allow tues develop as easy as possible additional ...
2
votes
3answers
476 views

Swing rich client in a multi tier context

We're in the analysis/early design phase of a future Swing application where persistance is provided by a database (probably an alternative between Oracle and mySql depending on the customer's money). ...
1
vote
3answers
64 views

N-tier question: Where do you do the variable casting?

Our UI exposes user input as strings. All of them, including dates and numbers, are coming as strings. The question is: is it better to convert these to the appropriate type (datetime, int, etc) in ...
2
votes
2answers
85 views

How can I mimic a multi-tiered menuing system using Java enums?

I need to accomplish the following (this is a simplified version): enum Animals{ enum Cats{tabby("some value"), siamese("some value")}, enum Dogs{poodle("some value"), dachsund("some value")}, ...
12
votes
2answers
1k views

How to pass Current User Information to all Layers in DDD

Similar questions have been asked before but not quite the same (unless I missed it) I want to pass IUserInfo class instance through my Service, Domain , Domain Events, Domain Event Handlers... ...
0
votes
3answers
1k views

How to solve Optimistic Concurrency Updates in c# .NET N-tier applications?

Hy everyone. In c# .net VS 2008 I'm developing an N-tier CRM framework solution and when it's done I want to share it. The architecture is based on: Data Access Layer, Entity Framework, Bussines ...
2
votes
2answers
1k views

WCF and n-tier architecture and serialization performance

When working with 5-tier architecture (front-end => interface tier => business tier => database tier => database) using WCF service as the interface tier, having the client applications calling it's ...
2
votes
2answers
2k views

DDD vs N-Tier (3-Tier) Architecture

I have been practicing DDD for a while now with the 4 distinct layers: Domain, Presentation, Application, and Infrastructure. Recently, I introduced a friend of mine to the DDD concept and he thought ...
4
votes
3answers
808 views

Where should connection strings be stored in a n-tier asp.net application

Folks, I have an ASP.NET project which is pretty n-tier, by namespace, but I need to separate into three projects: Data Layer, Middle Tier and Front End. I am doing this because... A) It seems ...
3
votes
6answers
2k views

Business Objects and Data Layer

This site has provided me with many useful answers, however after a hours search I haven't found anything that specifically answers my needs. So here goes... The company I'm working for is in the ...
0
votes
1answer
221 views

how to write a logical n-tier windows desktop application for both a physical 1-tier AND physical 3-tier deployment?

I'm working on a unique windows desktop application that requires both a standalone and distributed deployment mode. In standalone mode the entire program will run on a single desktop machine. In ...
0
votes
2answers
753 views

Is this 4-tier architecture good?(Exception handling is important for me :)

I have this layers in my application: Entities Database (with Entities reference) Business (with database and Entities references) User Interface (with Business and Entities references) Here is ...
2
votes
1answer
287 views

DAL and BLL with Lazy Loading

How would one implement lazy loading in the context of three tiers? I understand the basic architecture of Presentation Layer, Business Layer, and Data Layer: You have your basic "dumb" classes that ...
3
votes
6answers
1k views

Should the Domain Layer in a 3-tier application architecture wrap Data Layer classes needed by the UI Layer?

Assuming a "standard" 3-tier application (UI - Domain - Data), should the Domain Layer show to the UI classes originally defined in the Data Layer? I mean, assuming there's a Product class defined in ...
1
vote
2answers
238 views

Lookup Tables - Where to put in n-Tier Architecture

I have a few lookup tables that I am in the process of plumbing through my app. These are tables that drive dropdowns on the website. They have no business logic, but they need to get from the ...
2
votes
2answers
904 views

Is my 3-tier (n-tier) architecture good design?

I am developing a medium sized ASP.NET project using ASP.NET MVC and Entity Framework. I have developed a 3-tier system by setting up 3 Visual Studio projects and referencing them accordingly: ...
2
votes
3answers
566 views

SOA / ESB Dilemma

Sorry for the very involved question, but this is something I've been researching for a while now and it is really frustrating me. I feel like in today's age we have a million and one ways to ...
0
votes
1answer
351 views

Setting up a proper nTier application

While I know there are many ways of doing this, I'm just wondering if this is way off base. I have a solution that has three DLL's, UI (asp.net web application), Business layer, and DAL. So my code ...
1
vote
1answer
248 views

Questions about Java EE?

In wiki, it says: Java Platform, Enterprise Edition [...] to deploy [...] distributed, multi-tier Java software, based largely on modular components running on an application server. As far as i ...
2
votes
2answers
356 views

What are the biggest advantages to moving from n-tier to SOA?

At my company we are currently using the classic n-tier architecture using NHibernate as our persistence layer with fat objects. Seeing many issues with this pattern, such as full hydration of the ...
1
vote
7answers
539 views

N-Tier with C#?

I am looking at writing a WinForms app and getting stumped over what seems to be simple issue. There is a server and database (SQL Server) Open ports are HTTP, HTTPS There is a WinForms client. It ...
1
vote
1answer
556 views

Can the domain model and repositories be in seperate dlls?

Can the domain model and the repositories be in separate dlls? In a 3 tier architecture I guess I would put the domain model in the business layer and the repositories in the data access layer. I ...
1
vote
1answer
313 views

Moving a session based asp.net application to an n-tiered architecture

I've inherited a large asp.net website that relies heavily on session information. There is a back-end system that feeds it necessary information as needed through web services, but the application ...
0
votes
2answers
675 views

How to bind listview and combo box view in n-tier?

I did this code in my presentation layer but i don't know how to do it on 3 tier . . Please help, i'm stack with this problem. form1_Load() { cboStatus(); GetlistView(); } region "FILL combo" ...
0
votes
2answers
534 views

How to use Fluent NHibernate in N-Tier application?

I'm trying to adopt Fluent NHibernate with my project, currently I can get data from database, when I'm at application server, data is include its PK but when I return this data (as List) to client ...
0
votes
1answer
169 views

How to use collection with entity framework 3.5 in n-tier application?

I'm starting new project with EF 3.5 (Visual Studio 2008 SP1, .NET Framework 3.5 SP1) It's N-Tier application, one important aspect of this project is return collection of datums which I prefer to use ...
1
vote
0answers
55 views

Returning nested entities

I'm working in a three tier asp.net/CSharp application and I'm having issues implementing the entity CRUD operations. I'm using a custom reflection-based ORM for my data layer which maps table ...
1
vote
2answers
272 views

N-Tier Publish/Subscriber Design Problem

I'm just getting into how to write a good architecture of a good software system, and I'm learning how to separate high level components into Layers. In this case, I'm trying to use Tiers, so as to ...
1
vote
0answers
382 views

System.NotSupportedException: Parent does not have a default constructor. The default constructor must be explicitly defined

I'm working with Ninject 2.0.2 Ninject.Extensions.Interception with DynamicProxy2 Castle.Core Castle.DynamicProxy2 The injection worked fine. Then I inserted the wcf between controller and bl ...
1
vote
3answers
901 views

Invoke a delegate on the main thread in a tiered architecture

I have a background process that i want to regularly maintain the state of gps location. I am not clear on how to invoke a delegate on the main thread in the ui layer when the threaded method is in ...
1
vote
1answer
988 views

Questions about common patterns in WCF, in a layerd architecture

We're about to set off our first larger WCF project, and we're having some concerns on how to layer our application correctly and where all the patterns go. The services will primarily be consumed by ...
6
votes
5answers
565 views

How many layers is too many?

As I have been learning about software development the last 2 years the more I learn, it seems the more gray areas I am running into. One gray area I have issues with right now is trying to decide ...
3
votes
2answers
883 views

Multi-Tier Application in .NET

I am still learning .NET framework and I want to implement multi-tier application just for practice. My goal is to make application for hospitals. Question: Is it good idea to implement ...
0
votes
3answers
553 views

What is the difference between N-Tier Architecture of Information Technology and Programming?

I recently came to know that, different Information Technology are also based on N-Tier Architecture. For example, a Web Technology is usually 3-Tier Architecture: The user, The Web Server and The ...
0
votes
2answers
1k views

entity framework POCO template in a n-tiers design question

HI all I was trying to follow the POCO Template walkthrough . And now I am having problems using it in n-tiers design. By following the article, I put my edmx model, and the template generated ...
1
vote
2answers
786 views

Is N-Tier Architecture only the physical separation of code or there is something more to it?

Is N-Tier Architecture only the physical separation of code or there is something more to it? What sorts of coding do we put in Presentation Layer, Application Layer, Business Logic Layer, User ...
2
votes
6answers
1k views

What is better: Developing a Web project in MVC or N -Tier Architecture?

I have asked a similar question before and got an convincing answer as well? ...
4
votes
3answers
920 views

SQL Server CLR stored procedures in data processing tasks - good or evil?

In short - is it a good design solution to implement most of the business logic in CLR stored procedures? I have read much about them recently but I can't figure out when they should be used, what ...
3
votes
1answer
221 views

Does Anyone Still Prefer N-Tier Architecture After Having *Shipped* an MVC Application?

Other SO threads have asked people if they prefer N-Tier or MVC architecture. I'm not looking to continue that debate on this thread. I'm looking for something more specific. My Question: Does ...
1
vote
2answers
189 views

What is the best businessmodel when using NHibernate to access the database?

I'm starting to use NHiberante as a dataaccess tier. I'm used to work with the repository model as a business model. This means, my domain model (not really a tier), my asp.net application tier, my ...
22
votes
2answers
1k views

What is difference of developing a website in MVC and 3-Tier or N-tier architecture?

What is difference of developing a website in MVC and 3-Tier or N-tier architecture? Which one is better? What are pros and cons?

1 4 5 6 7 8