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 computing in mobile environments, client server network project, seminar topics on client server technology ppt, algorithms in client server software design, client server architecture seminar, java based client server projects, cast client control protocol,

[-]
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,561 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 915 13-03-2012, 11:41 PM
Last Post: Guest
  VHDL IMPLEMENTATION OF UART shivanibhan 1 3,706 13-03-2012, 04:02 PM
Last Post: Guest
  Implementation of Mobile/ Cell phone Jamming systems Design rajaram chavan 1 1,671 06-03-2012, 01:13 PM
Last Post: seminar paper
  miniproject using tcp client & server sakthisri 0 834 02-03-2012, 11:58 AM
Last Post: sakthisri
  implementation of a PLL in Matlab thugluq 0 882 29-02-2012, 01:31 PM
Last Post: thugluq
  implementation of uart using verilog chethankumarshetty 1 1,459 28-02-2012, 04:42 PM
Last Post: Guest
  client server protocol implementation yugesh 1 2,019 27-02-2012, 01:45 PM
Last Post: seminar paper
  vhdl implementation mehari 1 1,246 23-02-2012, 04:55 PM
Last Post: seminar paper

Forum Jump: