Questions tagged [client]

A client is an application or system that accesses a service made available by a server.

Clients are generally classified as either "fat clients", "thin clients", or "hybrid clients".

Fat

A fat client, also known as a rich client or thick client, is a client that performs the bulk of any data processing operations itself, and does not necessarily rely on the server.

Thin

A thin client is a minimal sort of client. Thin clients use the resources of the host computer.

Hybrid

A hybrid client is a mixture of the above two client models. Similar to a fat client, it processes locally, but relies on the server for storage data. This approach offers features from both the fat client (multimedia support, high performance) and the thin client (high manageability, flexibility).

Disambiguation

The word client is used in several contexts within the Information Technology industry. This tag is for client as defined above. Other uses include:

  • In SSL and TLS, the client is the thing that initiates the connection. While these are normally equivalent to client and server in the traditional sense, the distinction is important for establishing secure peer-to-peer connections.
  • Client may refer to the line of business within the enterprise who is paying for an internal service.
  • Client may refer to a 3rd party paying for the services of the company, i.e. a customer.

These ambiguities are frequently the source of misunderstandings and confusion so it is advisable to qualify the term in cases where the intended meaning might be unclear.

8222 questions
2
votes
2 answers

Communication protocols in UDP

After many hours, I have discovered that the given udp server needs the following steps for a successful communication: 1- Send "Start Message" on a given port 2- Wait to receive from server on any port 3- Then the port dedicated to you to send…
Betamoo
  • 14,964
  • 25
  • 75
  • 109
2
votes
2 answers

How to create a simple server/client application using boost.asio?

I was going over the examples of boost.asio and I am wondering why there isn't an example of a simple server/client example that prints a string on the server and then returns a response to the client. I tried to modify the echo server but I can't…
the_drow
  • 18,571
  • 25
  • 126
  • 193
2
votes
2 answers

Client to client communication in socket programming with a lot of clients

I'm developing a chat application using c#. I've done everything needed for communicating between the server and the clients however, I'm not sure what to do so that the clients to be able to communicate to each other. I've searched over the…
user3530012
  • 720
  • 2
  • 20
  • 37
2
votes
1 answer

Inspect the HttpWebRequest for WCF calls on client side?

I am using a WCF client proxy to call a web service. I am adding logging to each request using IClientMessageInspector. I want to get info out of the underlying HTTP message, and found out I can get it by the following: public class…
TheSean
  • 4,516
  • 7
  • 40
  • 50
2
votes
3 answers

Client to client messaging in socket programming

I'm working on a project which is a server-client application based on WinSock in C++. I've done whatever needed for communicate between the server and the client that I am able to send and receive messages between them. Now I need to know how to…
user3530012
  • 720
  • 2
  • 20
  • 37
2
votes
1 answer

How are clients for Hortonworks Sandbox properly configured?

Related: How connect to Hortonworks sandbox Hbase using Java Client API I currently make a proof of concept using the Hortonworks Sandbox in a VM. However, I fail at properly configuring the client (outside the VM, but on the same computer). I…
kutschkem
  • 7,826
  • 3
  • 21
  • 56
2
votes
0 answers

C# async client not receiving data

I've used the code from codeguru and revised it to put the necessary async functions under classes to abstract it from the main program. I did so since our main program will be doing more than async communication; it involves database also but it is…
ellekaie
  • 337
  • 1
  • 7
  • 21
2
votes
1 answer

Junk values in SSL connection reading

I wrote my first server client program using SSL. I am trying to send and receive some data between two Desktops in LAN. But I am receiving junk values in my terminal. Please help me. Both SSL_write() and SSL_read() will return negative values if…
jeevan
  • 247
  • 5
  • 12
2
votes
2 answers

How to accept two connections using sockets in Python

I am working on a chat program. But right now it can only except one client. How would I make it to where it can accept two clients? I am still a bit of a noob when it comes to sockets so can you explain very thoroughly? Server Code: import…
0Cool
  • 2,335
  • 4
  • 16
  • 16
2
votes
2 answers

ActiveMQ AJax Client

I try to write a simple Ajax client to send and receive messages. It's successfully deployed but I have never received msg from the client. I am beating myself to think out what I am missing, but still can't make it work. Here is my code: I creat…
Lily
  • 5,872
  • 19
  • 56
  • 75
2
votes
0 answers

Clear SSL Cache on the Client or Server side

I am currently working on project that requires SSL Communication. What I want that login in page should prompt the user for their certificate (and it does, the first time). But when you click the 'Sign in' button on the Signed out page it's using…
Saxena Shekhar
  • 219
  • 6
  • 22
2
votes
0 answers

RTSP/1.0 503 Service Unavailable Invalid Server Response in streaming application

I am using two to java files (server.java and client.java) for Video Streaming. While running Server.java there is no problem.. While pressing Setup button from client i got a exception like below, RTSP/1.0 503 Service Unavailable Invalid Server…
user3304467
  • 81
  • 1
  • 9
2
votes
1 answer

How to measure http.ClientRequest response time in NodeJS?

I'm creating http requests from my NodeJS application like this: var start; var req = http.request(options, function (res) { res.setEncoding('utf8'); var body = ''; res.on('data', function (chunk) { body += chunk; }); …
tkit
  • 8,082
  • 6
  • 40
  • 71
2
votes
1 answer

Multithreaded UDP client/server C#

I am trying to get a multi-threaded UDP client/server going, but i'm running into problems on the server side. When a client attempts to register, a thread is created and all the interactions for that client are handled in that thread, but for some…
philr
  • 1,860
  • 1
  • 21
  • 31
2
votes
2 answers

Getting client IP address and port?

I'm writing a file sharing program and the jist of it is that there is one main server which all clients connect to. However, the clients are the machines hosting the files so when one client requests a file from another, it must create a connection…
user2929779
  • 359
  • 5
  • 13
1 2 3
99
100