client-server Questions
1
Solved
One of the theoretical benefits from working with Node.js is the possibility to share the same scripts between clients and the server. That would make it possible to degrade the same functionality ...
Doughboy asked 6/12, 2010 at 21:37
3
Solved
I'd like to build an iPhone game for the Game Center and am currently researching the server part of it all. I learn best by example and I'm having a hard time finding any examples of simple game s...
Tarim asked 8/10, 2010 at 17:13
2
Solved
How is struct sockaddr different from struct sockaddr_un ?
I know that we use these structures in client-server modules, for binding the socket to the socket address. And we use a cast operator fo...
Flaunch asked 11/9, 2010 at 5:32
5
Solved
Our company has a point of sale system with many extras, such as ordering and receiving functionality, sales and order history etc. Our main issue is that the system was not designed properly from ...
Berthaberthe asked 10/10, 2008 at 15:40
2
Solved
Is there a practical way for us to slowly evolve a WinForms application to WPF without creating a support nightmare for ourselves with strange interop scenarios?
Background info:
We have a large...
Upton asked 11/8, 2010 at 11:28
6
Solved
I have a Client/Server application written Delphi. Essentially all the application is doing is transferring xml data streams between a server application and connected clients. I am currently using...
Presocratic asked 7/8, 2010 at 16:23
5
Solved
I have a javascript-based client that is currently polling a .NET web service for new content. While polling works...I'm not happy with this approach because I'm using system resources and creating...
Mcleroy asked 4/8, 2010 at 18:43
1
Solved
I have written a simple Java application that interacts with multiple instances of itself using sockets. The first instance automatically takes on the role of the server, listening on a specific po...
Vanbuskirk asked 30/7, 2010 at 21:21
3
Solved
I want to write a simple server application that will take commands from a client application and run those commands in separate threads.
I was looking at the server class in dlib. Does anyone ha...
Rutilant asked 16/7, 2010 at 2:54
1
Solved
I'm using .net 3.5 named pipes and my server side is :
serverPipeStream = new NamedPipeServerStream("myPipe", PipeDirection.InOut, 1, PipeTransmissionMode.Byte, PipeOptions.Asynchronous);
When I...
Assibilate asked 10/6, 2010 at 15:16
5
Solved
So we have a piece of software which has a poorly written SQL statement which is causing every row from a table to be returned. There are several million rows in the table so this is causing seriou...
Popularize asked 20/5, 2010 at 13:32
2
Solved
A friend and I were having a discussion about how a FPS server updates the clients connected to it. We watched a video of a guy cheating in Battlefield: Bad Company 2 and saw how it highlighted the...
Myra asked 16/5, 2010 at 20:50
5
Solved
I have made a Java Swing application. Now I would like to make it a Client-Server application. All clients should be notified when data on the server is changed, so I'm not looking for a Web Servic...
Crosby asked 6/5, 2010 at 19:19
1
Solved
I just finished reading High-Latency, Low-Bandwidth Windowing in the Jupiter Collaboration System and I mostly followed everything until part 6: global consistency. This part describes how the syst...
Andreas asked 28/4, 2010 at 22:32
4
Solved
I need to separate our application into a light-weight gui application and a business logic application. This won't be a client/server setup as such, as the 'server' component will only have one cl...
Chlorohydrin asked 12/4, 2010 at 8:25
3
Solved
I've been beginning a client-server application. At first I naturally created two projects in Eclipse, two source control repositories, etc. But I'm quickly seeing that there is a bit of shar...
Bankhead asked 25/3, 2010 at 15:19
5
Solved
To my understanding by serverSocket = new ServerSocket(portNumber) we create an object which potentially can "listen" to the indicated port. By clientSocket = serverSocket.accept() we force the ser...
Ruche asked 13/3, 2010 at 18:28
2
Solved
I am now working on a program for Android which is something related to IMS.
I want the server to send back a nonce to the client as a string and print it on the client-side.
Part of my code,...
Cade asked 10/3, 2010 at 3:5
5
Why is the design of TCP servers mostly such that whenever it accepts a connection, a new process is invoked to handle it . But, why in the case of UDP servers, mostly there is only a single proces...
Junket asked 20/2, 2010 at 8:33
3
Solved
I have to create a client/server system to stream video and audio. It would be very simple. Like youtube style. The server should attend clients providing a list of medias first and waiting the cho...
Grecism asked 22/2, 2010 at 0:51
2
How to implement communication between Java client application (Android) and PHP server application?
I have a simple Java client application (Android app). I have to write a PHP server application which receives a request from the Java client application to write some data to a MySQL database or r...
Parasang asked 13/2, 2010 at 22:59
4
Solved
we're working on a peer to peer comm software that would allow a number of grocery stores to sync their inventory with what we call "headquarters".
To so this, we're thinking WCF+WPF, and no IIS an...
Dinorahdinosaur asked 11/2, 2010 at 12:3
3
Solved
I want to ask a server, whose IP I know, to send the date and time to a client.
How can I implement this in Java?
Duren asked 3/2, 2010 at 15:25
6
I have a python program with many threads. I was thinking of creating a socket, bind it to localhost, and have the threads read/write to this central location. However I do not want this socket ope...
High asked 25/1, 2010 at 21:0
5
Solved
I have a client-server application - wherein the server is essentially an ASP .NET web application and the distributed clients are desktop applications.
The clients need to receive some data from ...
Liberalism asked 25/5, 2009 at 17:1
© 2022 - 2024 — McMap. All rights reserved.