Skip to main content

Questions tagged [client-server]

Client-server is a distributed software architecture where one layer runs on a server and processes request sent by another layer running on a different computer.

-1 votes
0 answers
54 views

"Generifying" a request-oriented protocol

A colleague of mine is working on some software which involves a client process (possibly more than one, although not lots) and a server process. They typically communicate on the same machine but in ...
einpoklum's user avatar
  • 2,572
0 votes
6 answers
548 views

Can a web server accept a plain test file upload without additional server side scripting?

I've been trying for days to upload plain text files to a web server (both IIS and NGINX) via HTTP PUT/POST, from a C# desktop app, unsuccessfully However, I'm no further along. I have had various ...
mountainred's user avatar
0 votes
0 answers
53 views

Single-threaded request-response type server architecture

I'm writing an internet service in Rust that works more or less like an HTTP-server, just without the HTTP part, and strictly over UDP. I also have a requirement to build it like an old-school game of ...
laggyfrog's user avatar
0 votes
0 answers
84 views

Design a server file transfer to client, polling or websocket?

I'm designing a file sending system from a server to many remote clients, around 5000; each file has only one recipient client. Files rarely exceed 10MB. The server is published on the internet, the ...
ʞᴉɯ's user avatar
  • 119
-1 votes
1 answer
48 views

Looking for specific paragraph in RFC [closed]

Some decades ago working with IRC, I remember a paragraph of some RFC and now I'm looking for it. I don't remember it by memory, only a concept: When it comes to communication between two services, ...
Leandro Bardelli's user avatar
1 vote
1 answer
147 views

Client-Server-Architecture: Move computation logic from client to backend - Algorithm needs certain new values while running (User input) and continue

Background: At work I was tasked with developing a new demo web client to replace our Windows Form application in the future. Our back-end is developed in Java and works stateless as REST services. ...
drake76722's user avatar
0 votes
2 answers
177 views

Implement authorization logic also in frontend or send authorization info along with the resource?

We have an ongoing argument in our team. Please help. Here is the problem: In our SPA web app, let's say we have a resource which can be edited by only those users who belong to the team of the user ...
user3563059's user avatar
1 vote
2 answers
95 views

How a VPS processes an incoming packet (conceptually)

I'm interested in understanding, conceptually (e.g., similar to how many of the concepts in networking are explained in textbooks like Tanenbaum's Computer Networks, or Kurose's Computer Networking), ...
user7088941's user avatar
0 votes
1 answer
171 views

Bubbling errors upstream in async message-based services

Imagine a simple set up of an API and a 2nd service, where the API pushes some msgs to the message queue and the service pulls them and processes them. Now, if an error occurs while processing a msg, ...
Milkncookiez's user avatar
2 votes
1 answer
254 views

Direct Database Access for Desktop GUI or via Application Server?

We have a scenario that is in a VERY tightly controlled industrial environment. This is all C# on Windows. We gather data from different types of sources - sensors monitoring environmental data, ...
whopkinscom's user avatar
1 vote
1 answer
112 views

Contextual Implementation Overhead vs Redundancy

I have an application that has use cases relative to where it is used. A local client and server, where all the server data is in a single location and the client queries that server knowing it is ...
FinalFortune's user avatar
3 votes
0 answers
791 views

MVC vs Layered vs Client-Server

On this book (Software Architecture, 10th Edition by Ian Sommerville, ISBN: 9781292096131), the following architectural patterns are presented (Chapter 6, 6.3, p175): MVC Layered Client-server ...
pmdci's user avatar
  • 179
7 votes
3 answers
3k views

How do desktop applications get notified of events over the internet?

I would like to display something on my desktop by tapping a button on my mobile app. For example, there is a "show cat" button on my mobile app. When I tap that button, a new window should ...
LevelRin's user avatar
-1 votes
2 answers
196 views

Multiplayer game architecture, should clients also maintain a Players list locally?

I am creating a multiplayer game and was wondering if only the server knows about the actual players in the game, or is this list sent to the clients too? So for example the server knows about each ...
user2640145's user avatar
0 votes
2 answers
188 views

Where should I put rarely(if ever) updated datasets? Client or Server?

Assume we are building a Progressive Web App(as everyone does these days) that communicates with the server through a rest API. Now I need to show a list of world countries to the user to choose from. ...
Ali Rahimi's user avatar

15 30 50 per page
1
2 3 4 5
12