What is the difference between request, response and server? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T08:27:17Zhttp://stackoverflow.com/feeds/question/289383http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/289383/what-is-the-difference-between-request-response-and-server0What is the difference between request, response and server?aaa68181622008-11-14T06:49:39Z2009-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#2893942Answer by Slace for What is the difference between request, response and server?Slace2008-11-14T06:56:21Z2008-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#2893995Answer by Ramesh Soni for What is the difference between request, response and server?Ramesh Soni2008-11-14T06:58:39Z2009-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#2894420Answer by Fuangwith S. for What is the difference between request, response and server?Fuangwith S.2008-11-14T07:41:53Z2008-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>