Click here to Skip to main content
15,861,168 members
Articles / Desktop Programming / Win32

Introduction to RPC - Part 1

Rate me:
Please Sign up or sign in to vote.
4.85/5 (115 votes)
22 Dec 2012CPOL6 min read 1.1M   21.7K   258   199
An introduction to RPC programming. A simple RPC client/server application is explained.

Hello RPC World!

Table of Contents

Introduction

I have worked with client-server applications for a couple of years now, all of these applications use RPC as the layer of communication between the client and the server. I found it strange that no real article existed on this matter here on CodeProject, so I decided to write one of my own to spread my knowledge on this matter.

The matter is, on the other hand, a bit big so I will split it into several articles of different levels of difficulty. This first one is at the beginner level.

IDL, RPC and You

In order to use RPC, you need to have some knowledge about IDL, but don't you worry, this article will help you.

Interface Definition Language (IDL)

IDL stands for Interface Definition Language and it's a language for defining interfaces (no kidding). Writing an IDL file is somewhat like writing a C header file with some additional keywords and constructs. IDL is an attributed programming language and thus it can describe parameters, functions and interfaces in more detail than C.

Remote Procedure Call (RPC)

Remote Procedure Call (RPC) defines a powerful technology for creating distributed client/server programs. The RPC runtime libraries manage most of the details relating to network protocols and communication. This enables you to focus on the details of the application rather than the details of the network.

With RPC, a client can connect to a server running on another platform. For example: In theory, the server could be written for Linux and the client could be written for Win32. The reality is somewhat more complicated.

Are You Scared Yet?

If you're not scared, I think it's a good time for an example.

The Standalone Application

This standalone application will not use RPC and it is a simple HelloWorld application that we later will transform into a RPC client/server application.

Hello Lonely World!

C++
// File Standalone.cpp
#include <iostream>

// Future server function.
void Output(const char* szOutput)
{
   std::cout << szOutput << std::endl;
}

int main()
{
   // Future client call.
   Output("Hello Lonely World!");
}

I don't think anyone can think of anything to say about the above application. It outputs the string "Hello Lonely World!" to the standard output.

The IDL File

It is time to define our interface in IDL.

Hello IDL World!

MIDL
// File Example1.idl
[
   // A unique identifier that distinguishes this
   // interface from other interfaces.
   uuid(00000001-EAF3-4A7A-A0F2-BCE4C30DA77E),

   // This is version 1.0 of this interface.
   version(1.0),

   // This interface will use an implicit binding
   // handle named hExample1Binding.
   implicit_handle(handle_t hExample1Binding)
]
interface Example1 // The interface is named Example1
{
   // A function that takes a zero-terminated string.
   void Output(
      [in, string] const char* szOutput);
}

Here, you see the attribute programming used by IDL. The above example defines an interface with an universally unique identifier (uuid) and version (version) that is named Example1. The Example1 interface defines one function named Output that takes a const char* argument named szOutput as input (in) that is zero-terminated (string).

The implicit_handle attribute for the interface will be discussed later, leave it there for now.

What's Next?

In order to use the IDL in our application, we need to run it through a compiler (midl.exe) that will translate the IDL to a client proxy and a server stub in C. The proxy/stub will later be compiled using your favorite compiler (cl.exe in my case).

How files are generated with midl.exe

How May I Serve You?

It's time to take the generated files and put them to use in our server application.

Hello Server World!

C++
// File Example1Server.cpp
#include <iostream>
#include "Example1.h"

// Server function.
void Output(const char* szOutput)
{
   std::cout << szOutput << std::endl;
}

// Naive security callback.
RPC_STATUS CALLBACK SecurityCallback(RPC_IF_HANDLE /*hInterface*/, void* /*pBindingHandle*/)
{
    return RPC_S_OK; // Always allow anyone.
}

