What is the difference between request, response and server? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T08:27:17Z http://stackoverflow.com/feeds/question/289383 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/289383/what-is-the-difference-between-request-response-and-server 0 What is the difference between request, response and server? aaa6818162 2008-11-14T06:49:39Z 2009-10-27T04:55:53Z <p>What is the difference between request, response and server?</p> http://stackoverflow.com/questions/289383/what-is-the-difference-between-request-response-and-server/289394#289394 2 Answer by Slace for What is the difference between request, response and server? Slace 2008-11-14T06:56:21Z 2008-11-14T06:56:21Z <p>A client (web user) makes a <strong>Request</strong> to a <strong>Server</strong> which processes the <strong>Request</strong> and determines the appropriate <strong>Response</strong></p> http://stackoverflow.com/questions/289383/what-is-the-difference-between-request-response-and-server/289399#289399 5 Answer by Ramesh Soni for What is the difference between request, response and server? Ramesh Soni 2008-11-14T06:58:39Z 2009-10-27T04:55:53Z <p><strong>Request :</strong> From Client to Server<br /> <strong>Response:</strong> From Server to Client<br /> <strong>Server:</strong> Receive Request and Send Response<br /> <strong>Client:</strong> Send Request and Receive Response </p> http://stackoverflow.com/questions/289383/what-is-the-difference-between-request-response-and-server/289442#289442 0 Answer by Fuangwith S. for What is the difference between request, response and server? Fuangwith S. 2008-11-14T07:41:53Z 2008-11-14T07:41:53Z <p>Server: Machine that provide something for client.</p> <p>Focus at Server, Request is message that arrive to server for request something. Response is message that send from server to client for give thing that client what.</p> <p>anyway REQUEST/RESPONSE means you can know it with common sense.</p> <p>See also: <a href="http://en.wikipedia.org/wiki/Request-response" rel="nofollow">http://en.wikipedia.org/wiki/Request-response</a></p>