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.
0
votes
1answer
10 views
Event based Ajax communication between server and browser
I'm going to write an application, having some worker threads on the server, and some log and status elements on the html page. logs and status are expected to be updated whenever an update is ready ...
0
votes
2answers
46 views
Database connected Java App
I have to create a java application for an organisation. They have 5 computers placed at different locations in a city. How will I connect to a MySQL database so that the java based client application ...
0
votes
0answers
13 views
multiple writes on fifo files
How does a FIFO file(named pipe) handle multiple writes in UNIX. I read something about interleaving between writes but didn't catch it. Can you explain how exactly UNIX handles multiple writers and a ...
0
votes
1answer
24 views
Simple Client-Server application with Blacklist verification by Network
I'm building a simple Client-Server application and I wanted to implement some kind of Blacklist verification to it.
Currently I have an IP Blacklist verification working, which reads a String from a ...
1
vote
2answers
26 views
C# Client to PHP server authentication
My XNA game needs to connect to my website with a WebRequest to a PHP page that checks the database for the user and checks to see if the password is correct.
I already have a login script that will ...
0
votes
0answers
8 views
php stream_socket_client fread doesn't output message
I'm running server code on Java which takes input, runs it through matlab, and outputs it back to the clients. I used stream_socket_client to connect to the server, and I can send text to the server. ...
0
votes
0answers
6 views
Can't transfer large files from android server to PC client
I have written a small client-server program, where server is running on an Android phone and client program is running on my PC. It works absolutely fine when I send small files from server to client ...
0
votes
0answers
59 views
WCF client works only with local host
I have a wcf service hosted in a console process.
Service endpoints creation is done through code, in the program.cs file using net tcp binding.
Client side creation of channel is done through code.
...
0
votes
0answers
21 views
How do you host a C# server program?
So, I am developing a client/server information system and eventually the server will need to be hosted online (so clients can connect from anywhere with internet)...
How would you host/run the ...
0
votes
1answer
32 views
Retrieving data from a socket client-server transaction
I am emulating a client-server socket transaction. Suppose, the client sent some ip packet with
status = send(sock, packet, sizeof(struct iphdr) + sizeof(struct tcphdr),
0);
...
0
votes
1answer
13 views
How should you format data being sent between a client and server?
When dealing with a client/server based information system and you need to send information from the server to the client (in order to populate the client application) is there an efficient way of ...
0
votes
2answers
24 views
How to know which client invoke RMI method on the server
I'm developing a system using Java RMI. I've several RMI clients and one RMI server. My system is supposed to be Byzantine Fault Tolerant, so the clients can be malicious (not only crash-stop).
In ...
0
votes
1answer
29 views
Simple Client-Server Application - Socket problems
I'm writing a simple client-server application using TCP Sockets . It works with the multi-threading principle to allow for several client connections to the same server.
I'm having some trouble ...
0
votes
0answers
27 views
Java TCP file transfer application
Hello and thanks in advance for taking the time to read. I'm trying to develop a simple Java file transfer application using TCP. So far using my client and server classes I've managed to add a ...
0
votes
0answers
21 views
How can I code a client-server Java program that uses the client computer's monitors as second or third monitors for the server one?
In short I am interested in a Java code that allows a computer to:
1) think it has a second monitor (virtual monitor without having a device atached)
2) regulairly extract pixel information from ...
0
votes
1answer
34 views
Java : Client-Server Simple Application with IP Blacklist
I'm writing a client-server application in simple java (java.net* and java.io*) with multi-threading to enable connections of several clients to the server. I'm also trying to implement a simple IP ...
0
votes
0answers
23 views
WCF central service with multiple clients
i can't find any good architecture explanation of how can WCF SHOULD be part of a main-server with multiple clients.
in my solution, i want to have a central WCF service (hosted in windows-service on ...
0
votes
2answers
37 views
Java UDP file transfer application
I'm trying to create a simple UDP file transfer application (server and client) in Java, I have barely any experience in this though, still going through some of the basics. I've managed to make a ...
0
votes
0answers
20 views
Android - transmit taken picture via bluetooth
I'm making an android app to take a picture and send the image to a java server running on a PC using bluetooth.
I used this example for the bluetooth connection. Taking a picture and saving it to ...
0
votes
0answers
16 views
autobahn android client trying to connect to a PHP server
I am using an android websockets API to make an interaction with a PHP server ( the API http://autobahn.ws/android ). Well at this stage I'm not getting any error, however I'm not getting a ...
1
vote
2answers
42 views
Tracing a client-server transaction - sockets in c
I am very new to socket programming, I want to simulate a client-server transaction. So for my client sent packet, I declare a sock = socket(AF_INET, SOCK_STREAM, 0), a SOCKADDR_IN sin, I bind them ...
0
votes
0answers
37 views
How to detect dynamic IP changes?
There is a client-server architecture. The client have dynamic IP(with router). The server must know all time the client's IP address. Now I had implemented a method: the client send a request in ...
0
votes
1answer
31 views
Android server crashes
I have written a small client server application for android. The client is a Java program running on my PC while my Android phone is a server. I'm facing force close issues in my server program. The ...
0
votes
0answers
3 views
SSL handshake on .Net client
I am new to SSL Client Server Handshake. My requirement is to connect to a third party webservice which is written in java. I am writing a .Net Client to connect to the webservice. The client is ...
0
votes
0answers
54 views
javax.net.ssl.SSLHandshakeException: Received fatal alert: certificate_unknown
I want to establish a secure channel between a client and server using Java SSL session.
I followed the following link http://www.herongyang.com/JDK/ssl_https.html to establish the connection
after I ...
-1
votes
0answers
16 views
Client-Server programming using VBA macro [closed]
Is it possible to implement a simple client-server model using VBA macro? I was thinking to send some data strings from excel macro to a server running on my Android phone. Can it be achieved? Please ...
0
votes
1answer
39 views
how can client retrieve vector list from server?
i have a client application that needs to connect to servers from anywhere so to do this i'm trying to create a master server. this master server saves the other servers ip addresses in a vector. the ...
0
votes
0answers
25 views
Implementing a feed-system over a client-server architecture
I am a bit new to Java. I am looking to implement a feed-system over a client-server architecture as follows:
The server will store the data in files, and as soon as a client connects to it, the ...
0
votes
0answers
21 views
My Java server keeps timing out. The last packet successfully received from the server was x milliseconds ago [duplicate]
I'm currently writing a chat application and I am having trouble keeping my Java server up for more than eight hours. After eight hours whenever I try to connect to the server I get the following ...
0
votes
0answers
6 views
Receiver mutil result in RMI Server-Client application
I has write a RMI Server - Client application. I have a problem while Server return multi result as type array. And I want known how to Client receiver this multi resul?
Thank a lot
0
votes
1answer
21 views
Standard practice for development and production servers?
Okay, to start off I am new to the world of working with servers and RESTful clients. What I am currently doing is working on a RESTful client api and I realized as I was chugging along that there ...
1
vote
1answer
24 views
Existing Event Driven Network Protocols
I am building a set of programs that consist of multiple clients and a single server.
The clients are frequently pushing small packets of data to the server, which will validate the information ...
2
votes
1answer
34 views
how can a server store the client's ip address?
i created a server and client application in tcp using c++. the client just sends a message to the server.
in the code the server displays some information about the client in the console: ip address, ...
0
votes
1answer
42 views
how to implement multiple client-server chat
I have a client-server communication code. but, I actually want multiple clients communicating with the server not other clients, how should I implement it?
// This is server code:
import ...
0
votes
0answers
12 views
Designing a secure information system
Could someone please provide me with some guidance for a system I am designing...
A general overview of the system is that it is to store information on staff and "customers" - this information ...
0
votes
1answer
20 views
Problems with connection between PC and Android device - SocketException
When i tryed to connect from PC to android device, i caught a socket exception "No Connection could be made because the target machine actively refused it".
Code of a server at android device:
...
2
votes
3answers
40 views
Restrict execution of a Method with Java Annotations
Do you know, if there is the possibility to check who is calling a method and to restrict whether they are allowed to execute it with Java Annotations?
For example if you have a client and a server. ...
2
votes
1answer
42 views
Presentation layer in 3-tier architecture
My question is about various ways of implementing presentation layer in 3-tier architectures
When we talk about a 3-tier web application, it is assumed that the presentation layer is ...
0
votes
0answers
26 views
Connection Refused Ruby Client-Server
I'm writing a simple client-server script based only in ruby. The script works as following: The client sends a message to the server, the server executes the operation which client requested and ...
0
votes
1answer
34 views
JAVA SOCKETS client server application
I wrote this simpel JFRAME program it consists of two classes: Client and Server.
the server recieves text from client and prints it.
i just started learning it though so i dont really know what ...
-2
votes
0answers
35 views
Sockets - Java server Android client voice chat [closed]
I want to make an android client and java server to open a voice speech. (client speak - server receive)
It must be socket programming because it is extended of another socket program.
Any tutorial or ...
0
votes
0answers
19 views
Backend of a Titanium Alloy application?
Goodmorning all,
I'm a new coder building a small application w/ Titanium Alloy and I'm confused about the server vs client side code.
If Alloy uses the Model-View-Controller framework, are the ...
0
votes
1answer
28 views
visual basic tcp server:writing global functions with multiple forms
i wrote a program to implement a tcp ip server and it is working fine.i need to build a user interface having multiple forms.in my form1,i setup the socket server and its working fine.I need to access ...
0
votes
0answers
25 views
Cross platform web+client-server application, Ruby? [closed]
Would like to get some ideas on my new little project.
Here is some of my background of myself and the project:
I have been a Oracle Form developer and VB/MSSQL "back-end" developer.
Most of my work ...
1
vote
0answers
41 views
Switching between client threads in a Java server
I am working on a project trying to make several people be able to control a robot arm. For this they have to connect to a Java server that then sends the commands to a robot screen for video ...
0
votes
1answer
36 views
Jasypt EncryptionOperationNotPossibleException
A few days ago, I asked a question regarding a problem I had with Jasypt. I referenced a larger program throwing the EncryptionOperationNotPossibleException. Well, I still can't figure out the ...
0
votes
1answer
44 views
Convert selected image into byte array and into string
I am working on client-server communication.
Users can select an image from gallery.
Selected images would be saved in two places, local DB and server DB.
If users save it, the selected image would ...
2
votes
1answer
23 views
Java Client/Server Bi-Directional Sockets not working
I am writing a Java client/server application which will communicate 2 maps back and forth between each program. The client populates the initial map and sends it to the server. The server ...
2
votes
0answers
42 views
How do I keep value objects from the server?
I communicate with the server through jsons, which both in Nodejs and in Actionscript are objects (serialized through string).
Those objects I use in my client, by reading / modifying them and also ...
1
vote
2answers
28 views
RMI app throwing error while running from terminal but working ok with eclipse
I am trying to develop a chat app, using java RMI, where multiple clients can interact with each other. The issue is, the codes are working well, atleast so far, in eclipse but when I try it from ...



