Tagged Questions

For issues relating to setting up and utilizing a 3-tier architecture.

learn more… | top users | synonyms

14
votes
1answer
549 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?
10
votes
4answers
1k views

I need some clarification on the MVC architecture and the three-tier architecture

I've been reading the book Pro ASP NET MVC Framework and I'm getting really confused with a lot of things. I've been trying to do some research but I'm finding that with so many different approaches ...
9
votes
5answers
607 views

Transferring typical 3-tier architecture to actors

This question bothers me for some time now (I hope I'm not the only one). I want to take typical 3-tier jee app and see how it possibly can look like implemented with actors. I would like to find out ...
7
votes
2answers
605 views

what is the difference between Data Abstraction Layer & Data Acess Layer?

I am actually stuck in 3-tier structure? I surfed the internet and found two terminology "Data Abstraction Layer" & "Data Access Layer". What are the differences among them?
6
votes
3answers
287 views

Architecture for 3-tier application with D7

I have had experience with COM+ technology so far to build 3-tier applications. This is huge and advanced technology which supports many interesting concepts. It just works as it should for the ...
6
votes
3answers
1k views

What are the main advantages of MVC pattern over the old fashioned 3-layer pattern

I am contemplating about using an MVC pattern in my new project and I can clearly see the main advantage of being able to put the data layer (the model) a little closer to the presentation layer (the ...
5
votes
5answers
325 views

Linq to Entities - 3-tier Architecture

In the past few months I've learned alot about Linq-To-Entities and the 3-tier architecture with a DAO/DAL/Repository. Now I've a few things in my mind that keeps bugging me. I've those three ...
5
votes
3answers
2k views

Sample J2EE projects using J2EE design patterns

For .Net there are lots of projects that Microsoft/others provide via which one can learn how patterns etc. are implemented in real life projects. I am looking for ones for J2EE (apart from the ...
4
votes
4answers
469 views

Changing a Delphi/Oracle application from 2-tier to 3-tier

In my company they are finally (about time...) considering to convert one of our best selling apps from a 2-tier to 3-tier architecture, both on logical (Presentation, Business and Data layers) as ...
4
votes
5answers
825 views

3-tier architecture v. 3-server architecture

I'm building a traditional .NET MVC site, so I've got a natural 3-tier software architecture setup (presentation in the form of Views, business layer in the controller, and data layer in the models ...
4
votes
4answers
1k views

How and where to handle exceptions in a 3-tier web application? Specifically Sql Database Exceptions

I'm building the standard 3-tier ASP.NET web application but I'm struggling as to where to do certain things - specifically handling exceptions. I've tried to have a look around on the web for some ...
4
votes
7answers
397 views

How-To Deal with Multi-Criteria Queries in 3-Tier Architecture

Assuming a basic 3-Tier application (UI-Service-Data Access) with a total abstraction of Data Access layer (SQL, Xml ...) The UI applications are composed with Datagrids with multi criteria filters, ...
4
votes
8answers
392 views

3-tiers pattern and large amounts of data

Here is my situation: I am trying to follow as hard as I can the 3-tier pattern (i.e. Presentation, Business and Data layer). When I need data from the DB, the Business layer calls the Data layer ...
3
votes
3answers
365 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
2answers
286 views

Three-tier (non-web) database application in Java - what APIs / technologies are appropriate?

I'm currently in the research phase for a (very) small database application. It's for a local charity which only has 3 or 4 client machines which will be running the system - however in order to ...
3
votes
4answers
432 views

MVC - is it just a 3 tier model?

Just began researching mvc, and am not sure I grasp it yet. From what I gather it seems like an implementation of a 3 tier solution ie Model corresponds to DAL, Controller to business logic layer, ...
3
votes
9answers
3k views

How many of you do 3-tier design?

3-Tier design has been my standard design philosophy for years for database driven applications, and it has never failed me. For those who practice it, describe your layers. I've found that many ...
2
votes
3answers
112 views

Making an address book application using JAVA

I am a Java beginner and am going to make a small address book client program using java swing. And my goal is implementing 3-tier architecture. (No sql queries are in client program) What would be ...
2
votes
2answers
52 views

Tree like Database For Orders SQL

![enter image description here][2]I am working on a database that will create a three-tier structure. The idea is going to look like this: 1st level: Order table Primary Key - OrderID 2nd Level: ...
2
votes
3answers
412 views

Getting started with 3-tier architecture in VB.net

I recently started developing a project in 3-Tier architecture, with a BLL, DAL, and Presentation layers. The references I used were sample 3-tier applications off the net, and all of them differ from ...
2
votes
2answers
57 views

Open a Window since Programm class?

I have a console application. So I need Open a Window called "UserInterface.xaml" this is a Window. I my class Program I have this: class Program { [STAThread] static void ...
2
votes
4answers
482 views

Where to store connection string in a 3-tier winform application using C# 4.0

We are about to implement an application using winforms. I would like to have a 3 layer architecture (GUI, Business Logic and Data Access Layer. We have one database per customer, so we must be able ...
2
votes
1answer
169 views

ASP.NET MVC 2 Where to put logic

I have an ASP.NET MVC 2 application with some complex business rules and I'm trying to decide where to put specific logic. The logic happens when creating records, based on certain fields of that ...
2
votes
3answers
596 views

3-tier architecture in Windows Form

I'm currently working on Inventory project on windows Form, and I would like to implement three tier architecture in it. I would like to know how many classes should I create in Business Layer, and ...
2
votes
2answers
960 views

LINQ to map a datatable into a list<MyObject>

I just discover LINQ so be comprehensive with me please! :-) So! I have a Data-tier who provide me datatables and i want to convert them into lists of objects. These objects are defined in a spécific ...
2
votes
7answers
1k views

How MVC (ASP.NET MVC) band 3-tier architecture can work together?

I am writing a design document and people on my team are willing to do the move from ASP.NET WebForm to ASP.NET MVC. This is great, but I have a hard time to understand how MVC workswith in a 3-tier ...
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 ...
2
votes
2answers
881 views

Implementing Business Logic in 3 Tier Architecture

I have a web application I am working on and so far I have the data access layer finished. Each table has its own class that creates objects of rows of that table, so each object represents a row of a ...
2
votes
2answers
2k views

Three-Tier architecture and LINQ to Entities

For a couple of years, I've been using the three-tier architecture (Presentation, Logic and Data Layer) to write applications. Usually, I am using tools such as .netTiers to generate the data layer ...
1
vote
1answer
23 views

Is it DataSet/DataTableAdapter can be considered as DAL?

I am doing a system with 3 tier architecture. I have 2 folder named DAL and BLL. Can I put my Dataset.xsd file in DAL folder and consider it as a that data access layer. Or is it wrong according to ...
1
vote
2answers
121 views

3 Tier Architecture - data tier just stores data only? [closed]

Does the data tier verify any of the user's input? or does it just store data? Example - User adds email to his profile. Is this right? Presentation Tier - Verify Email format is valid (client ...
1
vote
0answers
85 views

Getting data from the database [closed]

I have to do one small project. My front end is C#.net and back end is Oracle 10g. Now I want to display some of the data in the Oracle database (Remote DB server). From the front end I have to able ...
1
vote
1answer
474 views

Give a good example of 3-tier architecture?

http://www.codeproject.com/KB/architecture/three_tier_architecture.aspx Does this website give a good example on 3-tier architecture? I thought it was a good example, but seemed like a few of the 1 ...
1
vote
1answer
45 views

Where to place Reader/Writer/Emailer … *er classes in this package structure?

The way I was initially taught to structure 3-tier is as follows: dao domain services utils jsf (beans) ... A *er class that is instantiatable would fit none of these packages especially utils ...
1
vote
1answer
56 views

Separation of modules in the business layer

Our new project just started and we have a problem related to its architecture. We have a 3 layer arhitecture: WebUI Business DataRepositories Each layer has reference only to the layer below it. ...
1
vote
1answer
151 views

What is suggested way to have server-side hooks over mongodb?

MongoDB performs really well compared to our hacking of MySQL in de-normalized way. After database migration, I realized that we might need some server-side procedures to invoke after/before database ...
1
vote
1answer
1k views

3-tiers application using ASP.NET and Linq 2 Sql with multiple tables

hello everyone i have a problem with my 3-tiers application i don't know how to get data from multiple tables using linq2sql in 3 tiers architecture application here is each layers code ...
1
vote
2answers
227 views

How to build a three-tiered web service

I want to create a web service (SOAP) under Apache Tomcat with Axis2, and I must respect the three-tiered architecture: DAO -> Business Logic Layer -> Presentation Layer I'm new to web services. Is ...
1
vote
2answers
365 views

3 tier architecture references

I am looking for references on 3-tier architecture with ASP.Net. Can you please provide some links?
1
vote
2answers
104 views

convert of the object (image) to another object (Byte) in three layers(3-tier)

Conversions can be done in the first layer ( UI ) ?
1
vote
2answers
196 views

Convert string to image in 3-tier [closed]

Convert string to image which layers can be done? DAl or BBL or GUI For example: F:\pic\nadal.jpg string to Image
1
vote
3answers
291 views

Where to put object-oriented queries in a layered architecture?

Given: You have an architecture with the layers presentation, business and data. You are applying domain-driven design. You are using an object-relational mapper that lets you create object-oriented ...
1
vote
1answer
120 views

What dataclasses should I create in a 3-tier project?

I have a relatively small project and I'm using a 3 tier architecture. Now I'm thinking about on how to split up some of the functions in different data classes. For example I have a User class and ...
1
vote
1answer
219 views

Where do objects merge/join data in a 3-tier model?

Its probarbly a simple 3-tier problem. I just want to make sure we use the best practice for this and I am not that familiary with the structures yet. We have the 3 tiers: GUI: ASP.NET for ...
1
vote
2answers
766 views

3 tier with ASP.NET, C# and Oracle 11g

I am new to .NET, want to follow N-tier approach using Visual Studio 2010(ASP.NET MVC + C#),IIS and Oracle 11g(installed on the remote linux machine). I need to have Presentation, Business Logic, Data ...
1
vote
4answers
386 views

3-Tier architecture-layering and the term-mishmash

I am confused about the different possibilities to express a 3-Tier architecture. Data-Access-Layer Business-Layer Presentation Layer (User Interface) or Database (aka Backend) Business-Layer ...
1
vote
2answers
501 views

Business layer, data layer, where to put queries?

I have a data access layer that has separate classes for each table in the database. Each class makes objects that reference a row in the table, they have create, update, delete, and fetch functions. ...
1
vote
2answers
318 views

using JDBC Connection from presentation tier in 2-tier and 3-tier applications

I am writing a module that will be used in different applications (2-tiers and 3-tiers). I'll need to connect to a DB. so, I made the module requires a java.sql.Connection object as a parameter when ...
1
vote
4answers
246 views

Presentation layer referencing data layer

I have a 3-tier .NET 2.0 app. The presentation layer references the middle tier. The middle tier references the database layer. For some reason, when I compile, the dll's for the data layer appear in ...
1
vote
1answer
271 views

BLL errors best practise

What is the best practise for returning an error of a business rule in a BLL? SHould I just raise exceptions and catch them in the presentation layer, shoudl I return some kind of object that holds ...

1 2