The client-server model is a centralized model, in which a server performs a specialized service (such as HTTP, SMTP, etc.) for multiple clients on request.

learn more… | top users | synonyms (2)

0
votes
0answers
7 views

Online Multiplayer Game Send/Receive Information

I am coding a poker game in vb.net, and I want to create a multiplayer game using the internet, whether that be online or LAN. I really have no idea where to start, and I don't know what to search on ...
0
votes
0answers
5 views

A separate web server for handling AJAX calls from live/instant search?

If I want to implement live/instant search on our site, would it be a good idea to setup a separate web server to handle these requests? Live/instant search seems to produce a lot of requests, so I ...
0
votes
0answers
8 views

.NET Client-Server shared objects

I have a client-server setup where both make use of the same objects, but only the server is allowed to instantiate these object. The client can only make use of what it requests from the server. When ...
0
votes
2answers
22 views

Android client - server never detect connection lost

My situation is the following: Two devices, both running with Android OS, One Devices is the server, this is running with a Service and running threads to create connections and all the normal ...
1
vote
0answers
36 views

Client connects to server but server does not think client has connected in C++

I have a C++ program, using mpi, that follows a typical client server model. Each mpi instance of the client connects to a corresponding mpi instance of the server. This has worked relatively well ...
0
votes
0answers
7 views

client/server Inventroy application

I have been given a project to develop a client/server application for an inventory. The database is located on the company server. The client application will be used by employees , storekeeper ...
0
votes
1answer
22 views

can peer A connect to peer B if server is on peer B?

As the title says, can client A connect to client B on different machines, when the server is on the same machine with client B ? Note that the client B and server on the machine have different port ...
-1
votes
0answers
20 views

Android : Upload image in folder located on remote server

I am developing an application. The need of the application is As: I want to upload image on server. I am able to do so by converting it in byte array and save that in data base. But now i want to ...
0
votes
0answers
11 views

How to create multi-part downloadable client installation when installing the server?

When our server installation (Windows/UNIX) finishes, I want it to create a client installation and put it on the installed Tomcat web server. The client installation includes a predefined ...
-1
votes
0answers
18 views

Will traffic control software cause tcp packets to be dropped and how to prevent it? [closed]

I am testing client-server applications using NetLimiter which is a traffic control software. I found that, when client is receiving files from server and I use NetLimiter to set the download rate to ...
0
votes
0answers
4 views

socket communicaiton over vpn

Here is what i am trying to do I have a server and a client on remote pc as the server is behind the router i have to port forward as far as i know two methods are there frist is port forward by ...
0
votes
0answers
16 views

update an html page on the client from a trigger that occured on the server

if i want to update an html page from the server to the client on a trigger that occured on the server, how can it be done? how does youtube does it when new comments comes up? how does facebook do ...
-4
votes
1answer
42 views

What is the fastest way to transfer an image over a socket from the client to the server? [closed]

I have to developpe a server Android application and a client Android application. The main function is to transfer an image over a IP socket. Does anyone have an example doing this? And what is the ...
0
votes
2answers
45 views

sending serialization file via sockets in java

System.out.println("Java is awesome!"); Pardon my enthusiasm; I just can't believe how powerful Java is, what with its ability to not only save objects (and load them), but also with its main ...
1
vote
1answer
44 views

WCF returns ArrayOfKeyValueOfintstringKeyValueOfintstring[] instead of Dictionary<int, string> and Array instread of List

So I've spent the last several hours investigating this issue and it is clear that I am not the only one. Why are my Dictionaries and Lists being returned as Arrays? I understand that Arrays are ...
0
votes
0answers
22 views

Java client-server using SSL/TLS

I would like to implement SSL on my server using Certificates. Users will need to download the Client. The server will run as a standalone .jar and most likely not inside some other environment. ...
0
votes
1answer
34 views

Java how to set up SSL Connection client-server

I have looked around already and googled about this, but I haven't been able to find a definitive answer. Currently I have all the basic code done to support an SSL connection between clients and my ...
1
vote
1answer
19 views

Rest philosophy for updating and getting records

In my app I'm displaying Race objects that essentially have three states: pending, inProgress and completed. I want to display all Races that are currently pending or inProgress, but not the ones that ...
1
vote
1answer
28 views

Java: Is this good use of BCrypt?

I would like to know if my current implementation of BCrypt is correct, I am aware that I am not using BCrypt.checkpw() which may lead to an issue so that is the main reason I verify it here. ...
-2
votes
0answers
32 views

Java How to kill Socket connection attempt

I am using sockets in my Java application, and it may be the case that the server is not online, I have found out that strange bugs are happening. Since there is no Java implementation which forces a ...
1
vote
1answer
39 views

Multi-platform server client development [closed]

I want to start a new multi-platform server-client project with iOS, Android, web (and maybe desktop) clients. Recently, I started working with enterprise java project (at least some parts of EJB), ...
0
votes
3answers
24 views

Why is my c++ Winsock server unable to receive data from the client?

I tried to run a simple client and server program. Therin, I tried to send the server a message from the client and have the server echo that message back. The problem is that every time I do I get a ...
0
votes
1answer
28 views

TCP NTP Java Socket Program

I have this code about a Server-Client NTP project I'm working on... I initialize the socket but I get java.net.SocketException: Socket is not connected this error. Any clues? Can anyone please ...
0
votes
2answers
39 views

Server-Client NTP project - NullPointerException/SocketException issues

I have this code about a Server-Client NTP project I'm working on... and I get a "java.lang.NullPointerException" when I run it... -NullPointerException fixed... I initialize the socket but I get ...
0
votes
1answer
28 views

communicate with java server through python client

