Tagged Questions
The multi-tier tag has no wiki summary.
13
votes
4answers
517 views
How can I simulate TCP/IP errors?
On a multi-tier application, I need to simulate various TCP/IP errors to test some reconnection code. Does anyone know of any tools (Windows based) I can use for this purpose? Thanks.
5
votes
6answers
521 views
What's the common way for OOP Pattern design (Data Access)
Originally there was the DAL object which my BO's called for info and then passed to UI. Then I started noticing reduced code in UI and there were Controller classes. What's the decent recomendation.
...
4
votes
3answers
107 views
In multi-tier architecture with a service layer, is it acceptable to have one service call another service?
I have a multi-tiered app with a data layer containing repositories.
On top of this, I have a service layer. My understanding is that there should be a single service for each repository.
Is it ok ...
4
votes
3answers
367 views
Best practice for validating input data for multi-tier application
In our application we have various layers. Service Layer, DAO layer and actions (struts applications).
Data gets passed from one layer to another layer.
Where we should ideally put input ...
4
votes
1answer
492 views
Time to start returning IQueryable<T> instead of IList<T> to my Web UI / Web API Layer?
I've got a multi-layer application that starts with the repository pattern for all data access and it returns IQueryable to the Services layer. The Services layer, which includes all of the business ...
4
votes
7answers
546 views
Multi-Tier in PHP..the right way?
I have a specific question, that could use a general answer... When building Multi-Tier applications in PHP, does everything have to be done in the Business Logic layer, or can any layer do work... ...
3
votes
1answer
167 views
.NET Multi tier Design LINQ
I am quite new to the architecture and I am desiging an application for my next .NET project. My proposed architecture design is as follows:
It is traditional three tier application which contains:
...
3
votes
4answers
874 views
Keep settings in sync between forms application and windows service (or any n-tier, really)
I have a Windows Service that performs a number of periodic activities, and I want to change the settings of this service from a Windows Forms app. I'm not sure, though, about the best way to make ...
2
votes
1answer
23 views
How to avoid session-related parameters in business layer?
I have a JEE application (simple web GUI, a large EJB 3 business layer, JPA) whose most functions depend on the currently logged-on user.
Because of this, the EJBs are infested with omnipresent ...
2
votes
2answers
30 views
Distributing Tiers Across VMs
Although this is a Java-centric question it really applies to any system utilizing a multi-tier architecture.
In 3-tier architectures, you typically have 3 tiers:
A client/presentation tier where ...
2
votes
2answers
193 views
Deploying multi-tier application
I want to build and deploy my first Java EE 6 multi-tier application, with web and business tiers running on separate physical servers on Glassfish 3.1.
I think I understand what's required from a ...
2
votes
3answers
318 views
C++ and multi-tier architecture
To attain the highest grade in a recent piece of coursework I'm asked to develop a specific application using c++ and multi-tier programming.
I understand the theory behind multi-tier architecture ...
2
votes
4answers
543 views
Multi-tier applications with PHP?
I am relatively new to PHP, but experienced Java programmer in complex enterprise environments with SOA architecture and multitier applications. There, we'd normally implement business applications ...
2
votes
3answers
414 views
WinForm fat client: Architecture decisions: Did I make the wrong ones?
I have a .NET Winform Click-Once-deployed fat client that talks to three databases, 2 SQL Server databases and a Oracle one.
The first SQL Server database, I will call the Master. I wanted add more ...
2
votes
3answers
270 views
How to provide a Session/Host object for use in both a windows and web application?
I have a web application that makes heavy use of the Session state to store information about the current user, their personal settings, record their session history and so on.
I have found myself ...
1
vote
1answer
89 views
Difference between RMI and ActiveMQ
I'm currently trying to get comfortable with multi tier applications (Server / Client Architecture).
For that I created Service Interfaces and the associated Service Implementations.
Both modules - ...
1
vote
2answers
58 views
When we pass a primary-key to UI, should not it be considered as mixing of 2 layers and a BAD practice?
When we pass a Db identifier of any object to the UI (Let's say the PrimaryKey of an object in the url query string) aren't we mixing two layers (Persistnet layer and presentation layer) basically?
A ...
1
vote
4answers
151 views
Determining “Number of Users below” in a multi-tier member database
I've programmed a membership site for a client within which members join below other users. e.g.
userid | name | subof
1 | John | 0
2 | Joe | 1
3 | Jill | 0
4 | Janet | 2
5 ...
1
vote
3answers
213 views
Designing Multi-Tier application to use progress bar
I have a multi tier application in c# that is supposed to perform tasks on a database (If first time use, we may create the database and fill it with some data). When I initially designed the ...
1
vote
2answers
137 views
How would you call physcially separated UI / BL code in ASP.NET solution?
Chapter 19: Physical Tiers and Deployment on MSDN describes "Distributed Deployment" (see figure 2). All well and good.
In my experience we've always deployed our web based systems as per what they ...
1
vote
4answers
304 views
Multi-tier vs Distibuted?
Multi-tier and/or ditstributed apps, do they have the same meaning ?
When we talk about layers in these apps, is it physical layers (database, browser, web server,...) or logical layers (data access ...
1
vote
2answers
1k views
MVC application. How does mult-tier architecture fit in?
I am new to the concept of MVC and multi-tiered web architecture. I developing a PHP application and am using one of the available MVC frameworks. My question is as follows:
From what I understand, ...
0
votes
0answers
25 views
Multi-tier design, multiple user role, multiple connection strings
I am creating a cms with LINQ-to-entities. I am using 3-tier design in which I have the 1. Data layer, 2. Business Layer and 3. Presentation Layer. I have also the commonn layer for the datamodel.
...
0
votes
2answers
25 views
Java EE EIS Tier
I've been reading up on Java EE architecture, and have seen (in the Oracle docs at least) several references to a so-called EIS (enterprise information systems) tier which comprises the 3rd (data) ...
0
votes
1answer
25 views
What is a multi-tier cache?
I've recently come across the phrase "multi-tier cache" relating to multi-tiered architectures, but without a meaningful explanation of what such a cache would be (or how it would be used).
Relevant ...
0
votes
2answers
74 views
Java EE architecture and pattern [closed]
I'm developing a web application for a university project and it has been told to us to use Java EE and to provide documentation. I'm having trouble understanding how to fit the MVC pattern in the ...
0
votes
1answer
27 views
Whats the difference between Entities, Business Objects, Data Transfer Objects and Business Model Objects?
Not able to get a clear distinction between these concepts that are used very often in multi-layered architecture.
0
votes
1answer
50 views
php tier board style
I'm making a sort of a tier board style list, so each record can have its own sub-section etc, just like I have shown below. Any guidance on how it would be done?
id name dob ...
0
votes
4answers
55 views
Entities between Data- and BusinessLayer
I am in the starting phase of a new project. Since, I always want to improve myself and try to avoid the mistakes from the past (everyone has some baggage), i looked at the Layered Architecture Sample ...
0
votes
0answers
61 views
Directory structure for mixed-platform projects
I'm about to start implementing a project that has multiple parts to it. My design calls for two major components:
A PHP-based website (hosted off-site)
A local server application (will communicate ...
0
votes
1answer
93 views
how to access a report server from VS2010 and how to implement in multi tier architecture
I am developing a website where user logs in and access different reports from report server
A WCF service to be developed to access the ssrs report and it returns to the UI ( what it should return ...
0
votes
0answers
80 views
NHibernate in multi-tier statefull applications
Currently I use Onion architecture with domain driven design, IoC, MVP etc... The app is just talking directly to database, but I am worried about scaling to client - server architecture later ...
0
votes
1answer
9 views
Supporting ad-hoc queries in a multi-tiered application
Is there a standard design pattern or approach that will support ad hoc queries in a multi-tiered application?
Some motivation for this question: In my current project, we are using the ...
0
votes
1answer
174 views
When do we have web server and an application server as two separate physical tiers?
Typically when an application is deployed on a server farm, it has a central database, one or more application servers and one or more web servers.
Since all the services in the application tier are ...
0
votes
1answer
200 views
Is multitier architecture for a scalable web site is a premature optimization?
I am designing the architecture of a new web site. Since multi-tier architecture definitely have all the symptoms of premature optimization (complexity, length of development, etc) I would love to ...
0
votes
1answer
181 views
N-tier application in asp.net webforms vs asp.net mvc regarding separations of concerns only
Regarding separations of concerns only, are there advantages of using ASP.NET MVC instead of ASP.NET webforms for a multi tier application with an user Interface layer, a Business Logic layer and a ...
-2
votes
0answers
34 views
Twebconnection failure
I'm trying to make my course project , but having problems with it.
My task is to make client-server app using any i would like DB , but with TWebConnection.
I made my DB in Access and set it up with ...