473,398 Members | 2,088 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Diff between 'n-tier' vs 'distributed architecture' vs. 'multi-layered programming'?

I have a couple questions. First of all, would anyone consider a
multi-layered programming approach (building business objects that are
seperate from data access logic and seperate from user interface logic but
that interface the UI and the data) an n-tier implementation by definition?
Or does n-tier necessitate a network-distributed architecture (beyond IIS
and SQL Server, i.e. COM+/MTS/MSMQ/WCF) in addition to the layered
programming? If a solution is properly broken up into its distinct layers,
does this qualify as 'n-tier'?
Additionally and more broadly, ...

- "n-tier"
- "3-tier"
- "distributed architecture"
- "multi-layered programming (UIL, BLL, DAL)"

I'm finding a lot of confusion among managers and software engineers
throwing these terms around interchangeably. I have my own opinion about
these--how they relate and how they are distinct--but I was wondering what
the opinions are of others in this newsgroup community. Any thoughts?

Thanks,
Jon
Sep 2 '06 #1
7 5154
Jon Davis wrote:
I have a couple questions. First of all, would anyone consider a
multi-layered programming approach (building business objects that are
seperate from data access logic and seperate from user interface
logic but that interface the UI and the data) an n-tier
implementation by definition? Or does n-tier necessitate a
network-distributed architecture (beyond IIS and SQL Server, i.e.
COM+/MTS/MSMQ/WCF) in addition to the layered programming? If a
solution is properly broken up into its distinct layers, does this
qualify as 'n-tier'?

Additionally and more broadly, ...

- "n-tier"
- "3-tier"
- "distributed architecture"
- "multi-layered programming (UIL, BLL, DAL)"

I'm finding a lot of confusion among managers and software engineers
throwing these terms around interchangeably. I have my own opinion
about these--how they relate and how they are distinct--but I was
wondering what the opinions are of others in this newsgroup
community. Any thoughts?
IMO, they're mostly synonymous. I would imagine that many people don't
consider a design to be n-tier unless the layers are isolated service
processes (which may or may not be distributed to multiple machines).
Personally, I find that distinction to be irrelevant in most cases - if a
design has be properly separated into loosely coupled, highly cohesive
layers, then the distribution of those layers to isolated service processes
or separate machines is a straightforward, well-solved problem (.NET
remoting, SOAP, etc.).

-cd
Sep 2 '06 #2
Jon,

Of course, but not as a Tier application but as a layer application.

In other words the layers exist on the client as an integrated assembly and
not as more assemblys as with a multi Tier application.

Just my thought,

Cor
Sep 2 '06 #3
Jon Davis wrote:
I have a couple questions. First of all, would anyone consider a
multi-layered programming approach (building business objects that are
seperate from data access logic and seperate from user interface logic but
that interface the UI and the data) an n-tier implementation by definition?
Or does n-tier necessitate a network-distributed architecture (beyond IIS
and SQL Server, i.e. COM+/MTS/MSMQ/WCF) in addition to the layered
programming? If a solution is properly broken up into its distinct layers,
does this qualify as 'n-tier'?

Additionally and more broadly, ...

- "n-tier"
- "3-tier"
- "distributed architecture"
- "multi-layered programming (UIL, BLL, DAL)"

I'm finding a lot of confusion among managers and software engineers
throwing these terms around interchangeably. I have my own opinion about
these--how they relate and how they are distinct--but I was wondering what
the opinions are of others in this newsgroup community. Any thoughts?
I am old fashioned:

tiers = something that can but not necessarily do run on
different physical systems

layers = logical division within a tier

so you can have 3 tiers:
browser
web app
database

where the web app has 3 layers:
presentation
business logic
data access

Many people (especially within MS technology) uses the term
tier for what I am calling layer.

Which I think confuses matters a bit.

But by using the old definition I think all your questions
is rather easily answered.

Arne
Sep 2 '06 #4

"Arne Vajhøj" <ar**@vajhoej.dkwrote in message
news:VNoKg.8680$_q4.387@dukeread09...
>
I am old fashioned:
I think you quite modern and right on target.
The definitions you gave below are correct.
Many people (especially within MS technology) uses the term
tier for what I am calling layer.
Which I think confuses matters a bit.
I never seen ms get it wrong.

Happy Tiers and Layers
- Michael S
Sep 3 '06 #5

"Michael S" <no@no.nowrote in message
news:eg**************@TK2MSFTNGP04.phx.gbl...
>
>Many people (especially within MS technology) uses the term
tier for what I am calling layer.
Which I think confuses matters a bit.