I'm trying to adjust the sample java code for an API to work with a python script. I know the java code works and can do a socket connection in python but can't figure out how to convert the string in ...
-2
votes
1answer
16 views

NTP project in java [closed]

I'm sort of making a Network Time Protocol (NTP) project in java and I'm asked to make at least 3 clients connect to a server and get time with fixed delay and stuff. My question is how can i make a ...
0
votes
2answers
21 views

command input splits after each letter python remote control program

I am working on a backdoor program for remote operations over my PC's at home. The server connects fine but I have a problem in executing the commands as the letters split up as a new command for each ...
0
votes
0answers
17 views

Error in merging to parts of mp4 file when downloading from different servers in android

i have a problem with merging 2 files when i change from where i download of two servers. here is the code from where i call the download. for (int i = 0; i < intnumbOfChunks; i++) { ...
0
votes
1answer
12 views

Corona Client Side, I Receive Limitless Messages

I develop a client side on Corona SDK but I have a problem: I can connect to our server and receive the first message from the server. And also I can send back an answer. But afterwards I begin to ...
2
votes
2answers
32 views

Best way to wait to download file from server which is not yet created?

I make a request to download a file from server. The thing is the file is being generated on the server-side and the generation is asynchronous. Initially I did something like try { ...
0
votes
0answers
22 views

Node.js client in android using webkit without webview

I'm trying to build a nodejs client and I don't find a good library for java or android. Till now I was not able to establish a valid connection. my server is node 0.10. Since the browser supports a ...
2
votes
1answer
56 views

What C# class pattern should I use for mobile client / server objects [closed]

I am developing a client / server business software system using a custom HTTP based design that works similarly to CSLA.NET. What I will be doing is creating client and server objects where client ...
0
votes
1answer
33 views

Client-Server Integration Test with Maven

I have a simple game which consists of two projects: Client and server. Now I want to test if they interact correctly. Setup is: One Maven-parent project, and server/client/integetion-test as ...
0
votes
3answers
45 views

How to test Server-Client (Java/Maven)

I have a simple game which consists of two projects: Client and server. Now I want to test if they interact correctly. Setup is: One Maven-parent project, and server/client as child-modules. I don't ...
-1
votes
0answers
59 views

vb6: Crystal Reports 8 not opening in Client PC but working in Server

My VB6 application is working in server (windows server 2003) and reports are opening in the same system and these are shared across the LAN. Application is working perfectly but crystal reports are ...
1
vote
1answer
47 views

how to pass socket control to child process?

I have written a small Proxy server which listens on the port 25 and does some set of operations. In case of secure SMTP, i fork a process and let the child process take over for this session. The ...
0
votes
0answers
24 views

Cannot establish TCP connection outside of LAN

I have been trying to create a TCP connection between a client program and a remote server. I am able to form a connection between the two when they are running on the same machine, and any machines ...
0
votes
1answer
26 views

UDP client cannot talk through an external IP address

I am running a UDP server and client (python). When within the same local network, the client is able to talk to the server. However when the server IP address is set to IP address of the router ...
0
votes
0answers
29 views

PHP - Receving Http Post request from android(client) with decoding image file

I am working on client-server. What I send data are name, description and photo. I encoded image with Base64 and it should be decoded on server side. On the server DB, I received the encoded image ...
1
vote
1answer
50 views

Symfony2 - Validation for form with multiple entities not working

I have a Form for Product with relation oneToMany with entity ProductLocale and the user can add many ProductLocale as he want. The rendered form in html seems correct but when I receive the POST ...
0
votes
0answers
41 views

Android - Encoding image and sending it to the server

I am working on encoding the selected image from the gallery and want to send it to the server. I succeeded to send name and description of the product which is text form. but, I don't know how to ...
0
votes
1answer
36 views

Using Pthreads in a Mulithreaded Server

i am programming a Mulithreaded Client/Server between processes program which uses message queue's. The Server will handle the message's send by the clients, and later it should give the work to a ...
-6
votes
0answers
34 views

simple client-server application using php [closed]

I want to build a client-server application with PHP but I don't know how to do it, because it's the first time that I try something like this. To give you some information of what I need: I have a ...
-1
votes
0answers
19 views

Co-ordinating real-time conversation between the client and server [closed]

I'm developing a realtime client-server communication application, and I'm having some problems with timestamps. In my app, the client submits a request to the server with a timestamp, and the server ...
0
votes
0answers
17 views

android- single server/ multiple clients?

I'm working on programming a live support chatting here, but the problem I faced is how to this server I made is receiving only one client to chat with. can any pro explain to me to make the server ...
0
votes
0answers
67 views

Datasnap Client/Server 32/64

I have a problem with datasnap in delphi Xe3. At server side I create an application that load data from an XML file in a clientdataset and shares it through a datasetprovider. The Client has a ...
0
votes
0answers
45 views

Client/Server and MPI Send/Recv

I'm trying to send messages from a server to several clients that get connected to that server. The server is supposed to send as many messages as there are clients connecting to it but the code ...
-2
votes
0answers
32 views

Data transmission using socket programming [closed]

Actually I am having my minor project on Data transmission using socket programming. In it i have to create a login system, a mail box that contain both an inbox where mails recieved are store and a ...
1
vote
0answers
28 views

So the design of client-server separation is not the bottleneck of X Window?

In the answer of this, it mentioned: People also hear that X uses the "network" and think this is going to be a performance bottleneck. "Network" here means local UNIX domain socket, which has ...
0
votes
0answers
12 views

DAL Architecture for self service Kiosks

I'm working on a self service Kiosk which enables users to pay their electric bills through the kiosk. Each Kiosk is a thick client, running a window 7 computer with in a lockdown state (runs the ...

1 2 3 4 5 54