int main()
{
   RPC_STATUS status;

   // Uses the protocol combined with the endpoint for receiving
   // remote procedure calls.
   status = RpcServerUseProtseqEp(
      reinterpret_cast<unsigned char*>("ncacn_ip_tcp"), // Use TCP/IP protocol.
      RPC_C_PROTSEQ_MAX_REQS_DEFAULT, // Backlog queue length for TCP/IP.
      reinterpret_cast<unsigned char*>("4747"),         // TCP/IP port to use.
      NULL);                          // No security.

   if (status)
      exit(status);

   // Registers the Example1 interface.
   status = RpcServerRegisterIf2(
      Example1_v1_0_s_ifspec,              // Interface to register.
      NULL,                                // Use the MIDL generated entry-point vector.
      NULL,                                // Use the MIDL generated entry-point vector.
      RPC_IF_ALLOW_CALLBACKS_WITH_NO_AUTH, // Forces use of security callback.
      RPC_C_LISTEN_MAX_CALLS_DEFAULT,      // Use default number of concurrent calls.
      (unsigned)-1,                        // Infinite max size of incoming data blocks.
      SecurityCallback);                   // Naive security callback.

   if (status)
      exit(status);

   // Start to listen for remote procedure
   // calls for all registered interfaces.
   // This call will not return until
   // RpcMgmtStopServerListening is called.
   status = RpcServerListen(
     1,                                   // Recommended minimum number of threads.
     RPC_C_LISTEN_MAX_CALLS_DEFAULT,      // Recommended maximum number of threads.
     FALSE);                              // Start listening now.

   if (status)
      exit(status);
}

// Memory allocation function for RPC.
// The runtime uses these two functions for allocating/deallocating
// enough memory to pass the string to the server.
void* __RPC_USER midl_user_allocate(size_t size)
{
    return malloc(size);
}

// Memory deallocation function for RPC.
void __RPC_USER midl_user_free(void* p)
{
    free(p);
}

This is a bit different from the standalone application, but not much. It has some initialization code for registering the interface but the Output function remains the same.

Let Me Be Your Client

Time has come to write our client application that will connect to the server.

Hello Client World!

C++
// File Example1Client.cpp
#include <iostream>
#include "Example1.h"

int main()
{
   RPC_STATUS status;
   unsigned char* szStringBinding = NULL;

   // Creates a string binding handle.
   // This function is nothing more than a printf.
   // Connection is not done here.
   status = RpcStringBindingCompose(
      NULL,                                        // UUID to bind to.
      reinterpret_cast<unsigned char*>("ncacn_ip_tcp"),// Use TCP/IP protocol.
      reinterpret_cast<unsigned char*>("localhost"),   // TCP/IP network address to use.
      reinterpret_cast<unsigned char*>("4747"),        // TCP/IP port to use.
      NULL,                                    // Protocol dependent network options to use.
      &szStringBinding);                       // String binding output.

   if (status)
      exit(status);

   // Validates the format of the string binding handle and converts
   // it to a binding handle.
   // Connection is not done here either.
   status = RpcBindingFromStringBinding(
      szStringBinding,        // The string binding to validate.
      &hExample1Binding);     // Put the result in the implicit binding
                              // handle defined in the IDL file.

   if (status)
      exit(status);

   RpcTryExcept
   {
      // Calls the RPC function. The hExample1Binding binding handle
      // is used implicitly.
      // Connection is done here.
      Output("Hello RPC World!");
   }
   RpcExcept(1)
   {
      std::cerr << "Runtime reported exception " << RpcExceptionCode()
                << std::endl;
   }
   RpcEndExcept

   // Free the memory allocated by a string.
   status = RpcStringFree(
      &szStringBinding); // String to be freed.

   if (status)
      exit(status);

   // Releases binding handle resources and disconnects from the server.
   status = RpcBindingFree(
      &hExample1Binding); // Frees the implicit binding handle defined in the IDL file.

   if (status)
      exit(status);
}

// Memory allocation function for RPC.
// The runtime uses these two functions for allocating/deallocating
// enough memory to pass the string to the server.
void* __RPC_USER midl_user_allocate(size_t size)
{
    return malloc(size);
}

// Memory deallocation function for RPC.
void __RPC_USER midl_user_free(void* p)
{
    free(p);
}

