Skip to main content

Questions tagged [multi-tier]

In software engineering, multi-tier architecture (often referred to as n-tier architecture) is a client–server architecture in which presentation, application processing and data management functions are physically separated

multi-tier
Filter by
Sorted by
Tagged with
0 votes
1 answer
796 views

Introduction I've got two multi-tiered web applications running in docker containers that I'm trying to start using docker compose rather than ...
CraigFoote's user avatar
0 votes
2 answers
45 views

I have been asked to write a multi-tiered program that loads and parses 24 student grades from an xml file, and then display all grades, the lowest grade, the highest grade, and the average grade to ...
Simply's user avatar
  • 1
0 votes
3 answers
739 views

I am currently refactoring an application of mine I wrote back in 2015. Things were done I am not proud of, constant learing process and all that. Previously everything was mashed together in one ...
lhiapgpeonk's user avatar
0 votes
1 answer
2k views

I am learning ASP.NET core 6 Multitier architecture. I tried making connection to database but I keep getting this error: ...
Andropov Ajuatah Ajebua's user avatar
2 votes
1 answer
405 views

Microsoft Identity introduces UserManager<T> and RoleManager<T> classes to interact with ...
Boris Makhlin's user avatar
0 votes
1 answer
372 views

I was hoping someone may be able to explain how I would setup a multi-tiered web application. There is a database tier, app tier, web server tier and then the client tier. I'm not exactly sure how to ...
user2835532's user avatar
1 vote
0 answers
295 views

I'm using angular7, Node.js and mySQLto create a platform, each one of them runs on a ...
computer tricks's user avatar
-2 votes
3 answers
2k views

So we have Order which is Logic and IOrderData which connects the View and the Logic when it comes to data like properties. <...
zhrgci's user avatar
  • 726
0 votes
1 answer
581 views

I have an application that allows for searches, display of images, etc from a database. This is written in Delphi running on a local database Firebird I would like to make the application portable so ...
Bennie Coetzer's user avatar
0 votes
2 answers
81 views

How could I rewrite the ActiveRecord query to solve this issue? Im a python programmer and use sqlalchemy, so it would be great if this could be explained from a python perspective. I really just need ...
user avatar
1 vote
1 answer
235 views

The situation is: Datasnap client connecting to Datasnap server with his credentials. Authentication procedure starts with server makes a request to remote database which holds users credentials. If ...
user11003798's user avatar
0 votes
0 answers
35 views

We have a Spring-based application with multi-tier architecture. Layers are in this order Rest Service DB Layer All bundled in a ...
MyTwoCents's user avatar
  • 7,672
0 votes
1 answer
186 views

Scenario: Currently, we have multi-tier architecture in this pattern ...
MyTwoCents's user avatar
  • 7,672
2 votes
0 answers
35 views

In multi-tier infrastructure design, mostly all new web servers are capable enough to process the requests with high computation power. Why do we application servers as a separate tier even if web ...
Agnel Amodia's user avatar
2 votes
0 answers
63 views

When developing an application that separates into business logic and UI layer, is it ever wrong to use classes from UI packages? More specifically, is there any reason not to use the ...
Georg Plaz's user avatar
  • 6,126
0 votes
0 answers
598 views

I have a multi-tier application made in Delphi XE3. At client side, I have a report made with FastReports associated to a TClientDataSet with the main data, but I need to add querys in TFrxReport's ...
Erik Ferney Cubillos Garcia's user avatar
0 votes
1 answer
53 views

I've multi tier list which I want to have the same indent across all tiers, currently as I go into each tier, each tier gets indented more. I want them all to share the same indent level. I've managed ...
J T's user avatar
  • 3
0 votes
1 answer
263 views

I built a monitoring web application that reads from server log files. After that, business logic pull other information by using a geolocalization service. Do I should consider both log file and ...
Lorenzo's user avatar
  • 41
2 votes
1 answer
2k views

An inexperienced web developer crying out for help! Introduction I am developing an MVC web app (using ASP.NET Core due to my interest in it). In the back-end, there is an MSSQL Server with quite ...
ystvan's user avatar
  • 157
0 votes
1 answer
58 views

I have a multi-tier architecture where my Rails web app and Nginx is on one server (that can be replicated and load-balanced if need be) and the Postgres database is on its own VPS in the same data ...
Turgs's user avatar
  • 1,819
0 votes
1 answer
35 views

I am confused if Catalina RealmBase (DataSourceRealm, or the others) situated in Presentation Tier or in the business Logic Tier (Integration or Business Tier). I created a ...
Hasan's user avatar
  • 346
-1 votes
1 answer
236 views