I never seen ms get it wrong.
http://msdn.microsoft.com/asp.net/re...sslayer_cs.asp

The link to the above URL originally on the MSDN home page and currently in
Visual Studio 2005 Start Page is clearly labeled "3-tier Architecture with
ASP.NET 2.0", but this is clearly a programmatic layering discussion without
respect to physical isolation.

Jon
Sep 3 '06 #6
Jon,

I completely agree with Arne, the meaning of my reply was the same,

I have forever had the idea that the Tier part on MSDN is written by the
marketing department of Microsoft. The Tier philosophy is a part of central
processing with 3270 or VT100 processing and not for real advanced
Client/Server processing, as it is done with Windowforms applications.

However, just my idea,

Cor

"Jon Davis" <jo*@REMOVE.ME.PLEASE.jondavis.netschreef in bericht
news:eU**************@TK2MSFTNGP04.phx.gbl...
>
"Michael S" <no@no.nowrote in message
news:eg**************@TK2MSFTNGP04.phx.gbl...
>>
>>Many people (especially within MS technology) uses the term
tier for what I am calling layer.
Which I think confuses matters a bit.

I never seen ms get it wrong.

http://msdn.microsoft.com/asp.net/re...sslayer_cs.asp

The link to the above URL originally on the MSDN home page and currently
in Visual Studio 2005 Start Page is clearly labeled "3-tier Architecture
with ASP.NET 2.0", but this is clearly a programmatic layering discussion
without respect to physical isolation.

Jon


Sep 3 '06 #7
Well, maybe they got the terms wrong with layer and tier, but not the idea.
They still got the concepts right, and don't mix them.

I've read a book from microsoft press that got all normalforms in
datamodeling wrong by one notch. Hence their second normal form was the
third (or was it first), all this while giving examples that held true for
the correct form.

So maybe I shouldn't defend ms, but go back to only say that Arne was
correct in his definitions.

But to help the OP

Jon: You should check out SOA, and why the typical 3-tier/3-layer
architecture people was used to in COM and VB; just don't hack it no more
and make for a troublesome architecture.

If you want to learn why SOA may be good and want to read for yourself,
please do. But I am willing to write a few paragraphs on the subject if you
want me to. Partly to help you, but mostly for my himem.sys joke, that
people got really angry about, and by so; I need some redemption.

But this thread is getting old so you must say ping.

Happy Architecture
- Michael S




Sep 4 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Charley | last post by:
I've got a diff file that I think is a patch for a bunch of file in a directory. How do I apply this file? I thought it was #patch myfile.diff But that does nothing. I must be missing...
0
by: Guillaume Lahitette | last post by:
Hello everyone, I am looking for a lightweight Java Applet to diff and merge two text files. The functionality would be a subset of what WinMerge (http://winmerge.sourceforge.net) offers: -...
0
by: python | last post by:
Hi- I have a lot of monthly time series data. I need to be able to compare two dates and get the number of months that they are apart. The datetime module is a daily-frequency data type. ...
3
by: Nick Allen | last post by:
After using ndiff from difflib, the function restore would return the sequence that generated the delta. Unfortunately, restore does not do the same for unified_diff. I do not see any similar...
9
by: Ching-Lung | last post by:
Hi all, I try to create a tool to check the delta (diff) of 2 binaries and create the delta binary. I use binary formatter (serialization) to create the delta binary. It works fine but the...
6
by: Igor Shevchenko | last post by:
Hi! Suppose I have "pg_dump -s" of two pg installs, one is "dev", another is "production". Their schemas don't differ too much, and I want to get a "diff -u"-like schema diff so I can quickly...
4
by: Andreas Kasparek | last post by:
Hola! I'm preparing my master thesis about a XML Merge Tool implementation and was wondering if there is any open standard for XML diff regarding topics like: - is a diff result computed on...
3
by: AirYT | last post by:
Hello, I'm looking for an implementation for diffing 2 (text) files and spitting out the output using php only. i would like to extend this to use ftp to diff two files on two ftp servers, or...
6
by: Aaron Gray | last post by:
Hi, I am working on an HTML WYSISYG Wiki and need to display a diff page like WikiPedia does if two people edit a file at the same time to give the second user the diff. Basically with additions...
2
by: akshaycjoshi | last post by:
I have got one tree tree view control.I have three levels in it. Example- Root1 ------->child1 ------->child2 ---------------->child1 ---------------->child2 ------->child3 Root2
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.