Click here to Skip to main content
Licence 
First Posted 17 Jan 2006
Views 74,120
Bookmarked 38 times

Client Server Communication

By | 17 Jan 2006 | Article
This article gives information on client server communication using sockets.

Introduction

This article gives information on client server communication using sockets. Thanks to Ernest Laurentin for writing such an excellent class called SocketComm which provides methods which are useful in developing client-server applications.

Overview

Figure I-1 shows one of the programming frameworks. The left block represents the client application. The rest represents the server application. If the client application wants to send/receive data to/from a server, the client needs to create a socket (client socket) and use this socket to communicate with the server. At the server side, there are two kinds of sockets. One is the listening socket, which is responsible to take care of requests from new clients. The other is the service socket whose job is to taking care of all the communication between existing clients and the server. Once a new user requests to join the service, the listening socket will create a new service socket for this new user. The functionality of the service socket is like that of a representative of each client. In other words, if there are N users in this system, there will be N service sockets in the server side.

Overview of Server Application

The server will set up the service first. It will keep waiting any request from a new user. If a new request is granted, the server will create a new service socket to serve this new user.

Code for Listening Request

DWORD WINAPI CallServerThread(LPVOID lpPtr)
{
   AFX_MANAGE_STATE(AfxGetStaticModuleState())
   CSampleServerDlg* pThis = reinterpret_cast( lpPtr );
   _ASSERTE( pThis != NULL );
   SOCKET Soc;
   while(TRUE)
   {
    TCHAR szBuf[MAX_PATH] = {0};
    Soc = (SOCKET)pThis->m_hComm;
    fd_set fdRead = { 0 };
    Soc = accept(Soc,0,0);
    DWORD dWW = GetLastError();
    if(Soc != INVALID_SOCKET)
    {
      CString strTotClients = "";
      pThis->m_hNewSocHandle = (HANDLE) Soc;
      pThis->UpdateUserInfo();
    }     Sleep(500);
   }
   return 0;
}

Code for Service Socket

DWORD WINAPI ListeningThread(LPVOID lpPtr)
{
   AFX_MANAGE_STATE(AfxGetStaticModuleState())
   TCHAR szBuf[MAX_PATH] = {0};
   CListeningClass *pThis = reinterpret_cast(lpPtr);
   SOCKET Soc ;
   Soc = (SOCKET)pThis->m_hComm;
   if(Soc != INVALID_SOCKET)
   {
     while(TRUE)
     {
     int nRet = recv(Soc,szBuf,sizeof(szBuf),0);
     if(nRet != SOCKET_ERROR )
     {
     if(!::IsWindowVisible(pThis->m_hWnd))
     pThis->ShowWindow(SW_SHOW);
          CString strText = szBuf;
     pThis->m_Recv.SetWindowText(strText);
     }
     Sleep(100);
     }
   }
   return 0;
}

Code for Terminating Thread at the End

void CListeningClass::TerminateThread()
{
   DWORD dwExitCode = 0;
   while(TRUE)
   {
   ::TerminateThread(m_handle,dwExitCode);
    if(::GetExitCodeThread(m_handle,&dwExitCode))
    {
    if (dwExitCode !=STILL_ACTIVE)
    { 
    break;
    }
    else
     Sleep(10);
    }
  }
}

How the Demo Works

  1. Invoke the server application and click on “Start Server”. Now, the application starts listening to clients.
  2. Invoke the client application, specify the IP address, and click on “Connect”.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

vamsidhar



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionWhy client still is in list if clients is out of order ? PinmemberSKJ21:05 15 Feb '11  
GeneralMy vote of 5 Pinmemberankit jagga2:52 11 Aug '10  
GeneralQuestion Pinmembernazgulya19:12 5 Apr '10  
GeneralHi There Developer PinmemberSourabh Tomar22:18 15 Mar '08  
Generalport error Pinmembergevorik22:59 11 Mar '07  
GeneralRe: port error PinmemberNitaJou17:24 2 Apr '07  
GeneralRe: port error Pinmemberkhanhkhi13:29 5 Oct '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 17 Jan 2006
Article Copyright 2006 by vamsidhar
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid