.NET
  Home arrow .NET arrow Page 4 - Introduction to RPC on Windows: Part I
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
ASP Web Hosting  
ASP.NET Web Hosting 
Mobile Linux 
App Generation ROI 
Windows Web Hosting
 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
.NET

Introduction to RPC on Windows: Part I
By: Digvijay Chauhan
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 20
    2005-01-10

    Table of Contents:
  • Introduction to RPC on Windows: Part I
  • Meet IDL
  • Doing the RPC stuff
  • Writing Server Side code
  • Writing Client Side Code
  • Points of Interest

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Introduction to RPC on Windows: Part I - Writing Server Side code


    (Page 4 of 6 )

    With the help of the code generated with MIDL compiler we can easily write a server application. You may write the code as below and read the comments to follow what’s happening around.

    // File DoRPC_Server.cpp
    #include <stdio.h>
    #include "..\RPC1_IDL\DoRPC.h"

    int main()
    {
     RPC_STATUS status;

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

     if(status)
     {
      exit(status);
     }

     // Registers the DoRPC interface.
     status = RpcServerRegisterIf(
     DoRPC_v1_0_s_ifspec, // Interface to register.
     NULL,   // Use the MIDL generated entry-point vector.
     NULL);   // Use the MIDL generated entry-point vector.

     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);
     }

     return 0;
    }

    // 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);
    }

    // Now we implement our server function.
    void Show(const unsigned char* szMsg)
    {
       printf("%s\n",szMsg);
    }

    More .NET Articles
    More By Digvijay Chauhan


       · Hi,I was able to compile the *.idl file. But I am getting an error while trying to...
       · i successfully compile the code...but when i running server program i got pop up...
       · First of all I would like to thank you for such wonderful articles on smart card and...
       · You may use the Smart Client like approach to execute Smart Card commands via the...
       · Its very kind of you to respond to my query. We were going through a office move and...
       · It's simple,a C# or J# script would do the job ...... only required thing is...
       · Hi DigvijayThanks very much for the response, but I am still struggling how to...
       · Hi,I believe i conveyed something wrong.What i meant was ........ after...
       · I am so sorry, this is my first ever attempt on .net and I am still not quite sure ...
       · First ..... You need not register the script if you have it running on the client...
       · I think I now understand whats happening.This is my latest codeprivate void...
       · Dear Friend,You've done it finally.Just enable Smart Clients on the client...
       · Hithanks for good article.I have some problem with MIDLhow I can get...
       · I am not able to compile the server code its stating that the function does not...
       · I am not able to compile the server code its stating that the function does not...
     

    .NET ARTICLES

    - Using CrystalReportViewer to Display Crystal...
    - Creating Summary .Net Crystal Reports
    - More on Commands, Input and the WPF
    - Grouping and Aggregating When Querying LINQ ...
    - Commands, Input and the WPF
    - Keyboard and Ink Input with WPF
    - Mouse Input and the WPF
    - Input with Windows Presentation Foundation
    - Introducing LINQ with XML and Databases
    - An Introduction to LINQ
    - Querying LINQ to SQL: Basics
    - Completing a Simple Storefront with LINQ
    - Knowing Your Environment: the System.Environ...
    - Creating the Home Page for a Simple Storefro...
    - LINQ Quickly with Language Integrated Queries





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
    Stay green...Green IT