Other than connecting to the server and some cleanup, the actual call is the same, except that I've changed the string to be outputted.

Putting It All Together

First, we need to compile the IDL file to get the client proxy, the server stub and the common header file. The proxy and the stub is compiled, as are the client and server implementation. We link the two applications and run them. If everything works, we can be really glad as we have done our first RPC client/server application.

Putting it all together

Appendix

This section describes some techniques useful when writing RPC applications.

Debugging and RPC

If you get into trouble when debugging and the problem seems to be in a MIDL generated file, the real problem will most likely be in the client or in the server. I have sometime run into problems with pointers, but in a follow up article, I will describe these things more thoroughly.

Implicit and Explicit Handles

When using RPC, the binding handles can be implicit (as in the example in this article) or explicit. I always use explicit handles as I sometimes am connected to multiple servers, and that does not work with the implicit handle. To use explicit handles, you'll have to change the IDL file, the server and the client:

MIDL
// File Example1Explicit.idl
[
   // A unique identifier that distinguishes this
   // interface from other interfaces.
   uuid(00000002-EAF3-4A7A-A0F2-BCE4C30DA77E),

   // This is version 1.0 of this interface.
   version(1.0),

   // This interface will use explicit binding handle.
   explicit_handle
]
interface Example1Explicit // The interface is named Example1Explicit
{
   // A function that takes a binding handle and a zero-terminated string.
   void Output(
      [in] handle_t hBinding,
      [in, string] const char* szOutput);
}
C++
// File Example1ExplicitServer.cpp
#include <iostream>
#include "Example1Explicit.h"

// Server function.
void Output(handle_t hBinding, const char* szOutput)
{
   std::cout << szOutput << std::endl;
}

// main - same as before.
C++
// File Example1ExplicitClient.cpp
#include "Example1Explicit.h"

int main()
{
   // Call to RpcStringBindingCompose - same as before.
   handle_t hExample1ExplicitBinding = NULL;

   // Validates the format of the string binding handle and converts
   // it to a binding handle.
   // Connection is not done here either.
   status = RpcBindingFromStringBinding(
      szStringBinding,                // The string binding to validate.
      &hExample1ExplicitBinding);     // Put the result in the explicit binding handle.

   if (status)
      exit(status);

   RpcTryExcept
   {
      // Calls the RPC function. The hExample1ExplicitBinding binding handle
      // is used explicitly.
      // Connection is done here.
      Output(hExample1ExplicitBinding, "Hello RPC World!");
   }
   RpcExcept(1)
   {
      std::cerr << "Runtime reported exception " << RpcExceptionCode()
                << std::endl;
   }
   RpcEndExcept

   // Call to RpcStringFree - same as before.

   // Releases binding handle resources and disconnects from the server.
   status = RpcBindingFree(
      &hExample1ExplicitBinding); // Frees the binding handle.

   if (status)
      exit(status);
}

There are also something called auto_handle, but I've never ever used that. It somehow takes care about connecting to the server automatically.

Application Configuration File (ACF)

In this example, I used implicit_handle and explicit_handle directly in the IDL file, but that is a Microsoft extension. One usually needs to use a separate Application Configuration File that contain these. The sample code in the zip file does use a separate ACF file, but I felt like writing that in the article would only confuse you even more.

Don't Fiddle With the Generated Files

You should not fiddle with the generated files to make them compile, they are (should be) correct. Check the switches to midl.exe if you feel that they are incorrect. When compiling them, you may on the other hand get a lot of warnings, but when lowering the warning level to 2, they are silent.

Shutting Down the Server

The example server will run until it is shut down by closing it somehow. That ain't the best way of doing it, another better way is to call the RpcMgmtStopServerListening function. But how would you call it? You could add another function in the interface (perhaps named Shutdown?) that will call RpcMgmtStopServerListening or you could create another thread in the server before calling RpcServerListen that will call RpcMgmtStopServerListening after a minute or so. More on this in another article.

Conclusion

This is only the entry door to the world of RPC and client/server applications. If you step through and read my other (future) articles on this matter, you'll be fully prepared for the world at hand.

This was my first ever article on CodeProject, I hope you enjoyed reading it as much as I enjoyed writing it.

References

Revision History

  • 2012-12-22
    • Finally updated to work with Visual Studio 2010 and fixed security callback
  • 2003-08-25
    • Updated demo and source
    • Changed from Named Pipe to TCP/IP (suggestion by Hector Santos)
  • 2003-08-23
    • Original article

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Sweden Sweden
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionRPC client in C# Pin
heuj15-Jun-12 2:52
heuj15-Jun-12 2:52 
AnswerRe: RPC client in C# Pin
Anders Dalvander17-Jun-12 21:13
Anders Dalvander17-Jun-12 21:13 
QuestionWhat was the answer for runtime exception 5? Pin
snowlee37-May-12 19:58
snowlee37-May-12 19:58 
AnswerRe: What was the answer for runtime exception 5? Pin
Anders Dalvander7-May-12 21:51
Anders Dalvander7-May-12 21:51 
GeneralRe: What was the answer for runtime exception 5? Pin
snowlee38-May-12 6:05
snowlee38-May-12 6:05 
GeneralRe: What was the answer for runtime exception 5? Pin
Member 951315215-Oct-12 0:14
Member 951315215-Oct-12 0:14 
GeneralMy vote of 5 Pin
albertcorleone12-Apr-12 15:55
albertcorleone12-Apr-12 15:55 
Questioncan not find the .h file!?? Pin
WeeCode7-Nov-11 16:28
WeeCode7-Nov-11 16:28 
I can not find the .h files? How do I build them?
wuyi

AnswerRe: can not find the .h file!?? Pin
Anders Dalvander7-Nov-11 22:06
Anders Dalvander7-Nov-11 22:06 
GeneralRe: can not find the .h file!?? Pin
WeeCode13-Nov-11 16:04
WeeCode13-Nov-11 16:04 
QuestionUsing ncalrpc protocal in windows 7/Vista Pin
amilamad14-Oct-11 23:23
amilamad14-Oct-11 23:23 
GeneralMy vote of 4 Pin
VEMS12-Sep-11 3:21
VEMS12-Sep-11 3:21 
SuggestionGetting error when linking in command prompt Pin
selvamellumalai4-Aug-11 2:28
selvamellumalai4-Aug-11 2:28 
GeneralRe: Getting error when linking in command prompt Pin
selvamellumalai4-Aug-11 2:37
selvamellumalai4-Aug-11 2:37 
SuggestionRe: Getting error when linking in command prompt Pin
george_thomas9-May-12 19:40
george_thomas9-May-12 19:40 
GeneralRe: Getting error when linking in command prompt Pin
gggggtz1-Jul-14 17:25
gggggtz1-Jul-14 17:25 
Questionwhen I called RpcMgmtWaitServerListen , it was blocked Pin
host2828-Jun-11 3:04
host2828-Jun-11 3:04 
AnswerRe: when I called RpcMgmtWaitServerListen , it was blocked Pin
Anders Dalvander28-Jun-11 6:29
Anders Dalvander28-Jun-11 6:29 
GeneralRe: when I called RpcMgmtWaitServerListen , it was blocked Pin
host2828-Jun-11 15:17
host2828-Jun-11 15:17 
QuestionMore about APIs Pin
Debojyoti Majumder15-May-11 20:43
Debojyoti Majumder15-May-11 20:43 
GeneralWrong server [modified] Pin
Member 777565220-Apr-11 3:20
Member 777565220-Apr-11 3:20 
GeneralRe: Wrong server Pin
Anders Dalvander20-Apr-11 4:20
Anders Dalvander20-Apr-11 4:20 
GeneralWrong server Pin
Member 777565220-Apr-11 3:20
Member 777565220-Apr-11 3:20 
Generalproblem Pin
Jameskerry31-Mar-11 1:43
Jameskerry31-Mar-11 1:43 
GeneralVisual Studio 2010 - error Pin
demioz15-May-10 10:59
demioz15-May-10 10:59 

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

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