Client-Server protocol implementation
#2
Star 
ASTRACT

Client-Server Protocol is one of three basic groups of NOSs' (Network Operating System). The Protocol enables one machine to be dedicated to resources.There is an extremely high level of protection and organization that permits extensive control of data. This machine is called a dedicated server.In computing, a client-server protocol is a protocol in which there is a single server which listens for connections, usually on a specific port (if this is TCP, UDP, or a similar protocol), and one or more clients which connect to it.Programs written to use TCP are developed using the client-server model.The client application initiates what is called an active open. It creates a socket and actively attempts to connect to a server program. On the other hand, the server application creates a socket and passively listens for incoming connections from clients, performing what is called a passive open.

To review, there are five significant steps that a program which uses TCP must take to establish and complete a connection. The server side would follow these steps:

Create a socket.
Listen for incoming connections from clients.
Accept the client connection.
Send and receive information.
Close the socket when finished, terminating the conversation.


In the case of the client, these steps are followed:

Create a socket.
Specify the address and service port of the server program.
Establish the connection with the server.
Send and receive information.
Close the socket when finished, terminating the conversation.
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: client server architecture seminar, implementation of rsa algorithm using client server ppt, client server computingks, client server models, ssh protocol implementation, cryptographically using secure server client protocol, seminar on client server architecture pdf,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Messages In This Thread
RE: Client-Server protocol implementation - by projectsofme - 22-09-2010, 10:46 AM

Possibly Related Threads...
Thread Author Replies Views Last Post
  Design and implementation of sms based notice board using 8 bit micro controller (gsm yeshwanth 13 10,531 21-01-2013, 05:03 PM
Last Post: kheelo
  Development of HTTP Caching Proxy Server (Java) vijaym87 2 1,421 08-12-2012, 03:21 PM
Last Post: seminar details
  Server tracker 1 904 13-03-2012, 11:41 PM
Last Post: Guest
  VHDL IMPLEMENTATION OF UART shivanibhan 1 3,705 13-03-2012, 04:02 PM
Last Post: Guest
  Implementation of Mobile/ Cell phone Jamming systems Design rajaram chavan 1 1,666 06-03-2012, 01:13 PM
Last Post: seminar paper
  miniproject using tcp client & server sakthisri 0 831 02-03-2012, 11:58 AM
Last Post: sakthisri
  implementation of a PLL in Matlab thugluq 0 879 29-02-2012, 01:31 PM
Last Post: thugluq
  implementation of uart using verilog chethankumarshetty 1 1,454 28-02-2012, 04:42 PM
Last Post: Guest
  client server protocol implementation yugesh 1 2,013 27-02-2012, 01:45 PM
Last Post: seminar paper
  vhdl implementation mehari 1 1,244 23-02-2012, 04:55 PM
Last Post: seminar paper

Forum Jump: