I am building a web app in Silverlight which allows users to view and edit a database. In order to prevent multiple users from editing the same data, I was thinking of implementing a lock and key mech
all. I\'m having a bit of weird problem with client server program. I have two different kinds of clients trying to connect to one server, one is just more barebone than the other with less things to
I am designing a Client Server Chat application in Java which uses TCP connection between them. I am not able to figure out ho开发者_C百科w to detect at server side when a client forcefully closes dow
I have a 3rd-party protocol module (SNMP) that is built on top of asyncore. The asyncore interface is used to process response messages. What is the proper technique to design a client that generate t
I put a TCP server and client code in PIC controller. Now just开发者_运维百科 wanted to know, can the same device run both client and server at sametime? And if possible can we use the same socket on
I\'m building a Flex application, which is going to perform many server requests (let\'s say, that almost all interactions require an update from server).
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
I made this program: http://java.sun.com/docs/books/tutorial/networking/sockets/clientServer.html And it works perfectly if I put the server\'s hostname as 127.0.0.1 or my computers name (Ajay-PC).
Here\'s as far as I understand it: Client & Server make connection Cl开发者_运维技巧ient sends server data
I would like to implement an distributed Point-Of-Sale system, somewhat like the one described in Point of sale app architecture advice.