I am working on the project in which we have layered architecture in the following sequence Web layer (ASP.NET MVC) -> WCF Services -> Business layer -> Data layer (Entity Framework) -> Database (SQL ...
Ashish Shukla's user avatar
0 votes
2 answers
320 views

I am taking a 1st attempt at creating a reuable multi tier application. I have created a Data Access layer project which is referenced by a business layer project. I created a website that references ...
Kogroth's user avatar
  • 87
2 votes
2 answers
2k views

How do you solve a situation when you have multiple representations of same object, depending on a view? For example, lets say you have a book store. Within a book store, you have 2 main ...
tlt's user avatar
  • 15.5k
0 votes
1 answer
747 views

I am trying configure a WebLogic 12cR2 cluster to support distributed data cache and application cross serial clustered nodes. Clustering topology as: ...
cidy.long's user avatar
  • 427
1 vote
1 answer
101 views

I have a 2 Glassfish server and a database server on another host. The frontend is running JSP with some Javascript and the backend is using Hibernate to communicate with the database. The appserver ...
Sandeep Shah's user avatar
5 votes
1 answer
933 views

I'm building a multiTenancy application with asp.net, on top of windows Azure. The requirements are that any time a tenancy register in our app a subdomain is created for that tenancy in order to ...
borja gómez's user avatar
  • 1,049
0 votes
1 answer
50 views

I am writing a node application which has two major tasks. Lets say task A (which reads from a caching layer and responds to requests) and B (which is the manipulation server responding to requests ...
Rahul Nanwani's user avatar
3 votes
0 answers
171 views

I have a multi-tier application with real physical tiers in different servers, I want to use asp.net Identity for my Authorization. But I wonder if it is possible that, Identity uses my DAL Service ...
mesut's user avatar
  • 2,237
0 votes
2 answers
198 views

I am trying to implement factory class and interface. But i am getting the below error message. I have created a factory class which decides which class to return NormalTaxManager or ...
hmims's user avatar
  • 539
-2 votes
1 answer
2k views

I use TCLientDataSet often to store local data, using the SaveToFile and LoadFromFile methods. Everything always worked fine, but somehow now it has stopped to work. When i call SaveToFile method, no ...
delphirules's user avatar
  • 7,838
4 votes
1 answer
904 views

I have a 3-tier application that uses TSocketConnection to connect to a remote datamodule server app. In Windows 8 i could open two instances of Delphi, one for the client and another for the server. ...
delphirules's user avatar
  • 7,838
0 votes
0 answers
68 views

I have a MVC5 application, which uses the n-layer pattern. On my website I have a search engine which allows the user to search for companies matching the query string. The list of retreived companies ...
Hakim Belekacemi's user avatar
1 vote
0 answers
237 views

I have an multi tier application witch use a TDcomConnection on the client side and a TRemoteDataModule on the Server side. I have published a process server, which reads a TSQLQuery. When I call ...
Erik Ferney Cubillos Garcia's user avatar
-1 votes
2 answers
133 views

I have a website (WSPs) developed with ASP.net, and 3 projects (BLL/DAL/DTO). I also use Telerik controls. My build is failing in TFS, and I suspect it is because I am not referencing the projects ...
Anne's user avatar
  • 101
0 votes
1 answer
177 views

I've been asked to write a multi-tier application. It has a database to read data from and a view. I thought about designing it this way: DAL which has entity framework object of my actual db and ...
Avi Cohen's user avatar
1 vote
2 answers
342 views

I have a specific question regarding the location of the hibernate-annotations jar in my maven project. My project consists of three modules. The modules Client and Server are both depending on the ...
Anton Afanasjew's user avatar
1 vote
1 answer
566 views

I'm a PHP programmer that has applied for an ASP.NET job. They gave me an assignament to make an application (of my choice) that implements a multi-tier arhitecuture. I have alot of dillemas. As I ...
Mario Legenda's user avatar
0 votes
0 answers
68 views

I'm currently evaluating alternatives to refactor a drivermanagement. In my multitier architecture I have Baseclass DAL.Device //my entity Interfaces ...
csteinmueller's user avatar
2 votes
2 answers
5k views

The question might not be as fundamental as you thought. First of all, thanks for reading it. I am a computer science student. I just begin to learn about AWS, especially the Route 53 so please ...
CrazyGreenHand's user avatar
18 votes
2 answers
13k views

After reading some of the Q/As here on Stackoverflow, I am still confused about the correct implementation of DTOs in my web application. My current implementation is a (Java EE based) multi-tier ...
nils's user avatar
  • 1,412
-1 votes
1 answer
127 views

I need to install MS Dynamics CRM 2013 on two tiers. I have two VMs and I want to install the database of the CRM on one instance and the app of the CRM on the other instance. Kindly guide me how ...
geekstudent's user avatar
1 vote
1 answer
109 views

I have worked as part of a team on some 3 tier applications for a considerable amount of time. I like this architecture, but in all of these applications I have noticed a heavy dependency of the ...
Alex Terreaux's user avatar
3 votes
1 answer
8k views

I have an n-tier application, whereas the core web service is built with Web API. many of the web service's methods are set as HTTPGET and accept a DTO object as parameter. my client app, built with ...
kob490's user avatar
  • 3,337
-2 votes
4 answers
693 views

I need to pass the this object by reference in C#. But as you know this is not possible. I have a multi-tier application. In a nutshell, the DAL is getting Data from a web service in JSON Format. The ...
CodeLover's user avatar
11 votes
1 answer
13k views

What is the difference between the clean and the n-tier architectures?
inf3rno's user avatar
  • 26.3k
0 votes
1 answer
110 views

I have inherited an n-tier application and I would like some explanation of its way of grouping files. I guess BAL is the BUSINESS ACCESS LAYER DAL is the DATA ACCESS LAYER Any guesses for EAL? ...
xarzu's user avatar
  • 9,613
17 votes
4 answers
21k views

Is it not bad practice to pass DTO object to service layer? For now my service layer method look like this: public save(MyEntity entity); Mapping values from ...
WelcomeTo's user avatar
  • 20.7k
1 vote
2 answers
2k views

I have a monolithic Java application (frontend/services) running in Tomcat. I'm trying to come up with a design that will allow me to slowly migrate all the parts of the application as individual ...
Giovanni Botta's user avatar
13 votes
1 answer
4k views

I've been reading various other questions about using asp.net-identity but I don't see anything concrete with regards to using it with an existing database when the project is developed in tiers. For ...
Brad Christie's user avatar