About 8,860,000 results
Open links in new tab
  1. UDP Client/Server Socket in Python - Stack Overflow

    I am trying to write an echoing client/server socket. I have written the server so that 30% of the packets are lost. I programmed my client to timeout after one second since the packet could be lo...

  2. What is the difference between a web application and a client/server ...

    Client-Server Applications assume the client is a "thick" client and that communication between the client and server maintains state (this isn't necessarily true).

  3. Client-server synchronization pattern / algorithm? - Stack Overflow

    Jan 5, 2017 · I have a feeling that there must be client-server synchronization patterns out there. But i totally failed to google up one. Situation is quite simple - server is the central node, that multiple c...

  4. SOA vs Client-Server vs Web Service - what is the difference?

    Feb 25, 2015 · Can I use Client-Server to implement SOA or the former is a different concept? Is client-server obsolete now? And where is the place for web-services here? Is web-service just a client …

  5. sockets - Simple Java Client/Server Program - Stack Overflow

    I'm writing my first java client/server program which just establishes a connection with the server sends it a sentence and the server sends the sentence back all capitalized. This is actually an e...

  6. difference between client API and server API [closed]

    Aug 20, 2014 · The client usually invokes the server over a transport (say HTTP) using a message level protocol (such as JSON) and sends requests. The server understands the request and responds. …

  7. Client-Server-Client communication using Sockets - Stack Overflow

    Server B receives message and adds it to message queue of client C. Thread in server B which communicates with client C check message queue, retrieve message and sends it to client C.

  8. How to send a message from client to server in python

    May 14, 2016 · 7 I'm reading two programs in Python 2.7.10 with client and server. How can I modify these programs in order to send a message from client to server? server.py:

  9. ReactJS server-side rendering vs client-side rendering

    Mar 26, 2016 · NB: SSR (Server Side Rendering), CSR (Client Side Rendering). The main difference being that with SSR, the servers response to the clients browser, includes the HTML of the page to …

  10. Socket Programming in C++ - Stack Overflow

    Can anybody provide me some sample example on Client and server connection using sockets in C++. I have gone through some tutorials now i want to implement it. How to start ?